Latest rates
Returns the current exchange rates for a base currency. The same endpoint serves every plan — freshness depends on your tier: daily close (Free), 5-minute snapshots (Developer), or 20-second updates (Unlimited).
GET /api/v1/latestAvailable on: freedeveloperunlimited
Parameters
| Parameter | Required | Description |
|---|---|---|
| base | optional | Base currency code (default USD). Any supported currency — cross rates are derived server-side. |
| symbols | optional | Comma-separated list to filter the response, e.g. symbols=EUR,GBP,JPY. Omit for all currencies. |
Example
Requestbash
curl "https://forex-feed.com/api/v1/latest?base=EUR&symbols=USD,GBP,CAD" \
-H "Authorization: Bearer ff_live_YOUR_KEY"Responsejson
{
"success": true,
"data": {
"base": "EUR",
"rates": { "USD": 1.1421, "GBP": 0.8551, "CAD": 1.6180 }
},
"meta": {
"snapshot_at": "2026-07-08T23:46:47.411Z",
"granularity": "20s",
"plan": "unlimited"
}
}Notes
- •
meta.snapshot_attells you exactly when the rates were captured. - • Unknown codes in
symbolsreturnunsupported_currency(400).