Frankfurter API
Overview
Frankfurter is an open-source currency data API backed by the European Central Bank (ECB) exchange rate dataset, providing rates for 33 major currencies updated every weekday. It supports historical queries, time series ranges, and currency conversion — all without any authentication or rate limits. The API is clean, fast, and CORS-enabled, making it a top choice for hobby and production projects alike.
Beginner Tip
No sign-up required. The live endpoint is `https://api.frankfurter.app/latest` for today's rates. To convert between currencies, add query params: `?from=USD&to=EUR`. For historical data, replace `latest` with a date like `2024-01-15`. All rates are based on the ECB daily reference rate.
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
amount The base amount used for conversion (default is 1). base The currency code the rates are expressed relative to. date The date of the rates in YYYY-MM-DD format (most recent ECB publishing day). rates Key-value map of currency codes to their exchange rate relative to the base currency. Implementation Example
// ⚠️ Note: This URL may be a documentation page. Check official docs for actual API endpoint.
const url = "https://www.frankfurter.app/docs";
const response = await fetch(url);
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
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Alternatives to Frankfurter
Technical alternatives for different use cases.
Free, open-source API backed by ECB data
Exotic currency pairs and cryptocurrency rates
European currency conversions with no API key
Open-source ECB rate API, self-hostable
Non-European currency pair coverage
Self-hosting for data sovereignty requirements
Similar APIs
View All →Bank of Russia
The Bank of Russia XML API provides official daily exchange rates for foreign currencies against the Russian Ruble, published by the Central Bank of the Russian Federation.
Currency-api
⭐ Beginner's PickCurrency-api is a free, open-source currency exchange rates API hosted on GitHub with no rate limits, no authentication, and support for 150+ currencies.
Czech National Bank
The Czech National Bank (CNB) publishes official daily exchange rates for 30+ currencies against the Czech Koruna (CZK) as a plain XML file.
Economia.Awesome
⭐ Beginner's PickEconomia.Awesome is a free Brazilian API that provides real-time and historical currency exchange rates for dozens of currency pairs, including BRL (Brazilian Real) against USD, EUR, BTC, and more.
Exchangerate.host
⭐ Beginner's PickExchangerate.host provides free foreign exchange and cryptocurrency rates via a simple REST API, covering 170+ currencies and major crypto assets.