Age/Identity Verification

Verify end users age or personal information through BVN, account numbers etc.

Age Identity and Verification allows you to confirm and ascertain information summitted by your end users.

With this endpoint, Dojah can help you verify first name, middle name by simply adding it to the request body

Information Required; Phone Number OR Account Number OR BVN

To Lookup Age Identity and Verification;

{{baseUrl}}/api/v1/kyc/age_verification
GET ParameterTypeDescription
mode requiredstringphone_number ,account_number or bvn
strictbooldefault is false
first_namestringFirst name
last_namestringLast name
dobstringDate of Birth
bvnstringInclude BVN if mode is selected
account_numberstringInclude if account_number mode is selected
bank_codestringInclude if account_number mode is selected
phone_numberstringInclude if phone_number mode is selected
{
  "entity": {
    "first_name": "ADEOLA",
    "last_name": "SEMIU",
    "date_of_birth": "1993-06-10",
    "verification": true
  }
}
curl -L -X GET '{{baseUrl}}//api/v1/kyc/age_verification?mode={{account_number}}&account_number={{account_number}}&bank_code={{bank_code}}&dob={{dob}}&first_name={{first_name}}&last_name={{last_name}}' \
-H 'Content-Type: application/json' \
-H 'Authorization: SECRET_KEY'
-H 'AppId: APP_ID'