---
title: "Bank Account Look Up"
method: POST
path: "/banks/account-resolve"
tags: ["Banks"]
---

# Bank Account Look Up

`POST /banks/account-resolve`

Resolve your customer's bank account information

## Headers

- `X-Trace-Id` string
- `X-Scenario-Key` string

## Request body

- union
  - object
    - `currency` string, required — ISO 4217 currency code.
    - `account` object, required
      - `code` string, required — The bank code.
      - `number` string, required — The bank account number.
  - object
    - `currency` string, required — ISO 4217 currency code.
    - `account` union, required
      - GbpBankIndividual
        - `code` string, required — The bank or institution code.
        - `number` string, required — The bank account number.
        - `type` string, required — The bank account type.
        - `name` object, required — The Customer's full name.
          - `first` string, required — The Customer's first name.
          - `middle` string — The Customer's middle name.
          - `last` string, required — The Customer's last name.
      - GbpBankCorporate
        - `code` string, required — The bank or institution code.
        - `number` string, required — The bank account number.
        - `type` string, required — The bank account type.
        - `business_name` string, required — The business name attached to the bank account.
  - object
    - `currency` string, required — ISO 4217 currency code.
    - `account` UsdBankCountry, required
      - `code` string, required — The bank or institution code.
      - `number` string, required — The bank account number.
      - `country` string, required

## Response `200`

OK

- object
  - `status` 'success' | 'failed'
  - `message` string
  - `data` BankAccountResolveResponse
    - `bank_code` string — The bank code.
    - `account_number` string — The bank account number.
    - `account_name` string — The bank account name.

## Other responses

- `400` — Bad request
- `401` — Unauthorised request
- `403` — Forbidden

---

[API](https://skmtc.net/flutterwave/apis/flutterwave-apis.md) · [All operations](https://skmtc.net/flutterwave/apis/flutterwave-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/flutterwave/flutterwave-apis/revisions/6014190df2e9/schema)
