> ## Documentation Index
> Fetch the complete documentation index at: https://avenue.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Resolve Account

> Look up an external bank account name using the account number and bank code.

## Request Headers

<ParamField header="x-api-key" type="string" required>
  Your live or test API key.
</ParamField>

## Request Body

<ParamField body="account_number" type="string" required>
  The external 10-digit NUBAN account number.
</ParamField>

<ParamField body="bank_code" type="string" required>
  The CBN bank code of the destination (e.g. `058` for GTB). Retrieve this from the List Banks endpoint.
</ParamField>

## Response

<Note>
  All amounts and balances in this endpoint are represented in **kobo** (e.g., `500000` = ₦5,000.00). Ensure you do not send or expect Naira values.
</Note>

<ResponseExample>
  ```json theme={null}
  {
    "success": true,
    "data": {
      "account_number": "0554772814",
      "account_name": "M.A Animashaun"
    }
  }
  ```
</ResponseExample>
