Exchange Rates API

Get real-time and historical exchange rates for 80+ currencies with bank-grade accuracy. Perfect for financial applications, e-commerce, and currency conversion services.

API endpoint
GET https://exchange-rates.cleariflow.com/v1/live/?api_key=YOUR_API_KEY&base=EUR&target=USD%2CGBP

Try it now

Test the API with live data

Need inspiration? Try:

API benefits

80+ Currencies

Access real-time exchange rates for over 80 world currencies with comprehensive coverage.

Historical Data

Get historical exchange rates for specific dates with complete time series data.

Currency Conversion

Convert arbitrary amounts between currencies with precise calculation and rate transparency.

Real-time Updates

Live exchange rates updated frequently to ensure you always have the latest data.

Global Coverage

Support for all major world currencies, emerging markets, and popular trading pairs.

Bank-grade Security

Enterprise-level security with encrypted connections and reliable data sources.

Key features

  • 80+ supported currencies
  • Real-time exchange rates
  • Historical rate data
  • Currency conversion
  • Multiple base currencies
  • Custom date ranges
  • Bulk conversion support
  • Time series data
  • Rate change indicators
  • Financial market data
  • Custom currency pairs
  • JSON response format

Quick start guide

1. Get your API key

Sign up for free and get instant access to your API key.

2. Make your first request

cURL
curl -X GET \
  "https://exchange-rates.cleariflow.com/v1/live/" \
  ?api_key=YOUR_API_KEY \
  &base=EUR \
  &target=USD%2CGBP

3. Handle the response

JSON
{
  "base": "EUR",
  "exchange_rates": {
    "EUR": 1,
    "GBP": 0.75,
    "USD": 0.85
  },
  "last_updated": 1704067200
}