data.rbi.org.in 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.
No input parameters required.
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'
Fetches the most recent Money Market Operations data from RBI. Returns structured data including Overnight and Term segments, and RBI Operations.
No input parameters required.
{
"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"
},
"sample": {
"data": {
"date": null,
"title": "Money Market Operations",
"sections": [
{
"rows": [
[
"I. Call Money",
"15,770.95",
"5.24",
"4.20-5.35"
],
[
"II. Triparty Repo",
"5,53,550.75",
"5.08",
"4.95-5.14"
]
],
"header": "A. Overnight Segment (I+II+III+IV)"
}
]
},
"status": "success"
}
}About the data.rbi.org.in 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.
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.
- 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
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.