Skip to content
Discussion options

You must be logged in to vote

Exchange Rate API supports 160+ currencies including:

  • Major: USD, EUR, GBP, JPY, CHF, CAD, AUD, NZD
  • Popular: INR, CNY, BRL, MXN, TRY, ZAR, SGD, HKD, KRW, THB
  • Emerging: PHP, PKR, BDT, LKR, NGN, GHS, KES, AED, SAR, EGP

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():
…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by cahthuranag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant