POST
/
api
/
v1
/
accounts
/
verify-bvn
Verify a BVN.
curl --request POST \
  --url https://demoapi.saasphereltd.com/api/v1/accounts/verify-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).

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