RBI MPC decisions, CPI & IIP, GDP estimates, GST collections, Union Budget, SEBI board meetings, weekly forex reserves. Pre-computed dates, post-release actuals, one consistent JSON shape. Stop scraping PIB.
Every other macro API is built for the US. The Indian releases — RBI, MoSPI, PIB, SEBI — live across a dozen government sites in PDFs, press releases, and HTML tables. We did the scraping so you don't have to.
Every event — MPC, CPI, GDP, Budget — returns the same fields. No source-specific parsing. Drop into your model in 30 seconds.
Future release calendars pre-computed for the full fiscal year. Actual values backfilled within hours of each release.
Fiscal year mapping, IST timestamps, INR units, official sources from RBI/MoSPI/PIB. Built for the desks that actually trade Indian macro.
Pass your API key via the X-API-Key header. That's the whole auth.
curl -H "X-API-Key: imk_..." \ https://indiamacro.ameeshkatariya.com/v1/next/rbi_mpc_decision
import requests
r = requests.get(
"https://indiamacro.ameeshkatariya.com/v1/next/rbi_mpc_decision",
headers={"X-API-Key": "imk_..."}
)
event = r.json()
print(f"Next MPC: {event['event_date']} ({event['days_away']} days away)")
const r = await fetch(
"https://indiamacro.ameeshkatariya.com/v1/next/rbi_mpc_decision",
{ headers: { "X-API-Key": "imk_..." } }
);
const event = await r.json();
console.log(`Next MPC: ${event.event_date} (${event.days_away} days away)`);
Pull historical CPI surprises (actual vs forecast) and align them to your INR/NIFTY series. The /v1/historical endpoint gives you the surprise field pre-computed.
Cron-poll /v1/next/rbi_mpc_decision every morning. Push to Telegram or your trading journal the night before high-impact events.
One /v1/upcoming?days=30 call powers a clean calendar widget. No scraping, no maintenance, no 4 AM pages when a government site changes its HTML.
Daily morning note? Pull actual, forecast, previous for any series and let your report template do the rest.
Full schema and live "try it" buttons at /docs.
Free tier is 5 calls/day so you'll burn it fast testing. Then upgrade or just wait until midnight UTC.
Already have an account? Sign in
Official sources only — RBI press releases for MPC dates and forex reserves, MoSPI for CPI, IIP and GDP, PIB for GST collection figures, Office of the Economic Adviser for WPI, SEBI for board meetings. We don't make up dates or estimate values. If the official source pushes back a release, we update within hours.
Future dates are pre-computed from official calendars at ingestion time, so they're always there. Actual values (e.g. June CPI = 4.3%) are backfilled within 4 hours of the official release in the median case.
No. That's the whole product — we deal with the messy ingestion so you get one boring, consistent JSON shape forever.
v1 is hosted on Digital Ocean + Supabase with HTTPS. We're not promising 99.9% uptime on the free tier yet — that comes with Pro and Enterprise. Status page launching soon.
v1 ships with the current fiscal year + the previous one. Deeper history (5y, 10y, since-base-year) is on the Pro roadmap and available now on Enterprise.
Coming in Starter. Tell us via the form below or email if you want it sooner — we'll prioritise based on customer demand.