Multicurrency
Not a developer? If you're looking for merchant guidance on receiving payouts in multiple currencies — including eligibility, bank account setup and fees — see What are multi-currency payouts? & How do I set up multi-currency payouts?
Mollie enables you to accept payments in currencies beyond EUR through its v2 APIs, allowing international customers to transact in their preferred currency. The currencies listed here are payment currencies — the currencies your customers can pay in. For the currencies you can receive payouts in, see Multi-currency balances.
If you have a Mollie balance in the same currency as the payment, it will be settled to that balance directly without conversion. See Multi-currency balances to learn how to set up and query additional currency balances via the API.
In all other cases, the payment will be converted to your primary balance currency. You can view the converted amount via the API or via your Mollie Web app.
Supported currencies
Support for currencies other than EUR varies, so check out specific payment methods to ensure your target currency is available.
For PayPal, all currencies supported by PayPal are also supported by Mollie.
Currencies supported for card payments are generally also available for other card-based payment methods, such as Apple Pay.
| Currency | ISO code | Decimal places | Payment methods |
|---|---|---|---|
| United Arab Emirates dirham | AED | 2 | Cards |
| Australian dollar | AUD | 2 | Cards, PayPal |
| Brazilian real | BRL | 2 | PayPal |
| Canadian dollar | CAD | 2 | Cards, PayPal |
| Swiss franc | CHF | 2 | Cards, PayPal, Twint, Klarna, PaySafeCard |
| Czech koruna | CZK | 2 | Cards, PayPal, Klarna |
| Danish krone | DKK | 2 | Cards, PayPal, Klarna, MobilePay |
| Euro | EUR | 2 | All payment methods except BACS, Blik, Swish and Twint |
| British pound | GBP | 2 | Cards, PayPal, BACS, Pay by Bank, PaySafeCard |
| Hong Kong dollar | HKD | 2 | Cards, PayPal |
| Hungarian forint† | HUF | 2 | Cards, PayPal |
| Israeli new shekel | ILS | 2 | Cards, PayPal |
| Icelandic króna | ISK | 0 | Cards |
| Japanese yen | JPY | 0 | Cards, PayPal |
| Mexican peso | MXN | 2 | PayPal |
| Malaysian ringgit | MYR | 2 | PayPal |
| Norwegian krone | NOK | 2 | Cards, PayPal, Klarna, Vipps, PaySafeCard |
| New Zealand dollar | NZD | 2 | Cards, PayPal |
| Philippine piso | PHP | 2 | Cards, PayPal |
| Polish złoty | PLN | 2 | Cards, PayPal, Przelewy24, Blik, Klarna, PaySafeCard |
| Romanian leu | RON | 2 | Cards, PaySafeCard |
| Russian ruble | RUB | 2 | Cards, PayPal |
| Swedish krona | SEK | 2 | Cards, PayPal, Klarna, Billie, Swish, PaySafeCard |
| Singapore dollar | SGD | 2 | Cards, PayPal |
| Thai baht | THB | 2 | PayPal |
| New Taiwan dollar† | TWD | 2 | PayPal |
| United States dollar | USD | 2 | Cards, PayPal |
| South African rand | ZAR | 2 | Cards |
† For PayPal payments made in Hungarian forint or New Taiwan dollar, we round the amount up to zero decimals since PayPal does not support smaller denominations.
Filtering payment methods
When integrating multicurrency we can use the Methods API to retrieve all methods available for the given amount and currency.
Request
curl -g -X GET "https://api.mollie.com/v2/methods?amount[value]=10.00&amount[currency]=SEK" \
-H "Authorization: Bearer test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM"<?php
$mollie = new \Mollie\Api\MollieApiClient();
$mollie->setApiKey("test_dHar4XY7LxsDOtmnkVtjNVWXLSlXsM");
$methods = $mollie->methods->all([
"amount" => [
"currency" => "SEK",
"value" => "10.00"
]
]);Response
HTTP/1.1 200 OK
Content-Type: application/hal+json; charset=utf-8
{
"count": 2,
"_embedded": {
"methods": [
{
"resource": "method",
"id": "creditcard",
"description": "Credit card",
"image": {
"size1x": "https://www.mollie.com/external/icons/payment-methods/creditcard.png",
"size2x": "https://www.mollie.com/external/icons/payment-methods/creditcard%402x.png"
},
"_links": {
"self": {
"href": "https://api.mollie.com/v2/methods/creditcard",
"type": "application/hal+json"
}
}
},
{
"resource": "method",
"id": "paypal",
"description": "PayPal",
"image": {
"size1x": "https://www.mollie.com/external/icons/payment-methods/paypal.png",
"size2x": "https://www.mollie.com/external/icons/payment-methods/paypal%402x.png"
},
"_links": {
"self": {
"href": "https://api.mollie.com/v2/methods/paypal",
"type": "application/hal+json"
}
}
}
]
},
"_links": {
"self": {
"href": "https://api.mollie.com/v2/methods",
"type": "application/hal+json"
},
"documentation": {
"href": "https://docs.mollie.com/reference/v2/methods-api/list-methods",
"type": "text/html"
}
}
}Updated 1 day ago