chittorgarh.com APIchittorgarh.com ↗
Access IPO listings, subscription data, SME stock prices, financials, and news from Chittorgarh.com via 6 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/e6270ab7-61e4-49fe-87c1-1c6e1126807e/get_ipo_list?category=mainboard' \ -H 'X-API-Key: $PARSE_API_KEY'
Get list of Mainboard and SME IPOs from Chittorgarh. Returns paginated results with company name, issue details, pricing, and listing information. Supports filtering by category and financial year.
| Param | Type | Description |
|---|---|---|
| year | string | Calendar year to filter IPOs (e.g. '2026', '2025'). |
| category | string | IPO category filter. Accepted values: 'all', 'mainboard', 'sme'. |
| fin_year | string | Financial year filter in format 'YYYY-YY' (e.g. '2025-26', '2024-25'). |
{
"type": "object",
"fields": {
"items": "array of IPO records, each containing Company, Issue Category, Opening Date, Closing Date, Issue Price, Listing at, and related URLs",
"total_pages": "integer total number of pages",
"current_page": "string current page number",
"total_records": "integer total number of matching IPO records"
},
"sample": {
"data": {
"items": [
{
"Company": "OnEMI Technology Solutions Ltd.O",
"Listing at": "BSE, NSE",
"Company_url": "https://www.chittorgarh.com/ipo/onemi-technology-ipo/2576/",
"Closing Date": "05-May-2026",
"Lead Manager": "JM Financial",
"Listing Date": "",
"Opening Date": "30-Apr-2026",
"Issue Category": "Mainboard",
"Pricing Method": "Bookbuilding",
"Lead Manager_url": "https://www.chittorgarh.com/report/ipo-lead-manager-review/99/all/18/",
"Issue Price (Rs.)": "162.00 to 171.00",
"Total Issue Amount (Incl.Firm reservations) (Rs.cr.)": "925.92"
}
],
"total_pages": 1,
"current_page": "1",
"total_records": 20
},
"status": "success"
}
}About the chittorgarh.com API
The Chittorgarh API provides access to Indian IPO and SME market data across 6 endpoints, covering mainboard and SME IPO listings, detailed prospectus financials, live subscription dashboards, and SME stock prices on NSE and BSE. The get_ipo_detail endpoint alone returns price band, lot size, issue type, listing exchange, and multi-period financial rows including revenue, EBITDA, net worth, and KPIs for a given IPO.
IPO Listings and Detail
The get_ipo_list endpoint returns paginated IPO records filterable by year, fin_year (e.g. '2025-26'), and category ('mainboard' or 'sme'). Each record includes company name, opening and closing dates, issue price, listing exchange, and a URL that encodes both the slug and numeric IPO ID needed for downstream calls. For a specific IPO, get_ipo_detail accepts a slug and ipo_id and returns a details object with structured key-value pairs covering IPO Date, Price Band, Issue Price, Lot Size, Issue Type, and Listing At, plus a financials array of multi-period rows with assets, revenue, profit, EBITDA, and net worth.
Dashboard and Subscription Data
get_ipo_dashboard surfaces live summary data across five views — iposubscription, ipoperformance, ipoprospectus, ipoboa, and ipocalendar — for either mainline or sme category. The response includes a panel title, a relative link for more details, and an IpoSubscriptionList array with company name, slug, and bid date and value fields useful for tracking open subscriptions in near-real time.
SME Stock Prices and Search
get_stock_prices returns all SME stocks on a chosen exchange (nse or bse) with open, high, low, last traded price, volume, and total turnover. Results are paginated and include a total_records count. To find an IPO by name, search_ipo accepts a partial case-insensitive query and returns matching records with id and urlrewrite_folder_name that feed directly into get_ipo_detail and get_ipo_news.
IPO News
get_ipo_news accepts a numeric ipo_id and returns an array of news articles, each with title, URL, date, summary, and source. The total field indicates how many articles are available for that IPO.
- Track open IPO subscriptions and bid values using
get_ipo_dashboardwith typeiposubscription - Build an IPO calendar filtered by financial year using
get_ipo_listwith thefin_yearparameter - Pull multi-period revenue, EBITDA, and net worth data from
get_ipo_detailfor fundamental analysis - Monitor NSE and BSE SME stock prices including LTP, volume, and turnover via
get_stock_prices - Aggregate IPO-specific news articles by numeric ID using
get_ipo_newsto feed a research dashboard - Look up IPO slugs and IDs by partial company name with
search_ipobefore fetching full detail - Compare mainboard versus SME IPO performance data using category filters across listing endpoints
| 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.
Does Chittorgarh have an official developer API?+
What does `get_ipo_detail` return and how do I get the required identifiers?+
details object with structured fields (IPO Date, Price Band, Lot Size, Issue Type, Listing At) and a financials array with multi-period rows covering revenue, EBITDA, assets, profit, and net worth. Both required inputs — slug and ipo_id — can be obtained from get_ipo_list (the Company_url field encodes both) or from search_ipo which returns urlrewrite_folder_name and id directly.Does `get_ipo_dashboard` cover both mainboard and SME categories?+
category parameter accepts 'mainline' for mainboard IPOs or 'sme' for SME IPOs. The type parameter selects the view: iposubscription, ipoperformance, ipoprospectus, ipoboa, or ipocalendar. The IpoSubscriptionList array in the response always reflects the selected combination.Are GMP (grey market premium) or allotment status data available?+
Is historical SME stock price data available, or only current prices?+
get_stock_prices endpoint returns current session data — open, high, low, last traded price, volume, and turnover — for all SME stocks on a given exchange. Historical OHLCV series are not currently returned. You can fork the API on Parse and revise it to add a historical price endpoint.