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 pageRead 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 comparisonOpen the related NovaDataHub page for deeper documentation, comparisons, or implementation guidance.
Open the related NovaDataHub page for deeper documentation, comparisons, or implementation guidance.
Open the related NovaDataHub page for deeper documentation, comparisons, or implementation guidance.
Open the related NovaDataHub page for deeper documentation, comparisons, or implementation guidance.