Real-time foreign exchange rates, currency conversion, and historical data. Simple REST API. Start in 60 seconds.
# Get live rates in one line curl -H "Authorization: Bearer YOUR_API_KEY" \ https://ratewire-api-1.onrender.com/v1/rates # Response { "base": "USD", "rates": { "EUR": 0.92, "GBP": 0.79, "JPY": 149.50 ... }, "timestamp": "2025-03-31T10:00:00Z" }
Currency Pairs
Uptime SLA
Response Time
REST Endpoints
Simple, reliable, and built for scale
Live exchange rates for USD, EUR, GBP, JPY, and 21 more currencies updated continuously.
Convert any amount between any supported currency pair with a single API call.
Access up to 365 days of historical exchange rate data for trend analysis.
Bearer token authentication. Pass your key in the header or as a query parameter.
Per-plan rate limits keep your app protected. Upgrade any time as you scale.
Perfect for AI agents, LLM tools, and automation. Works with LangChain, Claude, GPT, and more.
Base URL: https://ratewire-api-1.onrender.com
Plug RateWire into Claude, GPT, LangChain, or any automation tool in minutes.
const getRates = async () => { const res = await fetch('https://ratewire-api-1.onrender.com/v1/rates', { headers: { 'Authorization': `Bearer ${YOUR_API_KEY}` } }); return res.json(); };
import requests def convert_currency(amount, from_currency, to_currency): url = f"https://ratewire-api-1.onrender.com/v1/convert" params = {"amount": amount, "from": from_currency, "to": to_currency} headers = {"Authorization": f"Bearer {YOUR_API_KEY}"} return requests.get(url, params=params, headers=headers).json()
https://ratewire-api-1.onrender.com/v1/convertAuthorization: Bearer YOUR_KEYamount, from, to
Start free. Upgrade as you grow. Cancel anytime.