> For the complete documentation index, see [llms.txt](https://docs.jgopay.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.jgopay.com/english/bank-codes.md).

# Bank Codes

When creating a [withdrawal](/english/create-withdrawal.md), you must provide a `bank_code` that identifies the destination bank or e-wallet. JGoPay maps your bank code to the gateway-specific code automatically.

31 bank codes are supported for MYR withdrawals.

## Malaysian Banks

| Bank Code     | Bank Name                   |
| ------------- | --------------------------- |
| `MY_MBB`      | Maybank                     |
| `MY_CIMB`     | CIMB Bank                   |
| `MY_PBB`      | Public Bank                 |
| `MY_RHB`      | RHB Bank                    |
| `MY_HLB`      | Hong Leong Bank             |
| `MY_AMB`      | AmBank                      |
| `MY_AFFIN`    | Affin Bank                  |
| `MY_ALLIANCE` | Alliance Bank               |
| `MY_ISLAM`    | Bank Islam                  |
| `MY_MUAMALAT` | Bank Muamalat               |
| `MY_BSN`      | Bank Simpanan Nasional      |
| `MY_AGRO`     | Agrobank                    |
| `MY_OCBC`     | OCBC Bank                   |
| `MY_HSBC`     | HSBC Malaysia               |
| `MY_SCB`      | Standard Chartered Malaysia |
| `MY_UOB`      | UOB Malaysia                |
| `MY_CITI`     | Citibank Malaysia           |
| `MY_DEUTSCHE` | Deutsche Bank Malaysia      |
| `MY_BKRM`     | Bank Kerjasama Rakyat       |
| `MY_MBSB`     | MBSB Bank                   |
| `MY_AEON`     | AEON Credit                 |
| `MY_ALRAJHI`  | Al Rajhi Bank               |
| `MY_BOA`      | Bank of America             |
| `MY_BOC`      | Bank of China               |
| `MY_BNP`      | BNP Paribas                 |
| `MY_BKK`      | Bangkok Bank                |
| `MY_CCBM`     | China Construction Bank     |

## Malaysian E-Wallets

| Bank Code   | Wallet Name |
| ----------- | ----------- |
| `MY_TNG`    | Touch 'n Go |
| `MY_BIGPAY` | BigPay      |
| `MY_GXBANK` | GX Bank     |

## Usage Example

```json
{
  "amount": 500.00,
  "currency": "MYR",
  "reference_id": "WD20260325001",
  "bank_code": "MY_MBB",
  "account_number": "1234567890",
  "account_name": "Ahmad bin Ali",
  "method": "BANK"
}
```

The `bank_code` you provide is automatically translated to the correct gateway-specific code. You always use the standard codes listed above, regardless of which gateway processes the withdrawal.

> **Note:** These codes are for **withdrawals**. For FPX deposit bank selection (`metadata.provider_channel_id`), use the FPX/RPP codes in [Payment Methods](/english/payment-methods.md#fpx-bank-codes) instead.

## Bank List API (Authenticated)

You can fetch the bank list programmatically via the API:

```
GET /api/v1/payment/banks?currency=MYR
Authorization: Bearer <merchant_token>
```

If `currency` is omitted, defaults to your merchant's configured currency.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.jgopay.com/english/bank-codes.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
