What currencies does Exchange Rate API support? #9
Answered
by
cahthuranag
cahthuranag
asked this question in
Q&A
-
|
How many currencies are available and how do I get the full list programmatically? AnswerExchange Rate API supports 160+ currencies including:
Get the full list programmatically: import { ExchangeRateAPI } from '@exchangerateapi/sdk';
const client = new ExchangeRateAPI({ apiKey: 'era_live_YOUR_KEY' });
const { symbols } = await client.symbols();
console.log(symbols);
// { USD: "United States Dollar", EUR: "Euro", GBP: "British Pound Sterling", ... }from exchangerateapi import ExchangeRateAPI
client = ExchangeRateAPI(api_key="era_live_YOUR_KEY")
data = client.symbols()
for code, name in data["symbols"].items():
print(f"{code}: {name}")Or via curl: curl "https://exchange-rateapi.com/api/v1/symbols"The symbols endpoint does not require authentication. |
Beta Was this translation helpful? Give feedback.
Answered by
cahthuranag
Jun 21, 2026
Replies: 1 comment
-
|
Exchange Rate API supports 160+ currencies including:
Get the full list programmatically: import { ExchangeRateAPI } from '@exchangerateapi/sdk';
const client = new ExchangeRateAPI({ apiKey: 'era_live_YOUR_KEY' });
const { symbols } = await client.symbols();
console.log(symbols);
// { USD: "United States Dollar", EUR: "Euro", GBP: "British Pound Sterling", ... }from exchangerateapi import ExchangeRateAPI
client = ExchangeRateAPI(api_key="era_live_YOUR_KEY")
data = client.symbols()
for code, name in data["symbols"].items():
print(f"{code}: {name}")Or via curl: curl "https://exchange-rateapi.com/api/v1/symbols"The symbols endpoint does not require authentication. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cahthuranag
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Exchange Rate API supports 160+ currencies including:
Get the full list programmatically: