NIN (with Phone Number)
Verify a customer’s identity using the mobile phone number registered to their National Identity Number (NIN) through the National Identity Management Commission (NIMC). This method allows you to authenticate an individual by matching their NIN record to the linked phone number provided.
To verify NIN with Phone Number
{{baseUrl}}/v1/ng/identities/nin-phone/{idNumber}Path Parameter
Parameters | Type | Description |
|---|---|---|
idNumber : Phone Number (REQUIRED) | string | Phone number |
Request Body
POST Parameters | Type | Description |
|---|---|---|
firstname (REQUIRED) | string | First Name |
lastname | string | Last Name |
dob | dateString | Date Of Birth (YYYY-MM-DD) |
phone | string | Phone Number |
email | string | Email Address |
gender | string | Gender |
This endpoint will return all bio-data information captured, up to 46 data sets. To conduct an actual test
Response Sample
{
"id": 1**93,
"applicant": {
"firstname": "Bunch",
"lastname": "Dillon"
},
"summary": {
"nin_check": {
"status": "EXACT_MATCH",
"fieldMatches": {
"firstname": true,
"lastname": true
}
}
},
"status": {
"state": "complete",
"status": "verified"
},
"nin": {
"nin": "63184876213",
"firstname": "Bunch",
"lastname": "Dillon",
"middlename": "John",
"phone": "08000000000",
"gender": "m",
"birthdate": "06-01-1974",
"photo":"base 64 encoded",
"address": "5, Adeniyi Jones, Ikeja, Lagos"
}
}Updated 10 days ago