Documentation
The Forex Feed API serves live and historical exchange rates over HTTPS in a consistent JSON envelope. Every endpoint is a simple GET request authenticated with a Bearer API key — no SDKs required, though everything works with any HTTP client in any language.
Your first requestbash
curl "https://forex-feed.com/api/v1/latest?symbols=EUR,GBP,JPY" \
-H "Authorization: Bearer ff_live_YOUR_KEY"Endpoints
GET /api/v1/latestLive exchange rates for any base currency, filtered by symbols.
GET /api/v1/convertConvert an amount between any two supported currencies.
GET /api/v1/historicalAll rates for a single date, back to 2016.
GET /api/v1/timeseriesDate-keyed series across a range — built for charts.
GET /api/v1/pair-historyOne currency pair over time, with optional OHLC candles.
Guides
- Quickstart — from signup to first response in two minutes.
- Authentication — API keys, headers, and key rotation.
- Errors — every error code and how to handle it.
- Rate limits & quotas — per-minute limits, monthly quotas, and the /quota endpoint.