APIs/Currency

Currency API

GET /currency/{code}

Pass USD, EUR, or JPY and get back the currency name, symbol, decimal places, and which countries use it.

Need a rate? /currency/usd/eur returns the daily reference rate from central banks, with the publish date. Built for display and estimates, not for settling trades.

Useful in checkout, localization, and anywhere you need a currency identifier resolved. /country/{code} already returns a currency code, come here for the full record, symbol and all.

156
ISO 4217 currencies
250
countries & territories
daily
official rates
100%
with symbol

Try it

$ curl "https://api.parseapi.com/currency/usd" \
  -H "X-API-Key: YOUR_API_KEY"

// 200 · ~13ms · USA
{
  "currency": "USD",
  "numeric": 840,
  "name": "United States Dollar",
  "name_plural": "United States Dollars",
  "symbol": "$",
  "symbol_native": "$",
  "digits": 2,
  "countries": [
    "AS",
    "EC",
    "PR",
    "US",
    "VI"
  ]
}

Response fields

currency
ISO 4217 currency code
numeric
ISO 4217 numeric code
name
Currency name
name_plural
Plural currency name
symbol
Currency symbol
symbol_native
Native / local symbol
digits
Minor unit digits (e.g. 2 for USD, 0 for JPY)
countries
ISO2 countries that use this currency

SPEED

Fast from everywhere.

Median time for a /currency response to reach a real city, first byte back, measured live from 16 cities. Not a lab benchmark. The whole trip.

US

13ms

EU

16ms

APAC

45ms

LatAm

18ms

ME

125ms

See live status →