ccilindia.com APIccilindia.com ↗
Access CCIL real-time money market, G-Sec, and forex rates, daily settlement snapshots, and regulatory notifications via 7 structured endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/0d210d8e-4b6f-4eda-a0db-0b495c814d48/get_rss_notification' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetches and parses the latest CCIL Notification RSS feed. Returns the most recent regulatory notifications and document publications from CCIL.
No input parameters required.
{
"type": "object",
"fields": {
"items": "array of notification objects each containing title, link, pub_date, and description"
},
"sample": {
"data": {
"items": [
{
"link": "https://www.ccilindia.com/documents/d/ccil/effectiveness-of-spread-apr-2026-xlsx",
"title": "Back-testing results Effectiveness of yield spreads",
"pub_date": "2026-05-13 12:16:57",
"description": null
}
]
},
"status": "success"
}
}About the ccilindia.com API
The CCIL India API exposes 7 endpoints covering live market data and regulatory content from The Clearing Corporation of India Limited. You can retrieve intraday rates and volumes for CALL, TREP, BASKET REPO, and SPECIAL REPO segments via get_money_market_data, pull USD/INR spot and forward rates via get_forex_market_data, and monitor daily settlement values across securities, forex, and derivatives segments. All endpoints return structured JSON with no input parameters required.
Market Data Endpoints
Three endpoints cover live trading data from CCIL's market dashboard. get_money_market_data returns a result1 array where each object includes market (segment name), volume, wgtdAvrgTradRate (weighted average rate), lastTradRate, openTradPrce, and prior-session comparators previousVol and previousWar. get_gsec_market_data returns top-traded government securities with tta (turnover amount), gltr_trad_rate (price), gltr_trad_scnd_rate (yield), and gltr_trad_tmst (trade timestamp), plus a top-level maxTradeTimestamp field. get_forex_market_data splits into result1 for spot rates and result2 for swap/forward rates — each object carries sinstrument, dlasttraderate, dhighrate, dlowrate, dopenrate, dpreviouscl, and dtotaltrades, with a maxTradeString timestamp at the top level.
Settlement Snapshot
get_settlement_snapshot returns the daily settlement summary sourced from the CCIL homepage. The response includes a date field in DD/MM/YYYY format and an items array. Each item carries a label, value, an is_percentage boolean, and optional currency and unit fields — making it straightforward to distinguish absolute settlement values (rupees, USD) from netting efficiency percentages across the securities, forex, and derivatives segments.
Regulatory Feed Endpoints
Three feed endpoints cover CCIL's published content. get_rss_notification returns the latest regulatory notifications as an array of objects with title, link, pub_date, and description. get_rss_discussion_papers provides the same shape for CCIL consultation and discussion documents. get_rss_whats_new covers general announcements and site updates. All three return an items array and require no input parameters, so polling them on a schedule is straightforward.
Coverage Notes
All endpoints reflect today's data as published by CCIL — there are no date-range or historical query parameters. The market data endpoints cover the segments CCIL exposes on its public dashboard; instruments or segments not listed there are not returned.
- Monitor intraday CALL and TREP weighted average rates for short-term liquidity analysis using get_money_market_data
- Track USD/INR spot and forward rates throughout the trading session via get_forex_market_data result1 and result2
- Build a G-Sec yield dashboard using price and yield fields from get_gsec_market_data
- Alert teams when CCIL publishes new regulatory notifications by polling get_rss_notification on a schedule
- Display daily netting efficiency percentages and settlement values from get_settlement_snapshot in treasury dashboards
- Aggregate CCIL discussion papers for compliance review pipelines using get_rss_discussion_papers
- Combine money market volumes and settlement snapshot values to cross-check clearing throughput
| 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.