Skip to main content
POST
/
transfers
/
account-lookup
cURL
curl --request POST \
  --url https://api.example.com/transfers/account-lookup \
  --header 'Content-Type: application/json' \
  --data '
{
  "country_code": "<string>",
  "bank_code": "<string>",
  "account_number": "<string>"
}
'
{
  "success": true,
  "message": "<string>",
  "data": {
    "result": "John Doe"
  }
}

Body

application/json
country_code
string
required
Example:

"NGA"

bank_code
string
required
Example:

"090483"

account_number
string
required
Example:

"2120894439"

Response

201 - application/json

Account lookup successful

success
boolean
message
string
data
object