Payment methods and currencies
Available currencies
Region | API code of country | Currency | API code of currency |
---|---|---|---|
World | COL, USA and etc | US dollar | USD |
World | FRA, POL and etc | EURO | EUR |
Argentine | ARG | Argentine Peso | ARS |
Australia | AUS | Australian Dollar | AUD |
Brazil | BRA | Brazilian real | BRL |
India | IND | Indian Rupee | INR |
Indonesia | IDN | Indonesian Rupiah | IDR |
Kenya | KEN | Kenyan Shilling | KES |
Malaysia | MYS | Malaysian Ringgit | MYR |
Mexico | MEX | Mexican Peso | MXN |
New Zealand | NZD | New Zealand Dollar | NZD |
Nigeria | NGA | Nigerian Naira | NGN |
Philippines | PHL | Philippine peso | PHP |
Thailand | THA | Thai Baht | THB |
Vietnam | VNM | Vietnamese Dong | VND |
Every day we are expanding the number of currencies offered.
Actual list of currencies can check with Your account manager
Available payment methods
XAMAX offers its clients (merchants) a variety of payment methods and continuously expands and improves its portfolio. We focusing on integrating modern payment solutions, ensuring seamless and secure transactions, and providing tailored support for merchants’ needs. This approach helps merchants grow their businesses while delivering a smooth payment experience for their customers.
We offer to our merchant next payment methods:
Method | Country | Currency | API code of methods |
---|---|---|---|
Credit/Debit Card | World | US dollar , Euro | credit_card |
Credit Card2Crypto (Debit/Credit) | World | US dollar , Euro | on_ramp_card |
iDeal2Crypto | World | US dollar , Euro | on_ramp_ideal |
Crypto | World | Сurrencies | crypto_payment |
QR code | Thailand , Vietnam | THB , VND | qr_code |
Virtual Account | Brazil , Indonesia , Mexico , Nigeria , Vietnam | BRL , IDR , MXN , NGN , VND | virtual_account |
Online Banking | Argentine , Bangladesh , Brazil , India , Indonesia , Mexico , Malaysia ,Philippines , Thailand , Vietnam | ARS , BDT , BRL , INR , IDR , MXN , MYR , PHP , THB , VND | online_banking |
UPI | India | INR | upi |
PayID | Australia | AUD | pay_id |
PoliPay | New Zealand | NZD | poli_pay |
TrueMoney ewallet | Thailand | THB | truemoney_ewallet |
GrabPay ewallet | Philippines | PHP | grabpay_ewallet |
GCASH | Philippines | PHP | gcash_ewallet |
PayMaya ewallet | Philippines | PHP | paymaya_ewallet |
MOMO ewallet | Vietnam | VND | momo_ewallet |
BKash | Bangladesh | BDT | bkash_ewallet |
Nagad | Bangladesh | BDT | nagad_ewallet |
UPay | Bangladesh | BDT | upay_ewallet |
Get payment methods for country-currency
Merchant can check available in XAMAX payment methods for pair country-currency through API method.
The API method returns all available payment methods, indicating whether each method is enabled or disabled for the merchant.
- Production
- Sandbox
POST https://api.xamax.io/fiat/v1/merchant/payment-methods HTTP/1.1
Authorization: Bearer {ACCESS_TOKEN}
Content-Type: application/json
{
"country": "IDN",
"currency": "IDR"
}
POST https://api.sandbox.xamax.io/fiat/v1/merchant/payment-methods HTTP/1.1
Authorization: Bearer {ACCESS_TOKEN}
Content-Type: application/json
{
"country": "IDN",
"currency": "IDR"
}
Parameter | Mandatory | Type | Description | Example |
---|---|---|---|---|
country | Yes | string | Country code in ISO 3166-1 Alpha-3 format | THA |
currency | Yes | string | Currency code in ISO 4217 Alpha-3 format | USD |
Response example
{
"payment_methods": [
{
"payment_method": "virtual_account",
"currency": "IDR",
"status": "disable",
"message": "Contact with the XAMAX manager for turn on it"
},
{
"payment_method": "online_banking",
"currency": "IDR",
"status": "enable"
}
]
}
Parameter | Mandatory | Type | Description | Example |
---|---|---|---|---|
payment_method | Yes | string | Payment method for specified country. | credit_card |
currency | Yes | string | Currency code in ISO 4217 Alpha-3 format | USD |
status | Yes | string | Status of payment method. Options: enable - method can be used for payment and showing to user; disable - payment channel cannot be used for payment | enable |
message | Yes | string | In case disable of the method, XAMAX return info, how can turn on the method | THA |