> For the complete documentation index, see [llms.txt](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://requestmechanic.gitbook.io/request-mechanic-api-documentation/wallets/resolve-bank-account.md).

# Resolve Bank Account

Use the `GET /wallets/banks/resolve-bank-account/{account_number}/{bank_code}` endpoint to resolve a user's bank account on Paystack by verifying the provided account number and bank code.

***

#### Parameters

| **Name**         | **Type** | **Location** | **Description**                                                |
| ---------------- | -------- | ------------ | -------------------------------------------------------------- |
| `account_number` | String   | Path         | The bank account number to resolve. *(Required)*               |
| `bank_code`      | String   | Path         | The code of the bank associated with the account. *(Required)* |

***

#### Responses

**Success Response**

| **Code** | **Description**                                         |
| -------- | ------------------------------------------------------- |
| 200      | The bank account was successfully resolved on Paystack. |

**Example Response**

```json
{
  "status": "success",
  "data": {
    "account_number": "1234567890",
    "account_name": "John Doe",
    "bank_code": "123",
    "bank_name": "Example Bank"
  }
}
```
