API Reference
Payouts /Mobile Transfer
Account Lookup [POST]

Account Lookup

https://sandboxapi.bitnob.co/api/v1/mobile-payments/lookup (opens in a new tab)


Body Parameters

ParametertypeRequired
countryCode Defaults to 234string
accountNumber
phone number associated with the account
string

Request

payouts-mobile-transfers/ Account lookup [POST]
curl --request POST \
     --url https://sandboxapi.bitnob.co/api/v1/mobile-payments/lookup \
     --header 'Authorization: Bearer API-KEY' \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "countryCode": "234",
  "accountNumber": "8131121212"
}
'

Responses

🟢 200 - Result example
{
"status": true,
"message": "account lookup successful",
"data": {
  "kycLevel": 1,
  "countryCode": "234",
  "accountNumber": "8131121212",
  "emailVerified": true,
  "beneficiaryName": "Israel akpan"
}
}