Supported Methods
Use this page to check supported regions, rails, currencies, and paymentMethodCode
values. Each region uses a distinct set of API paths and a distinct settlement wallet.
| Region | Rail | Pay-in API | Settlement wallet | Checkout |
|---|---|---|---|---|
| Bangladesh | bangladesh | /v1/payins | BDT | Provider link from paymentInfo.content |
| Brazil | brazil | /v1/br/payins | BRL | PIX from paymentInfo (code, url, …) |
| India | india | /v1/h2h/* | USDT | Merchant-built UPI UI |
| Europe | europe | /v1/eur/* | USDC | Redirect to checkoutUrl |
Bangladesh (BDT)
| Payment Method | Payment Method Code | Min Amount (BDT)/Per Trx | Max Amount (BDT)/Per Trx |
|---|---|---|---|
| E-Wallet | BKASH | 200 | 25,000 |
| E-Wallet | NAGAD | 200 | 25,000 |
| E-Wallet | UPAY | 200 | 25,000 |
How to use in API payload
Set the paymentMethodCode field in your Bangladesh PAYIN request:
{
"amount": "500",
"paymentMethodCode": "BKASH"
}See Bangladesh → Pay-in.
Brazil (PIX / BRL)
| Payment Method | Payment Method Code | Min Amount (BRL)/Per Trx | Max Amount (BRL)/Per Trx |
|---|---|---|---|
| PIX | PIX | 10.00 | 15,000.00 |
How to use in API payload
{
"amount": "100.00",
"paymentMethodCode": "PIX"
}Pay-ins and payouts use /v1/br/payins and /v1/br/payouts. Status polling uses
the shared GET /v1/payins/:id and GET /v1/payouts/:id endpoints. The Brazil
market must be KYB-approved before /v1/br/* works.
See Brazil → Pay-in.
India (UPI H2H)
| Method | Amount quoted as | Customer pays (UPI) | Settlement wallet | Notes |
|---|---|---|---|---|
| UPI (H2H) | INR or USDT | Always INR (converted when amount is USDT) | USDT | See Create Pay-in |
currencySymbol+amount: quote in INR (customer pays that INR) or USDT (customer pays INR equivalent; you receive that USDT).- Supported on the merchant API: H2H UPI only (
/v1/h2h/*).
See India → Pay-in.
Europe (Open Banking)
| Method | Pay-in currency | Settlement wallet | Notes |
|---|---|---|---|
| Open Banking | EUR / GBP | USDC | Hosted bank widget; redirect to checkoutUrl |
| Bank payout | EUR | Debits USDC | May require an explicit approve step |
See Europe → Pay-in.
Last updated on