Skip to main content

What is NIN?

The National Identification Number (NIN) is a unique 11-digit identifier issued by the National Identity Management Commission (NIMC) to every Nigerian citizen and legal resident. It serves as a primary means of identity verification across government and private sector services.

How it Works

Send a POST request to /api/v1/kyc/nin with the individual’s NIN in the request body. The API returns verified biographical data, contact information, a base64-encoded passport photo, and next-of-kin details from the NIMC registry.
curl --location 'https://sigmacdd.sabipay.com/api/v1/kyc/nin' \
--header 'apiKey: {{apiKey}}' \
--header 'apiSecret: {{apiSecret}}' \
--header 'Content-Type: application/json' \
--data '{
    "idNumber": "98864126516"
}'

Request

FieldTypeRequiredDescription
idNumberstringYesThe 11-digit National Identification Number

Response Fields

A successful response returns the following data:
FieldTypeDescription
idNumberstringThe NIN
firstNamestringFirst name
lastNamestringLast name
middleNamestringMiddle name
dateOfBirthstringDate of birth (YYYY-MM-DD)
genderstringGender
phoneNumberstringPhone number
addressstringResidential address
photostringBase64-encoded passport photo
nationalitystringNationality
maritalStatusstringMarital status
employmentStatusstringEmployment status
educationLevelstringEducation level
professionstringProfession
religionstringReligion
birthCountrystringCountry of birth
birthStatestringState of birth
residenceStatestringState of residence
residenceLgastringLGA of residence
residenceTownstringTown of residence
originStatestringState of origin
originLgastringLGA of origin

Next-of-Kin Fields

The NIN response also includes next-of-kin information:
FieldTypeDescription
nokFirstNamestringNext of kin first name
nokMiddleNamestringNext of kin middle name
nokSurnamestringNext of kin surname
nokAddressstringNext of kin address
nokLgastringNext of kin LGA
nokStatestringNext of kin state
nokTownstringNext of kin town
nokPostcodestringNext of kin postcode
Fields may return null if the data is not available in the registry. For the full API specification, see the NIN Search API reference.