← Docs

Currency API

A currency by ISO code, plus daily exchange rates.

Pass USD, EUR, or JPY. The name, the symbol people recognize, how many digits after the decimal, and every country that spends it.

Lookup

GET
api.parseapi.com/currency/{code}
By ISO 4217 code. Name, symbol, digits, and countries
curl "https://api.parseapi.com/currency/usd" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "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

Exchange rate

Two codes make a pair. Rates are daily reference rates from central banks (the European Central Bank and the Bank of Canada), refreshed after each publish. About 32 currencies carry a rate. Good for display and estimates, not for settling trades. An unsupported pair returns a 404.

GET
api.parseapi.com/currency/{base}/{quote}
Daily official reference rate for a pair
curl "https://api.parseapi.com/currency/usd/eur" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "base": "USD",
  "quote": "EUR",
  "rate": 0.86692674,
  "date": "2026-08-07"
}

Response fields

base
Base currency code
quote
Quote currency code
rate
Units of quote per 1 unit of base
date
Business day the rate was published

Questions? Email