BVN (Basic)

Verify a customer's identity using their Bank Verification Number (BVN) through the Nigeria Inter-Bank Settlement System (NIBSS).

{{baseUrl}}/v1/ng/identities/bvn-basic/{idNumber}

Path Parameter

ParameterTypeDescription
idNumber
(REQUIRED)
stringBank Verification Number

Request Body

POST ParametersTypeDescription
firstname
(REQUIRED)
stringFirst Name
lastname
(REQUIRED)
stringLast Name
dob
(OPTIONAL)
dateString Date Of Birth(YYYY-MM-DD)
phone
(OPTIONAL)
stringPhone Number
email
(OPTIONAL)
stringEmail Address
gender
(OPTIONAL)
stringGender

This endpoint will return a snapshot of the bio-data information captured.To conduct an actual test

Response Sample

{
    "id": 15*7,
    "applicant": {
        "firstname": "Bunch",
        "lastname": "Dillon"
    },
    "summary": {
        "bvn_check": {
            "status": "EXACT_MATCH",
            "fieldMatches": {
                "firstname": true,
                "lastname": true
            }
        }
    },
    "status": {
        "state": "complete",
        "status": "verified"
    },
    "bvn": {
        "bvn": "95888168924",
        "firstname": "Bunch",
        "lastname": "Dillon",
        "birthdate": "07-07-1995",
        "gender": "Male",
        "phone": "08000000000",
        "photo": "/9j/4AAQSkZJRgABAgAAAQABAAD/***/wCpiNUFoooEf//Z"
    }
}