Exchange rates, conversion, historical data, time series, fluctuation analysis. 31 currencies.. Free tier with 100 requests per day — no credit card required.
curl -s "https://api.commandsector.in/api/currency/convert/100/USD/EUR?api_key=demo-try-free-2026"
import requests
resp = requests.get("https://api.commandsector.in/api/currency/convert/100/USD/EUR",
params={"api_key": "YOUR_KEY"})
print(resp.json()) # {"result": 92.15, "rate": 0.9215}
const resp = await fetch(
"https://api.commandsector.in/api/currency/convert/100/USD/EUR?api_key=YOUR_KEY"
);
const { result, rate } = await resp.json();
console.log(`100 USD = ${result} EUR`);
X-API-Key header or ?api_key=YOUR_KEY query parameter/api/currency/ endpoints| Free | 100 req/day | $0/mo |
| Pro | 10,000 req/day | $9.99/mo |
| Enterprise | Unlimited | $49.99/mo |
Machine-readable spec: /api/currency/openapi.json
Also available on: API Catalog · MCP Server · All Specs