POST
/
api
/
v1
/
customers
/
verify-bvn
/
{bvn}
Verify a BVN.
curl --request POST \
  --url https://demoapi.saasphereltd.com/api/v1/customers/verify-bvn/{bvn} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "bvn": "12345678901"
}
'
{
  "status": "00",
  "message": "Successful",
  "data": {}
}

Authorizations

Authorization
string
header
required

Paste only the token (no "Bearer " prefix).

Path Parameters

bvn
string
required

Optional parameter.

Body

application/json
bvn
string
required

The 11-digit BVN to verify.

Example:

"12345678901"

Response

200 - application/json
status
string
Example:

"00"

message
string
Example:

"Successful"

data
object