Convert any amount between 150+ world currencies using real-time exchange rates. Returns converted value with rate information.
{
"status": "ok",
"error": null,
"data": {
"from": "USD",
"to": "EUR",
"value": 1,
"convertedValue": 0.921456,
"rate": 0.921456,
"change24h": -0.002134,
"change24hPct": -0.2312,
"changeDirection": "down",
"high24h": 0.924521,
"low24h": 0.919823
}
}






Convert any amount between 150+ world currencies using real-time exchange rates. Returns converted value with rate information.
A single authenticated GET with the location you care about — no SDK required.
GET /v1/currencyconverter?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.
{ from, to, value, … }
Real applications shipping on this endpoint today — each with the numbers that made it worth wiring up.
See every use caseIntegrate our Currency Converter API to automatically display prices in 150+ currencies, updated with real-time exchange rates.
Integrate currency conversion to automatically convert expenses to the user's home currency as they log them.
Copy a working request, or install a typed SDK. Same endpoint, same key.
const res = await fetch("https://api.apiverve.com/v1/currencyconverter?value=1&from=USD&to=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.
The same key unlocks every other APIVerve endpoint — reach for them when you need them.
Browse the catalog