> 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/get-list-of-supported-banks.md).

# Get List of Supported Banks

The `GET /wallets/banks/` endpoint retrieves a list of all supported banks for wallet operations.

**Parameters**

This endpoint does not require any parameters.

**Responses**

| **Code** | **Description**            |
| -------- | -------------------------- |
| `200`    | A list of supported banks. |

**Example Response**

```json
[
  {
    "id": 1,
    "name": "Bank A",
    "code": "BANKA",
    "country": "Country A"
  },
  {
    "id": 2,
    "name": "Bank B",
    "code": "BANKB",
    "country": "Country B"
  }
]
```
