Skip to main content
POST
/
banks
/
account-resolve
Bank Account Look Up
curl --request POST \
  --url https://developersandbox-api.flutterwave.com/banks/account-resolve \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "account": {
    "code": "044",
    "number": "0690000040"
  }
}
'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "bank_code": "044",
    "account_number": "0690000040",
    "account_name": "Alex James"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Trace-Id
string

A unique identifier to track this operation. It must be between 12 and 255 characters in length.

Required string length: 12 - 255
X-Scenario-Key
string

An optional scenario key that can be used to simulate specific behaviors or test different scenarios within the API. Providing this header allows you to trigger predefined responses or alter data based on the key's value, which can be useful for testing, development, or demonstrating specific functionalities. The key should be a string of 1 to 1000 characters.

Body

application/json
account
object
required

Response

OK

status
enum<string>
Available options:
success,
failed
message
string
data
object