API Documentation
Login Get API Key

Bank Verification Number (BVN) Checking

The BVN endpoint enables you to verify the identity of users via their Bank Verification Number linked to their bank accounts.

Endpoint

POST /bvn

Headers

Header Value Required
Authorization Bearer YOUR_API_TOKEN Required

Parameters

Parameter Type Description Required
bvn string The 11-digit Bank Verification Number. Required

Example Request

cURL
curl -X POST "https://arewasmart.com.ng/api/bvn" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json" \
  -d "bvn=01234567890"

Example Response

JSON
{
    "status": true,
    "message": "BVN Verified Successfully",
    "data": {
        "firstName": "John",
        "lastName": "Doe",
        "middleName": "Smith",
        "dateOfBirth": "01-Jan-1990",
        "phoneNumber": "08012345678"
    }
}