Overview
Access the up-to-date list of 180+ fiat currencies we support for charging credit/debit cards for buying crypto by their full names and symbol names (ISO 4217 codes). We also support 3 base currencies for settlement (USD, EUR, and GBP) leading to over 500 FX currency conversions supported! Reference this section for more information on charge currencies, base/settlement currencies, and FX currency conversions.
Charge Currency Support
For a complete list of fiat currencies (names, ISO 4217 codes, and decimal places) we support for charging a user's credit/debit card, go here
Name
Symbol
๐บ๐ธUS Dollar
usd
๐ช๐บEuro
eur
๐ฌ๐งGreat Britain Pound
gbp
No Super JWT required
let url = `${ROOT}/v1/admin/baseFiatCurrencies`;
axios.get(url)
.then(result => console.log(result))
.catch(err => console.log(err));
{ message: 'Successfully retrieved supported base fiat currencies',
code: 200,
data:
[ { symbol: 'usd', name: 'US Dollar' },
{ symbol: 'eur', name: 'Euro' },
{ symbol: 'gbp', name: 'Great Britain Pound' }
]
}