BVN Basic Verification
POST: https://api.creditchek.africa/v1/identity/bvn-basic-verifcation
Sample request bvn: 12345678901 and 12345678902
Request Parameters​
| Name | Position | Required | Description |
|---|---|---|---|
| token | Headers | True | app public key |
| bvn | body | True | user bvn |
Example Request
---
curl --location --request POST 'https://api.creditchek.africa/v1/identity/bvn-basic-verifcation' \
--header 'token: {{token}}' \
--header 'Content-Type: application/json' \
--data '{
"bvn": "12345678901",
}'
---
Response
{
"status": true,
"data": {
"bvn": null,
"dateOfBirth": "18-DEC-1991",
"firstName": "JOSHUA",
"gender": "Male",
"lastName": "DAMILOLA",
"middleName": "HAMEED",
"phoneNo": "08153095867",
"photo": "https://res.cloudinary.com/creditchek-africa/image/upload/v1761159512/bvnData/zddtc3bjdbgvtvb0mclr.jpg"
},
"message": "successful",
"error": false
}