Key points
- Supports latest rates, historical lookups, and conversion-style workflows.
- Base currency and symbol filtering keep responses focused.
- The JSON shape works well for pricing services, dashboards, and reporting jobs.
The Currency Exchange API returns latest rates, time-series history, and direct conversion data in structured JSON for pricing, reporting, and finance workflows.
curl -s -H "x-api-key: YOUR_API_KEY" "https://novadatahub.com/api/fx/rates?base=USD&symbols=EUR,INR,GBP"import requests
url = 'https://novadatahub.com/api/fx/rates'
params = {'base': 'USD', 'symbols': 'EUR,INR,GBP'}
resp = requests.get(url, params=params, headers={'x-api-key': 'YOUR_API_KEY'}, timeout=60)
print(resp.json())using System.Net.Http.Json;
using System.Text.Json;
using var http = new HttpClient();
http.DefaultRequestHeaders.Add("x-api-key", "YOUR_API_KEY");
var json = await http.GetFromJsonAsync<JsonElement>("https://novadatahub.com/api/fx/rates?base=USD&symbols=EUR,INR,GBP");
Console.WriteLine(json.ToString());{
"ok": true,
"base": "USD",
"date": "2026-05-11",
"rates": {
"EUR": 0.92,
"INR": 83.2,
"GBP": 0.78
}
}Open the main FX overview page for current rates, conversion, and historical data use cases.
Open landing pageMap base, date, rates, conversion values, and time-series structures into cleaner downstream models.
Open docsValidate rate, conversion, or historical requests before wiring pricing, checkout, or reporting logic.
Open docsRead the implementation guide for base-currency design, fallbacks, and pricing consistency across surfaces.
Open guideFollow a practical workflow for date-range retrieval, normalization, and reporting-ready storage.
Open tutorialSee what product and finance teams should evaluate when choosing an FX API for pricing and reporting.
Open comparison