Retrieve current exchange rates between any two currencies. Our API provides accurate forex data updated throughout the day. Perfect for currency converters, international pricing, financial dashboards, and accounting systems.
{
"status": "ok",
"error": null,
"data": {
"currency1": "USD",
"currency2": "EUR",
"exchangeRate": "0.851223",
"inverseRate": "1.174773"
}
}






Retrieve current exchange rates between any two currencies. Our API provides accurate forex data updated throughout the day. Perfect for currency converters, international pricing, financial dashboards, and accounting systems.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/exchangerate?query=… x-api-key: your_key
Each request pulls from multiple upstream sources and computes the derived fields for you.
One structured object, typically under 200 ms — ready to render.
{ currency1, currency2, exchangeRate, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseAutomatically convert and display prices in customer local currencies. Update rates regularly to ensure accurate pricing without manual intervention.
Fetch current exchange rates to convert portfolio values, transaction history, and reports into any currency. Cache rates appropriately for performance.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/exchangerate?currency1=USD¤cy2=EUR", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);Every related API ships with your key — no separate plans, no extra keys, one bill.
See pricingReady-made recipes for Zapier, Make, and n8n — trigger on an event, and the data lands where your team works.
Learn how currency exchange rates work and what factors influence them.
Best practices for handling multi-currency transactions in your applications.
Understanding the standard system for identifying world currencies.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog