Bank Verification Number (BVN)
Verify BVN
POST https://vapi.verifyme.ng/v1/verifications/identities/bvn/:ref
Path Parameters
Name
Type
Description
ref
string
BVN Number
Query Parameters
Name
Type
Description
type
string
This refers to the payload type ie premium` or basic
Headers
Name
Type
Description
Authorization
string
Authorization Header
Request Body
Name
Type
Description
dob
string
Date Of Birth
lastname
string
Lastname to verify
firstname
string
Firstname to verify
{
"code":"NOT_FOUND_ERROR",
"message":"BVN provided is not found. Please provide a valid bvn"
}Sample Request
curl --location --request POST 'https://vapi.verifyme.ng/v1/verifications/identities/bvn/10000000001' \
--header 'Authorization: Bearer <your secret key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"firstname":"John",
"lastname":"Doe",
"dob":"04-04-1944"
}'Response Payloads
We have 2 types of payload responses for bvn verifications
Premium
Basic
{
"status": "success",
"data": {
"bvn": "22515263226",
"firstname": "JOHN",
"lastname": "DOE",
"middlename": "JAMES",
"gender": "Male",
"phone": "08100000000",
"birthdate": "31-05-2000",
"photo": "<base64 image>",
"fieldMatches": {
"firstname": false,
"lastname": false
}
}
}Last updated
Was this helpful?