CurrencyFreaks
Provides current and historical currency exchange rates with free plan 1K requests/month
- Authentication
- API Key
- HTTPS
- Yes
- CORS
- Yes
- Category
- Currency Exchange
- Documentation / URL
- https://currencyfreaks.com/
Overview
CurrencyFreaks provides exchange rates for 150+ currencies with a generous free tier. Auth is an API key sent as apikey.
Note (verified 2026-08): the correct path is
/v2.0/rates/latest— the bare/v2.0/ratesreturns 404 “No Handler Found”. An invalid key on the right path returns 401.
Quick Start
Latest rates (replace YOUR_KEY):
curl "https://api.currencyfreaks.com/v2.0/rates/latest?apikey=YOUR_KEY"
{
"date": "2026-08-22",
"base": "USD",
"rates": { "EUR": 0.92, "CNY": 7.2, "JPY": 150.2 }
}
Filtered:
curl "https://api.currencyfreaks.com/v2.0/rates/latest?apikey=YOUR_KEY&symbols=EUR,CNY"
Historical:
curl "https://api.currencyfreaks.com/v2.0/rates/historical?apikey=YOUR_KEY&date=2024-01-01&base=USD"
Authentication
- Register at currencyfreaks.com → free API key.
- Send it as the
apikeyquery parameter (invalid key → 401, verified).
Rate Limits & Notes
- Free tier: 1,000 requests/month — among the more generous currency free tiers.
symbols=filters the rates map;base=selects the base currency (USD default).- Historical data is available from 1999 on paid tiers (limited on free).
- The response includes a
datefield — useful for caching.
FAQ
Is CurrencyFreaks free? Free tier: 1,000 requests/month; more is paid.
Why does /v2.0/rates 404?
The correct endpoint is /v2.0/rates/latest (verified) — the bare path isn’t implemented.
How do I get historical rates?
/v2.0/rates/historical?date=YYYY-MM-DD (plan-dependent).
More in Currency Exchange
| API | Auth | HTTPS | CORS | |
|---|---|---|---|---|
| 1Forge Forex currency market data | API Key | Yes | Unknown | ↗ |
| Amdoren Free currency API with over 150 currencies | API Key | Yes | Unknown | ↗ |
| Bank of Russia Exchange rates and currency conversion | No auth | Yes | Unknown | ↗ |
| Currency-api Free Currency Exchange Rates API with 150+ Currencies & No Rate Limits | No auth | Yes | Yes | ↗ |
| Currencylayer Exchange rates and currency conversion | API Key | Yes | Unknown | ↗ |