What currencies does AllRatesToday 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? AnswerAllRatesToday supports 160+ currencies including:
Get the full list programmatically: import AllRatesToday from '@allratestoday/sdk';
const client = new AllRatesToday({ apiKey: 'art_live_YOUR_KEY' });
const { symbols } = await client.symbols();
console.log(symbols);
// { USD: "United States Dollar", EUR: "Euro", GBP: "British Pound Sterling", ... }from allratestoday import AllRatesToday
client = AllRatesToday(api_key="art_live_YOUR_KEY")
data = client.symbols()
for code, name in data["symbols"].items():
print(f"{code}: {name}")Or via curl: curl "https://allratestoday.com/api/v1/symbols"The symbols endpoint does not require authentication. |
Answered by
cahthuranag
Jun 21, 2026
Replies: 1 comment
|
AllRatesToday supports 160+ currencies including:
Get the full list programmatically: import AllRatesToday from '@allratestoday/sdk';
const client = new AllRatesToday({ apiKey: 'art_live_YOUR_KEY' });
const { symbols } = await client.symbols();
console.log(symbols);
// { USD: "United States Dollar", EUR: "Euro", GBP: "British Pound Sterling", ... }from allratestoday import AllRatesToday
client = AllRatesToday(api_key="art_live_YOUR_KEY")
data = client.symbols()
for code, name in data["symbols"].items():
print(f"{code}: {name}")Or via curl: curl "https://allratestoday.com/api/v1/symbols"The symbols endpoint does not require authentication. |
0 replies
Answer selected by
cahthuranag
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
AllRatesToday supports 160+ currencies including:
Get the full list programmatically: