GET /currency/{code} · /{base}/{quote}
Pass USD to EUR. Get today's official rate.
You have two codes. Daily official rate, or convert an amount.
Try it
name
Currency name
symbol
Currency symbol
digits
Minor unit digits (e.g. 2 for USD, 0 for JPY)
countries
ISO2 countries that use this currency
rate
Units of quote per 1 unit of base
date
Business day the rate was published
amount
With ?amount= only: echo of the amount asked
converted
With ?amount= only: amount times rate, rounded to the quote currency minor-unit digits
1
GET /currency/usd/eur. Daily official reference, with the publish date.
2
Add amount= for the converted figure, date= for a past business day.
3
USD, EUR, JPY. Name, symbol, decimal places, and who uses it.
Daily official rates. Every plan.
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 official reference, with the publish date. Pass date= for a past business day, amount= to convert. /country/{code} already returns a currency code. Come here for the full record, symbol and all.
RESPONSE
$ curl "https://api.parseapi.com/currency/usd" \ -H "X-API-Key: YOUR_API_KEY" // 200 · ~35ms US · ~97ms worldwide { "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
QUESTIONS
SPEED
US
11ms
EU
12ms
APAC
39ms
LatAm
9ms
ME
120ms
Daily official rates, with the publish date.
Convert two currencies in the currency converter. Official daily rates.