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.
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
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.
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
Questions? Email