Discover/Org API
live

Org APIdata.rbi.org.in

Access RBI money market operations, INR reference rates for USD/GBP/EUR/JPY, and the full index of RBI statistical data releases via a structured API.

Endpoint health
verified 1d ago
get_latest_money_market_operations
get_money_market_operations_by_date
list_money_market_operations_by_month
get_reference_rate
list_data_releases
5/5 passing latest checkself-healing
Endpoints
5
Updated
22d ago

What is the Org API?

This API exposes 5 endpoints covering the Reserve Bank of India's official monetary data, including daily money market operations and INR reference exchange rates. Use get_latest_money_market_operations to retrieve the current day's Overnight and Term segment data, or query get_reference_rate to pull USD, GBP, EUR, and JPY rates against INR for any date range. A separate index endpoint catalogues all RBI statistical releases by frequency.

Try it

No input parameters required.

api.parse.bot/scraper/c487e89c-ad0e-48b5-bb6b-ea0f6ceee999/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c487e89c-ad0e-48b5-bb6b-ea0f6ceee999/get_latest_money_market_operations' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace data-rbi-org-in-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""RBI Financial Data — bounded, re-runnable walkthrough."""
from parse_apis.rbi_financial_data_api import (
    RBI, Month, InvalidInput
)

client = RBI()

# Fetch the latest Money Market Operations report (single object, no iteration).
report = client.moneymarketreports.latest()
print(f"Latest report: {report.title}, date: {report.date}")
for section in report.sections[:2]:
    print(f"  Section: {section.header}, rows: {len(section.rows)}")

# List report summaries for a specific month; limit caps total items.
for summary in client.moneymarketreportsummaries.list(
    year="2024", month=Month.JANUARY, limit=3
):
    print(f"  {summary.pub_date} — {summary.title} (prid={summary.prid})")

# Drill down: take one summary and fetch its full detail report.
first_summary = client.moneymarketreportsummaries.list(
    year="2024", month=Month.JANUARY, limit=1
).first()
if first_summary:
    detail = first_summary.details()
    print(f"Detail title: {detail.title}, sections: {len(detail.sections)}")

# Reference rates for a date range.
for rate in client.referencerateentries.list(
    from_date="01/01/2024", to_date="05/01/2024", limit=3
):
    print(f"  {rate.date}: {rate.currencies}")

# Browse all data releases by frequency.
for release in client.datareleases.list(limit=5):
    print(f"  [{release.frequency}] {release.name}")

# Typed error handling: catch invalid input format.
try:
    client.referencerateentries.list(from_date="bad-date", to_date="also-bad", limit=1).first()
except InvalidInput as exc:
    print(f"Caught InvalidInput: {exc}")

print("Exercised: moneymarketreports.latest / moneymarketreportsummaries.list / .details / referencerateentries.list / datareleases.list")
All endpoints · 5 totalmissing one? ·

Fetches the most recent Money Market Operations report from RBI. Returns the current day's structured data including Overnight and Term market segments, RBI Operations (LAF/MSF/SDF), and Reserve Position. Updated daily on trading days.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "date": "string or null, publication date if available",
    "title": "string, title of the report",
    "sections": "array of section objects, each with a 'header' string and 'rows' array of string arrays representing tabular data"
  },
  "sample": {
    "data": {
      "date": null,
      "title": "Money Market Operations",
      "sections": [
        {
          "rows": [
            [
              "I. Call Money",
              "18,967.63",
              "5.28",
              "4.60-5.40"
            ],
            [
              "II. Triparty Repo",
              "5,17,947.65",
              "5.18",
              "5.10-5.35"
            ]
          ],
          "header": "A. Overnight Segment (I+II+III+IV)"
        }
      ]
    },
    "status": "success"
  }
}

About the Org API

Money Market Operations

get_latest_money_market_operations returns the most recent RBI money market report as structured sections. Each section object includes a header string (e.g. "Overnight Segment", "Term Segment", "RBI Operations") and a rows array of string arrays holding the tabular data. To retrieve a historical report, use get_money_market_operations_by_date with a prid parameter — a press release identifier you can discover by calling list_money_market_operations_by_month with a four-digit year and a full capitalized month name (e.g. 'January'). That listing endpoint returns each report's pub_date, title, links array, and prid string.

Reference Rates

get_reference_rate accepts from_date and to_date in DD/MM/YYYY format and returns a rates array. Each element is keyed by currency pair label such as 'USD (INR / 1 USD)' or 'EUR (INR / 1 EUR)', plus a Date field identifying the trading day. The response also echoes back from_date and to_date for validation. Currency coverage includes USD, GBP, EUR, and JPY at minimum.

Data Release Index

list_data_releases returns no inputs and produces a full catalogue of all RBI statistical publications, organized by release frequency: Daily, Weekly, Fortnightly, Monthly, Bi-monthly, Quarterly, Annual, and Occasional. Each entry contains a name and a url, giving developers a map to the breadth of RBI's published data even where dedicated fetch endpoints do not yet exist.

Source and Official API

The data originates from data.rbi.org.in, the Reserve Bank of India's official data portal. The RBI does not publish a public developer API with authentication keys or versioned REST endpoints for programmatic consumption. This API provides structured access to the same data.

Reliability & maintenanceVerified

The Org API is a managed, monitored endpoint for data.rbi.org.in — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when data.rbi.org.in changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official data.rbi.org.in API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
1d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Tracking daily INR/USD and INR/EUR reference rates for FX risk management using get_reference_rate
  • Building a historical archive of RBI money market operations by iterating prid values from list_money_market_operations_by_month
  • Monitoring overnight and term liquidity segment activity via get_latest_money_market_operations
  • Alerting systems that flag when RBI publishes a new money market operations report each trading day
  • Calculating rolling averages of INR/JPY rates across a custom date range using the rates array fields
  • Auditing which RBI statistical releases are available at a given frequency using list_data_releases
  • Feeding INR reference rate history into backtesting models for cross-currency derivatives pricing
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does the Reserve Bank of India offer an official developer API?+
No. data.rbi.org.in is a public statistical portal but the RBI does not provide a versioned, key-authenticated REST or GraphQL API for programmatic access to its data releases.
How do I fetch a specific historical money market operations report?+
First call list_money_market_operations_by_month with the desired year and month (e.g. year='2023', month='November'). The response returns a reports array where each object includes a prid string. Pass that prid to get_money_market_operations_by_date to retrieve the full sectioned table for that day.
What currencies does get_reference_rate cover?+
The endpoint currently returns rates for USD, GBP, EUR, and JPY against INR. Each rate object is keyed by a label like 'USD (INR / 1 USD)' and includes a Date field. Other currency pairs published by the RBI are not currently exposed. You can fork this API on Parse and revise it to add additional currency pairs if the source data includes them.
Does the API expose the full content of other RBI statistical releases listed in list_data_releases?+
Not currently. The API provides dedicated fetch endpoints only for Money Market Operations and Reference Rates. list_data_releases returns names and URLs for the broader catalogue — Daily, Weekly, Monthly, Quarterly, and other frequencies — but does not fetch their content. You can fork this API on Parse and revise it to add fetch endpoints for any of those listed releases.
How far back does the money market operations history go?+
The available history depends on what prid values are discoverable through list_money_market_operations_by_month. The endpoint accepts any four-digit year and month name, but reports only exist for dates when the RBI published a press release. Calling the listing endpoint for a given month is the reliable way to confirm availability before fetching detail.
Page content last updated . Spec covers 5 endpoints from data.rbi.org.in.
Related APIs in FinanceSee all →
rba.gov.au API
Access Reserve Bank of Australia data including CPI inflation (current and historical), housing and business lending rates, AUD exchange rates, monetary policy/cash rate changes, and the RBA balance sheet.
resbank.co.za API
Access real-time and historical financial data from South Africa's central bank, including prime rates, repo rates, exchange rates, inflation metrics (CPI and PPI), and commodity prices like gold. Track key interest rate benchmarks such as SABOR and ZARONIA rates, and monitor market rates to stay informed on South African economic indicators.
data.ecb.europa.eu API
Access official European Central Bank statistical series and observations to retrieve economic data like exchange rates, interest rates, and monetary aggregates. Browse available dataflows and retrieve specific time series data to analyze ECB's published economic indicators.
goodreturns.in API
Access real-time and historical gold prices across India. Retrieve daily gold rates for 18k, 22k, and 24k purity levels in INR, compare prices across major Indian cities, and explore recent price trends and monthly summaries.
ccilindia.com API
Access real-time money market, G-Sec, and forex trading data from India's premier clearing corporation, plus stay updated with the latest market notifications and discussion papers. Monitor settlement snapshots and navigate CCIL's content through sitemap and RSS feed integrations.
esankhyiki.mospi.gov.in API
Access India's official macroeconomic statistics including RBI indicators, National Accounts data, and labor force surveys directly from the government's statistical database. Browse dashboards, infographics, and detailed metadata to explore economic trends, employment figures, and key financial indicators.
chinamoney.com.cn API
Access real-time and historical China interbank market data including FX rates, SHIBOR and LPR benchmark rates, RMB exchange indices, and CNY central parity rates. Monitor spot FX quotes, daily bulletins, and monthly average rates to track Chinese currency movements and money market trends.
statistiken.bundesbank.de API
Retrieve Deutsche Bundesbank's macroeconomic data including exchange rates, interest rates, and financial statistics by searching for specific time series or browsing topics to access historical data points. Monitor Germany's key economic indicators and financial metrics directly from the official central bank database.