Access real-time IBR rates, book forward contracts, and protect your export margins — all in one professional forex marketplace.
Whether you're an exporter protecting margins, a developer building fintech apps, or a student sending fees abroad — IBRLive has you covered.
Everything you need to monitor markets, manage currency risk, and make informed forex decisions — all in one professional platform.
Developer-grade API with lightning-fast response, more than 3000 currency pairs. trusted by fintechs, ERPs, importers, exporters, and treasury teams.
Send tuition fees, GIC payments, and family remittances at guaranteed best interbank rates via Flywire, WUBS, and PayMyTuition — RBI compliant.
Live mid-market rates, updated every few seconds. Switch to GST mode to calculate tax on foreign currency conversion per RBI slabs.
Mid-market rate shown for reference. Actual transaction rates vary. Contact us for best interbank quote.
GST on INR equivalent (FCY × your rate). Enter your own rate — not live API. Slabs apply up to ₹5.55 Cr taxable value. Contact us for best quote.
Deliver accurate exchange rates, historical data, and multiple benchmark sources like RBI Reference rate & FED Reference rates directly into your products and workflows.
// Snapshot: bid/ask + last trade const res = await fetch( 'https://api.ibrlive.com/api/forex/snapshot/symbols' + '?symbols=USDINR,EURUSD,GBPINR&api_key=YOUR_API_KEY' ); const { lastQuotes, lastTrades } = await res.json(); const q = lastQuotes.find(x => x.s === 'USDINR'); console.log(q.a, q.b); // ask, bid console.log(lastTrades.find(x => x.s === 'USDINR').p);
{
"success": true,
"lastQuotes": [{ "s": "USDINR", "a": 94.73, "b": 94.71 }],
"lastTrades": [{ "s": "USDINR", "p": 94.72 }]
}