Supported currencies
Use the BankFXApi currencies endpoint to discover available currency codes and country information before requesting exchange rates or conversions.
GET
/v1/currenciesThe Currencies API provides a list of all supported currencies along with their corresponding country details.
Making an API Request
To fetch the list of supported currencies, send a GET request to the following endpoint:
https://api.bankfxapi.com/v1/currencies
Example Response
{
"code": 200,
"message": "success",
"currencies": [
{
"country_code": "AD",
"country_name": "Andorra",
"currency": "EUR"
},
{
"country_code": "AE",
"country_name": "United Arab Emirates",
"currency": "AED"
}
]
}
Authentication is required for all API requests. See the authentication guide for details.