NIN Checks
This endpoint helps check for the validity of NIN and returns its details.
POST
https://api.oneappgo.com/v1/ninkyc
Headers
Name
Type
Description
authorization*
String
SECRET_KEY
Request Body
Name
Type
Description
verify_type*
String
e.g basic, premium
nin*
String
10 digit number of the NIN
Sample Request
curl --location 'https://api.1app.online/v1/ninkyc' \
--header 'SECRET_KEY: BEARER SECRET_KEY' \
--data '{
"verify_type": "premium",
"nin": "12323444556"
}'
Sample Response
{
"status": true,
"responseCode": "01",
"msg": "Verified",
"data": {
"title": "Mr",
"firstname": "AMAD",
"lastname": "CKUKWU",
"gender": "male",
"dob": "01-02-1956",
"phone_number": "09012345678",
"residence": "Yola State",
"address": "2, Iwajowa street, Agugu",
"country": "nigeria",
"photo": "BASE64 ENCODED"
}
}
Last updated
Was this helpful?