Discover/Chittorgarh API
live

Chittorgarh APIchittorgarh.com

Access IPO listings, subscription data, SME stock prices, financials, and news from Chittorgarh.com via 6 structured endpoints.

Endpoint health
verified 4d ago
get_ipo_news
get_ipo_dashboard
get_ipo_list
search_ipo
get_ipo_detail
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the Chittorgarh 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.

Try it
Calendar year to filter IPOs.
IPO category filter.
Financial year filter in format 'YYYY-YY'.
api.parse.bot/scraper/e6270ab7-61e4-49fe-87c1-1c6e1126807e/<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/e6270ab7-61e4-49fe-87c1-1c6e1126807e/get_ipo_list?year=2026&category=all&fin_year=2025-26' \
  -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 chittorgarh-com-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.

"""Walkthrough: Chittorgarh Financial API — IPO research workflow."""
from parse_apis.chittorgarh_financial_api import (
    Chittorgarh, IpoCategory, DashboardType, DashboardCategory, Exchange, IpoNotFound
)

client = Chittorgarh()

# Search for IPOs by company name, take the first match.
result = client.iposummaries.search(query="tata", limit=3)
ipo_summary = result.first()
if ipo_summary:
    print(ipo_summary.company_name, ipo_summary.urlrewrite_folder_name)

# Drill into full IPO details from the summary.
if ipo_summary:
    ipo = ipo_summary.details()
    print(ipo.title, ipo.url)
    for key, value in ipo.details.items():
        print(f"  {key}: {value}")

# Browse news for that IPO.
if ipo_summary:
    for article in ipo_summary.details().news(limit=3):
        print(article.title, article.date, article.source)

# List SME IPOs for a specific category and year.
for listing in client.ipolistings.list(category=IpoCategory.SME, limit=5):
    print(listing.company, listing.issue_price, listing.listing_at)

# Get live IPO subscription dashboard.
dashboard = client.dashboarddatas.get(type=DashboardType.SUBSCRIPTION, category=DashboardCategory.MAINLINE)
print(dashboard.panel_title)
for sub in dashboard.subscriptions[:3]:
    print(sub.company_name, sub.bid_value)

# Fetch SME stock prices from NSE.
for stock in client.stocks.list(exchange=Exchange.NSE, limit=5):
    print(stock.company_name, stock.ltp, stock.shares_traded)

# Handle a not-found IPO gracefully.
try:
    bad = client.iposummaries.search(query="nonexistent_xyz_12345", limit=1).first()
    if bad:
        bad.details()
except IpoNotFound as exc:
    print(f"IPO not found: slug={exc.slug}, ipo_id={exc.ipo_id}")

print("exercised: search / details / news / ipolistings.list / dashboarddatas.get / stocks.list")
All endpoints · 6 totalmissing one? ·

Retrieve a list of Mainboard and SME IPOs from Chittorgarh. Supports filtering by category (all/mainboard/sme), calendar year, and financial year. Returns company name, issue details, pricing, listing exchange, and lead manager information. Each item includes a URL from which the slug and ipo_id can be extracted for use with get_ipo_detail.

Input
ParamTypeDescription
yearstringCalendar year to filter IPOs.
categorystringIPO category filter.
fin_yearstringFinancial year filter in format 'YYYY-YY'.
Response
{
  "type": "object",
  "fields": {
    "items": "array of IPO records with Company, Issue Category, Opening Date, Closing Date, Issue Price, Listing at, Lead Manager, and 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": "Modern Diagnostic & Research Centre Ltd.",
          "Listing at": "BSE SME",
          "Company_url": "https://www.chittorgarh.com/ipo/modern-diagnostic-ipo/2276/",
          "Closing Date": "02-Jan-2026",
          "Lead Manager": "Beeline Capital",
          "Listing Date": "07-Jan-2026",
          "Opening Date": "31-Dec-2025",
          "Issue Category": "SME",
          "Pricing Method": "Bookbuilding",
          "Lead Manager_url": "https://www.chittorgarh.com/report/ipo-lead-manager-review/99/all/192/",
          "Issue Price (Rs.)": "90.00",
          "Total Issue Amount (Incl.Firm reservations) (Rs.cr.)": "36.89"
        }
      ],
      "total_pages": 1,
      "current_page": "1",
      "total_records": 5
    },
    "status": "success"
  }
}

About the Chittorgarh API

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.

Reliability & maintenanceVerified

The Chittorgarh API is a managed, monitored endpoint for chittorgarh.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when chittorgarh.com 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 chittorgarh.com 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
4d ago
Latest check
6/6 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
  • Track open IPO subscriptions and bid values using get_ipo_dashboard with type iposubscription
  • Build an IPO calendar filtered by financial year using get_ipo_list with the fin_year parameter
  • Pull multi-period revenue, EBITDA, and net worth data from get_ipo_detail for 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_news to feed a research dashboard
  • Look up IPO slugs and IDs by partial company name with search_ipo before fetching full detail
  • Compare mainboard versus SME IPO performance data using category filters across listing endpoints
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 Chittorgarh have an official developer API?+
Chittorgarh.com does not publish an official developer API or documentation for external programmatic access to its IPO and market data.
What does `get_ipo_detail` return and how do I get the required identifiers?+
It returns a 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?+
Yes. The 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?+
Not currently. The API covers IPO listings, subscription dashboards, detail financials, SME stock prices, and news. You can fork it on Parse and revise to add an endpoint targeting GMP or allotment status data.
Is historical SME stock price data available, or only current prices?+
The 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.
Page content last updated . Spec covers 6 endpoints from chittorgarh.com.
Related APIs in FinanceSee all →
chartink.com API
Access real-time and historical stock market data from Indian exchanges (NSE/BSE) to analyze fundamentals, technical indicators, and OHLCV metrics, plus run custom stock screeners to find investment opportunities. Search for specific stocks and browse all listed symbols to build data-driven trading strategies and investment research.
stockanalysis.com API
Access comprehensive stock market data including real-time financials, income statements, statistics, and IPO calendars to research individual stocks and identify market movers. Search stocks, view detailed overviews, and monitor premarket activity all in structured, easy-to-use format.
ticker.finology.in API
Search and analyze stocks, view company financials and market indices, track super investors and their holdings, and explore IPO listings and sector performance. Get comprehensive market data including company overviews, financial statements, and real-time dashboard information to make informed investment decisions.
screener.in API
Search and analyze Indian stocks with real-time financial data, company details, IPO information, price history, and peer comparisons. Get instant access to stock screening results, market listings, and company announcements to make informed investment decisions.
sharesansar.com API
Access real-time Nepali stock prices, browse company information, and read the latest market news all in one place. Stay informed about the Nepal stock market with current pricing data and detailed news articles.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.
morningstar.com API
Get comprehensive financial data including stock quotes, company profiles, historical financials, valuation metrics, ownership details, dividends, and market movers from Morningstar. Search securities and access the latest stock news to make informed investment decisions.
marketbeat.com API
Track comprehensive stock market data including real-time overviews, analyst ratings, earnings reports, insider trades, and institutional ownership across thousands of companies. Search stocks, analyze financial statements and profitability metrics, monitor short interest, explore options chains, and stay updated with market headlines and competitor analysis.