Developer Documentation
IDENTITY VERIFICATION
NIN Phone Verification
Verify a National Identity Number (NIN) utilizing the phone number linked to the user's identity records.
POST
/api/v1/nin-phone
Authentication & Headers
| HEADER | VALUE | REQUIRED |
|---|---|---|
Authorization |
Bearer YOUR_API_TOKEN |
Yes |
Accept |
application/json |
Yes |
Request Parameters
| PARAMETER | TYPE | DESCRIPTION | REQUIRED |
|---|---|---|---|
phone |
string | Linked phone number (e.g., 08012345678). | Required |
Example Request
cURLcurl -X POST "https://www.api.arewasmart.com.ng/api/v1/nin-phone" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-d "phone=08012345678"
Success Response
{
"status": true,
"message": "NIN Phone Verified Successfully",
"data": {
"nin": "12345678901",
"phone": "08012345678",
"firstname": "Ahmad",
"surname": "Bello",
"birthdate": "1985-06-15",
"gender": "m"
}
}