Currency conversion
at the edge.
Sub-10ms exchange rates, any-pair conversion, and PPP adjustment — served from 300+ edge locations worldwide. One API for global pricing.
10,000 requests/month free · No credit card required · Upgrade anytime
One endpoint. Every currency.
A single authenticated GET request converts any currency pair.
curl https://api.currency-core.com/v1/convert \
-H "Authorization: Bearer cc_live_your_key" \
-G \
--data-urlencode "from=USD" \
--data-urlencode "to=INR" \
--data-urlencode "amount=100"const res = await fetch(
"https://api.currency-core.com/v1/convert?" +
new URLSearchParams({ from: "USD", to: "INR", amount: "100" }),
{ headers: { Authorization: "Bearer cc_live_your_key" } }
);
const { result, rate, date } = await res.json();
console.log(`100 USD = ${result} INR @ ${rate} on ${date}`);
import requests
resp = requests.get(
"https://api.currency-core.com/v1/convert",
params={"from": "USD", "to": "INR", "amount": 100},
headers={"Authorization": "Bearer cc_live_your_key"},
)
data = resp.json()
print(f"100 USD = {data['result']} INR @ {data['rate']} on {data['date']}"){ "from": "USD", "to": "INR", "amount": 100, "result": 8345.00, "rate": 83.45, "date": "2024-11-01", "ppp": { "applied": false } } Everything your global product needs
From checkout localization to financial dashboards, CurrencyCore handles the hard parts.
Sub-10ms hot path
Exchange rates are cached at the edge, so most requests resolve in a single fast round-trip.
Any currency pair
Convert between any two ISO 4217 currencies in a single request — clean, consistent, and transparent.
PPP adjustment
Apply Purchasing Power Parity factors for locally-sensitive pricing. Pass ppp=true with country codes.
Multi-tenant orgs
Invite teammates, manage API keys, and track usage per organization — all from the dashboard.
Tax-compliant billing
Subscriptions powered by Dodo Payments — handles VAT, GST, and local tax regulations automatically.
Secure by default
API keys are scoped per-organization. Bearer-token auth, rate limiting, and CORS configured out of the box.
Simple, transparent pricing
Scale as you grow. Billing via Dodo Payments with full tax compliance.
Pro
$29 /mo
- 250,000 requests / month
- Any currency pair & PPP adjustment
- Priority support
Scale
$99 /mo
- 2,000,000 requests / month
- Any currency pair & PPP adjustment
- Priority support
Business
$299 /mo
- 10,000,000 requests / month
- Any currency pair & PPP adjustment
- Priority support
Enterprise
Custom
- Unlimited requests / month
- Any currency pair & PPP adjustment
- Priority support
Start converting in 60 seconds
Free API key. No credit card. 10,000 requests per month on us.
Create free account