Selfie ID Verification

Our Real-Time ID Verification solution offers a seamless and secure way to verify user identities using a combination of facial recognition technology, selfie verification, and liveness checks. This advanced process ensures the authenticity of identity documents and enhances security in online transactions.

Good to know: All the methods shown below are synced to an example Swagger file URL and are kept up to date automatically with changes to the API.Vr

Expected data returned

Upload user selfie

POST https://api.akibadigital.com/v1/customer

Upload a new selfie.

Headers

Request Body

{
    "identifier"="93055521xxx",
    "signed_link": "http://example.com",
    "s3_key": "string",
    "selfie_filename": "string",
    "customer_id": "A3020FM2PX"

}

Verify user selfie

Verify a Customer.

POST https://api.akibadigital.com/v1/customer/verify

Request Body

{
    "status": "success",
    "message": "Identity and Selfie succesfully verified",
    "data": {
        "identity": {
                "_id": "5ea1812477c7700382b20edc",
                "id_number": "12345678989",
                "firstname": "FRANK",
                "lastname": "NONO",
                "fullname": "FRANK HLATSWAYO NONO",
                "dob": '1991-12-12',
                "gender": 'M',
                "marital_status": 'Single',
                "middlename": null,
                "photo_id": [
                    {
                        "_id": "5eaffd51f61c0e7bccf68c2d",
                        "url": "LINK TO SELFIE"
                    }
                ],
                "fraud_score": "0.21",
                "fraud_detected": "Low",
                "facial_recognition_confidence":"0.95",
                "created_at": "2020-04-23T11:51:00.286Z",
                "last_updated": "2020-12-21T17:45:25.908Z",
            }
    }
}

Last updated