Utilities

Currency Conversion

Convert an amount between ~170 currencies using daily-updated exchange rates.

GET/api/currency?from=&to=&amount=

Query parameters

NameTypeRequiredDescription
fromstringRequired3-letter source currency code, e.g. USD.
tostringRequired3-letter target currency code, e.g. EUR.
amountnumberOptionalAmount to convert. Default 1.

Try it

Saved only in this browser. Requests use your key and count toward your quota. Get a key

GET /api/currency

Example request

curl "https://your-app.com/api/currency?from=USD&to=EUR&amount=100" \
  -H "x-api-key: YOUR_API_KEY"

Response

{
  "from": "USD",
  "to": "EUR",
  "amount": 100,
  "rate": 0.87791,
  "result": 87.791,
  "updatedAt": "2026-09-26T10:12:05.000Z"
}