/v1/fx/latestLatest rates for a base currency
Rates to convert one unit of `base` into every other currency (or only `symbols`). Codes are uppercase; crypto codes such as BTC and ETH are included. Refreshed hourly, the dataset itself updates daily.
| Parameter | In | Description |
|---|---|---|
| base | query | Base currency code. Default: EUR. |
| symbols | query | Comma-separated list of codes to return. Unknown codes yield 404. |
curl 'https://auma.dev/v1/fx/latest?base=EUR&symbols=USD,GBP,BTC'
{
"base": "EUR",
"date": "2026-09-16",
"count": 3,
"rates": {
"USD": 1.154,
"GBP": 0.86,
"BTC": 0.0000152
},
"source": {
"name": "fawazahmed0/currency-api",
"url": "https://github.com/fawazahmed0/currency-api",
"license": "CC0-1.0"
}
}