CurrencyFreaks API
Overview
CurrencyFreaks provides current and historical currency exchange rates for 150+ currencies via a REST API. The free plan allows 1,000 requests per month with access to the latest rates endpoint. An API key is required; sign up is free. It is suitable for building currency widgets, invoice pricing, or travel applications.
Beginner Tip
Register at currencyfreaks.com to get your free API key. The basic request format is GET /latest?apikey=YOUR_KEY. On the free plan you get rates relative to USD only; upgrade for custom base currency support.
Available Data
Example Response
{
"base": "USD",
"date": "2025-01-15",
"rates": {
"EUR": 0.92,
"GBP": 0.79,
"JPY": 149.5,
"CAD": 1.35
}
} Field Reference
base The base currency for all exchange rates in this response. date Timestamp of when the rates were last updated. rates Key-value pairs of currency codes to their rate relative to the base currency. rates.EUR Example: the exchange rate of EUR relative to the base currency, returned as a string. Implementation Example
const url = "https://currencyfreaks.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Related Tags
Alternatives to CurrencyFreaks
Technical alternatives for different use cases.
More established provider with 170+ fiat currencies
Production apps needing proven reliability
Combined fiat and crypto rates in one API
Real-time and historical rates with simple JSON API
Clean API design with straightforward pricing
Cryptocurrency exchange rate coverage
Includes crypto rates alongside fiat currencies
Enterprise SLA and guaranteed uptime
Apps needing both fiat and crypto exchange rates
Similar APIs
View All →1Forge
1Forge provides real-time forex (foreign exchange) market data via a REST API, covering currency pairs, conversion rates, and market status.
Amdoren
Amdoren provides a free currency conversion API supporting over 150 currencies with daily updated exchange rates.
Currencylayer
⭐ Beginner's PickCurrencylayer provides reliable exchange rate and currency conversion data for over 168 world currencies using an easy-to-use REST API.
CurrencyScoop
CurrencyScoop (now CurrencyBeacon) provides real-time and historical exchange rates for 170+ currencies and cryptocurrencies via a REST API.
ExchangeRate-API
⭐ Beginner's PickExchangeRate-API delivers accurate foreign exchange rates for 160+ currencies, sourced from major financial data providers and updated hourly.