🌍 30 Currencies • ECB Official Rates

Live Exchange Rates.
Free to Start. Priced Fairly.

A reliable currency API with real-time rates, historical data back to 1999, and instant conversion — starting at $0/month. No gotchas, no $10 paywall for basic features.

Get Your Free API Key → Try the Demo
30
Currencies
1999
Historical data since
1hr
Update frequency
Cheaper than Fixer.io
Live API Demo — try it now (preview rates)
// Click Convert to see a live result
Quick Start

Two lines. Any language.

Drop-in compatible with the Fixer.io API format. Works with any HTTP client.

GET /v1/latest — cURL
# Latest USD rates for EUR, GBP, JPY
curl "https://forexapi.aiclipcutter.tech\
/v1/latest?base=USD&symbols=EUR,GBP,JPY" \
  -H "X-Api-Key: YOUR_KEY"
Response — JSON
{
  "success": true,
  "base": "USD",
  "date": "2026-09-03",
  "rates": {
    "EUR": 0.9212,
    "GBP": 0.7874,
    "JPY": 147.32
  }
}
GET /v1/convert — JavaScript
const res = await fetch(
  `https://forexapi.aiclipcutter.tech
/v1/convert?from=USD&to=INR&amount=500`,
  { headers: { 'X-Api-Key': KEY } }
);
const data = await res.json();
console.log(data.result); // 41650.00
GET /v1/historical — Python
import requests
r = requests.get(
  "https://forexapi.aiclipcutter.tech"
  "/v1/historical/2024-01-15",
  headers={"X-Api-Key": KEY},
  params={"base": "USD"}
)
print(r.json()["rates"])
Features

Everything you need. Nothing you don't.

Built for developers who want reliable data without enterprise pricing.

Real-Time Rates

Sourced from the European Central Bank, which publishes official rates once per business day around 16:00 CET. Authoritative, free, no rate limits on the source.

📅

Historical Data

Exchange rates back to 1999. Perfect for charts, backtests, and auditing past transactions.

🔁

Instant Conversion

Convert any amount between any two currencies in a single API call. Clean JSON every time.

📈

Timeseries Queries

Fetch rates across a date range in one call. Up to 365 days per request.

📊

Fluctuation Analysis

Get the percentage change and absolute delta between any two dates for all currencies.

🔒

Simple Auth

One API key via header or query param. No OAuth, no SDK, no setup ceremony.

API Reference

6 endpoints. All JSON.

Method Endpoint Description Min. Plan
GET /v1/latest Latest rates for any base + symbol filter Free
GET /v1/convert Convert amount between two currencies Free
GET /v1/currencies List all supported currency codes + names Free
GET /v1/historical/{date} Rates for a specific date (YYYY-MM-DD) Starter
GET /v1/timeseries Rates across a date range (max 365 days) Pro
GET /v1/fluctuation % change and delta between two dates Pro

Base URL: https://forexapi.aiclipcutter.tech  ·  Auth: X-Api-Key: YOUR_KEY

Comparison

Why pay 5× more for the same data?

ForexAPI ✓ Fixer.io ExchangeRate-API
Free tier requests/mo 1,000 100 1,500
Paid from (per month) $4.99 $10 $12
HTTPS on free tier ✓ Yes ✗ No (paid only) ✓ Yes
Historical data From $4.99/mo From $50/mo From $12/mo
Timeseries endpoint From $14.99/mo From $50/mo From $60/mo
Currency count 30 (ECB official) 170+ 160+
No credit card for free ✓ Yes ✓ Yes ✓ Yes
Pricing

Simple, transparent pricing.

Start free. Upgrade when you need more. No credit card required to start.

Free
$0
forever
1,000 requests/month
  • Latest rates
  • Currency conversion
  • 30 ECB currencies
  • HTTPS included
  • Historical data
  • Timeseries
  • Fluctuation
Get Free Key
Starter
$4.99
per month
50,000 requests/month
Overage: $0.0001/req
  • Latest rates
  • Currency conversion
  • 30 ECB currencies
  • HTTPS included
  • Historical data (1 yr)
  • Timeseries
  • Fluctuation
Get Starter
Business
$39.99
per month
Unlimited requests
+ Priority support + SLA
  • Everything in Pro
  • Unlimited requests
  • 99.9% uptime SLA
  • Priority email support
  • Custom base URL
  • Dedicated onboarding
Contact Us

Also available on RapidAPI marketplace. Cancel anytime. All plans billed monthly.

Ready to build?

Get your free API key in seconds. No credit card. No commitment.

Get Free API Key → Browse Docs