Tools / Currency Exchange
Currency Exchange icon

Currency Exchange

Live and historical exchange rates

Convert amounts between 30+ currencies and retrieve live or historical exchange rates. Accurate rates from the European Central Bank, updated daily. Historical data back to 1999.

3 skillsv0.03
Convert Currency

Convert an amount between currencies using latest European Central Bank exchange rates. Supports 30+ major currencies including USD, EUR, GBP, JPY, AUD, CAD, CHF, and more.

Returns: Converted amounts with the exchange rate date and source
Parameters
amount *numberAmount to convert (must be positive)
from *stringSource currency ISO 4217 code (e.g. "USD")
to *stringTarget currency ISO 4217 code or comma-separated list (e.g. "EUR" or "EUR,GBP")
Example
Convert 100 USD to EUR
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "currency-exchange",
  "skill": "convert",
  "input": {
    "amount": 100,
    "from": "USD",
    "to": "EUR"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Latest Exchange Rates

Get the latest exchange rates for a base currency against all available currencies or specific targets. Rates are sourced from the European Central Bank and updated daily on business days.

Returns: Exchange rates for the base currency against target currencies with the rate date
Parameters
basestringBase currency ISO 4217 code (default "USD")
targetsstringComma-separated target currency codes to filter (e.g. "EUR,GBP,JPY"). Omit for all currencies.
Example
Latest rates from USD
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "currency-exchange",
  "skill": "latest_rates",
  "input": {
    "base": "USD"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Historical Exchange Rates

Get exchange rates for a specific date or date range. Useful for financial reporting, invoice conversion, and historical analysis. Data available from 1999-01-04 onwards.

Returns: Historical exchange rates for the specified date or date range with source attribution
Parameters
date *stringDate in YYYY-MM-DD format, or a range as YYYY-MM-DD..YYYY-MM-DD (e.g. "2025-01-01" or "2025-01-01..2025-01-31")
basestringBase currency ISO 4217 code (default "USD")
targetsstringComma-separated target currency codes to filter (e.g. "EUR,GBP"). Omit for all currencies.
Example
EUR/USD rate on Jan 1 2025
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{
  "tool": "currency-exchange",
  "skill": "historical_rates",
  "input": {
    "date": "2025-01-01",
    "base": "EUR",
    "targets": "USD"
  }
}' \
  https://api.toolrouter.com/v1/tools/call
Loading reviews...
Loading activity...
v0.032026-03-22
  • Added subtitle, expanded description, and agent instructions
v0.022026-03-20
  • Remove provider branding from user-facing output
v0.012026-03-20
  • Initial release

Quick Start

MCP (Claude Code)
claude mcp add --transport stdio \
  --env TOOLROUTER_API_KEY=YOUR_API_KEY \
  toolrouter -- npx -y toolrouter-mcp
REST API
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
  -d '{"tool":"currency-exchange","skill":"convert","input":{}}' \
  https://api.toolrouter.com/v1/tools/call

Use Cases

Open Convert International Pricing

Convert International Pricing

Convert product prices and service fees between currencies for international customers, invoices, and price lists.

Currency Exchange icon
Currency Exchange
4 agent guides
Open Track Exchange Rate Trends

Track Exchange Rate Trends

Monitor how exchange rates have moved over time to identify currency trends and anticipate rate direction.

Currency Exchange icon
Currency Exchange
4 agent guides
Open Research Company Filings

Research Company Filings

Search the SEC EDGAR database for specific company filings including 10-Ks, 10-Qs, 8-Ks, and other regulatory disclosures.

SEC Filings icon
SEC Filings
4 agent guides
View all use cases for Currency Exchange

Workflows

Open Economic Analysis Dashboard

Economic Analysis Dashboard

Build a multi-country economic analysis dashboard combining macroeconomic indicators, currency data, country profiles, and data visualizations.

World Economy icon
World Economy
Currency Exchange icon
Currency Exchange
Country Data icon
Country Data
Generate Chart icon
Generate Chart
4 steps4 tools
Open Pricing Intelligence

Pricing Intelligence

Monitor and analyze competitor pricing by extracting price data, analyzing strategies, normalizing currencies, and visualizing comparisons.

Web Scraper icon
Web Scraper
Competitor Research icon
Competitor Research
Currency Exchange icon
Currency Exchange
Generate Chart icon
Generate Chart
4 steps4 tools
Open Travel Planning Assistant

Travel Planning Assistant

Plan a complete trip from flights and hotels to weather, currency, and local events in one workflow.

Flight Search icon
Flight Search
Hotel Search icon
Hotel Search
Weather Forecast icon
Weather Forecast
Currency Exchange icon
Currency Exchange
Events Nearby icon
Events Nearby
5 steps5 tools
Open Business Trip Planner

Business Trip Planner

Plan business trips with flights, hotels, currency conversion, weather, and timezone alignment.

Flight Search icon
Flight Search
Hotel Search icon
Hotel Search
Currency Exchange icon
Currency Exchange
Weather Forecast icon
Weather Forecast
Timezone Converter icon
Timezone Converter
5 steps5 tools

Frequently Asked Questions

Does it support live and historical rates?

Yes. You can convert with live rates or look up historical exchange data.

How many currencies can it convert?

It covers 30+ currencies.

How fresh are the rates?

The rates come from the European Central Bank and are updated daily.

Can I look back years, not just today?

Yes. Historical data goes back to 1999.