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 '
{
  "countryCode": "NGA",
  "bankCode": "090483",
  "accountNumber": "2120894439"
}
'
{
  "success": true,
  "message": "Operation Successful",
  "data": {
    "result": "John Doe"
  },
  "meta": {}
}

Body

application/json
countryCode
string
required
Example:

"NGA"

bankCode
string
required
Example:

"090483"

accountNumber
string
required
Example:

"2120894439"

Response

201 - application/json

Account lookup successful

success
boolean
Example:

true

message
string
Example:

"Operation Successful"

data
object
meta
object