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

# Resolve Nuban

> Resolve a Nigerian bank account number (NUBAN) to the account holder name and bank code. Use to confirm payee before transfers.

### Request

```http [GET] theme={null}
{{baseUrl}}api/v1/general/account
```

### Header

| Header        | Type   | Description                                                                                         |
| ------------- | ------ | --------------------------------------------------------------------------------------------------- |
| AppId         | string | Create an app to get your app ID on dashboard [here](https://app.dojah.io/developers/configuration) |
| Authorization | string | Private/secret key. Use `<key>` not `Bearer <key>`                                                  |

### Query parameter

| Parameter          | Type    | Description   | Required |
| ------------------ | ------- | ------------- | -------- |
| account\_number \* | string  | A valid NUBAN | required |
| bank\_code \*      | integer | Bank Code     | required |

<Note>
  The bank codes can be gotten from this [endpoint](/docs/general/service/fetch-banks).
</Note>

### Sample response

```json Response theme={null}
{
  "entity": {
    "account_number": "4146507207",
    "account_name": "FEMI ADEWALE KOLAWOLE"
  }
}
```

### Response Fields

| Field                  | Type   | Description                       |
| ---------------------- | ------ | --------------------------------- |
| entity                 | object | Contains the response data        |
| entity.account\_number | string | The resolved NUBAN account number |
| entity.account\_name   | string | Full name of the account holder   |
