curl --request GET \
--url https://api.exchangeratesapi.com.au/symbols
Copy
{
"success": true,
"symbols": {
"USD": {
"name": "US Dollar",
"symbol": "$",
"country": "United States"
},
"EUR": {
"name": "Euro",
"symbol": "€",
"country": "European Union"
}
},
"count": 21,
"base": "AUD",
"note": "All rates are quoted as AUD per unit of foreign currency from the Reserve Bank of Australia"
}
API Reference
Supported Currencies
List all supported currencies with their names, symbols, and countries
GET
/
symbols
Supported Currencies
Copy
curl --request GET \
--url https://api.exchangeratesapi.com.au/symbols
Copy
{
"success": true,
"symbols": {
"USD": {
"name": "US Dollar",
"symbol": "$",
"country": "United States"
},
"EUR": {
"name": "Euro",
"symbol": "€",
"country": "European Union"
}
},
"count": 21,
"base": "AUD",
"note": "All rates are quoted as AUD per unit of foreign currency from the Reserve Bank of Australia"
}