VerifyMe API
Search
K
Comment on page

National Identification Number(NIN)

Please note that when using your test key, Our test persona is John Doe and his National Identity Number is 10000000001. Hence all matching done with your test keys with details other than our Test Persona would simulate a failed identity matching.
post
https://vapi.verifyme.ng
/v1/verifications/identities/nin/:ref
Verify National Identity Number

Sample Request

Curl
curl --location --request POST 'https://vapi.verifyme.ng/v1/verifications/identities/nin/10000000001' \
--header 'Authorization: Bearer <your secret key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"firstname":"John",
"lastname":"Doe",
"dob":"04-04-1944"
}'
post
https://vapi.verifyme.ng
/v1/verifications/identities/nin_phone/:ref
Verify National ID with Registered Phone Number

Sample Response

Curl
{
"status": "success",
"data": {
"nin": "22515263226",
"firstname": "JOHN",
"lastname": "DOE",
"middlename": "JAMES",
"birthdate": "31-05-2000",
"gender": "Male",
"phone": "08100000000",
"photo": "<base64 image>",
}
}
}