Developer Documentation
IDENTITY VERIFICATION
NIN DEMO Verification
Test the basic NIN verification process using our DEMO endpoint without incurring real charges or needing real NIN records during development.
POST
/api/v1/nin-demo
Authentication & Headers
| HEADER | VALUE | REQUIRED |
|---|---|---|
Authorization |
Bearer YOUR_API_TOKEN |
Yes |
Accept |
application/json |
Yes |
Request Parameters
| PARAMETER | TYPE | DESCRIPTION | REQUIRED |
|---|---|---|---|
nin |
string | A sample or demo 11-digit NIN (e.g., 11111111111). |
Required |
Example Request
cURLcurl -X POST "https://www.api.arewasmart.com.ng/api/v1/nin-demo" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-d "nin=11111111111"
Success Response (Demo)
{
"status": true,
"message": "Demo NIN Verified Successfully",
"data": {
"nin": "11111111111",
"firstname": "Demo",
"surname": "User",
"middlename": "Test",
"birthdate": "1990-10-10",
"gender": "m",
"photo": "base64_encoded_string..."
}
}