Advance BVN Verification
The Advanced BVN Verification API allows you to verify an individual's details using their Bank Verification Number (BVN). This service helps in validating identities and reducing fraud.
Base URL
Endpoint
Request Headers
You can use either the API key or Bearer Token for Authorization
Content-Type
application/json
Specifies that the request body is in JSON format.
Authorization
Bearer <token>
Bearer Token for authentication.
x-api-key
API Key
API Key for authorization
Request Body
The request body should contain BVN details in JSON format.
Example Request
Request Body Schema
number
string
✅
The BVN number of the individual.
firstName
string
✅
First name of the BVN holder.
lastName
string
✅
Last name of the BVN holder.
reference
string
✅
A unique transaction reference.
serviceProviderCode
string
✅
Code identifying the service provider.
Responses
Success Response (200 OK)
If the BVN is valid, the API returns user details as per the GetDetailOfBVNResponseApiResponse
schema
Error Responses
400
Bad Request (Invalid BVN format)
{ "status": "error", "message": "Invalid BVN format." }
401
Unauthorized (Invalid API Key)
{ "status": "error", "message": "Unauthorized access." }
500
Internal Server Error
{ "status": "error", "message": "Something went wrong." }
Usage Example (cURL)
Last updated