BVN Verification

BVN verification endpoint helps you compare bvn info provided with customer's information

Make a POST request to the following endpoint.

https://api.localramp.co/v1/kyc/ng/bvn

The request takes this as the body

{
    "bvn": "2578789898989906",
    "phone_number":"+234807889838989",
    "first_name": "Richard",
    "last_name": "Hendricks"
}

With the following header

x-auth-token: <SECRET_KEY>

If the API call is successful, LocalRamp returns the following response:

{
    "status": "success",
    "data": {
        "phone_number": "Exact Match",
        "name": "Exact Match"
    }
}

Last updated