Discover/Screener API
live

Screener APIscreener.in

Access Indian stock financials, IPO data, price history, peer comparisons, and company announcements via the screener.in API. 8 endpoints, structured JSON.

Endpoint health
verified 5d ago
company_details
ipo_data
price_history
peers
stock_list
8/8 passing latest checkself-healing
Endpoints
8
Updated
21d ago

What is the Screener API?

The screener.in API exposes 8 endpoints covering Indian public company financials, stock listings, IPO details, and BSE filings. The company_details endpoint alone returns over 10 distinct response fields — including quarterly results, profit/loss statements, balance sheet data, cash flow, shareholding patterns, and key ratios — making it a dense single-call source for fundamental analysis of NSE/BSE-listed companies.

Try it
Search keyword such as a company name or ticker symbol.
api.parse.bot/scraper/60e3da38-7f8e-48da-9612-d6b90f3261cc/<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/60e3da38-7f8e-48da-9612-d6b90f3261cc/search?query=reliance' \
  -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 screener-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.

from parse_apis.screener_in_api import Screener, Company, CompanySummary, Sector, IpoType, Announcement, PriceDataset

screener = Screener()

# Search for companies by name
for match in screener.companysummaries.search(query="HDFC"):
    print(match.id, match.name, match.url)

# Get detailed financial data for a company
company = screener.companies.get(symbol="RELIANCE")
print(company.name, company.company_id, company.warehouse_id)

# Access sub-resources: announcements
for ann in company.announcements.list():
    print(ann.title, ann.url)

# Access sub-resources: price history
for dataset in company.prices.list(days=90):
    print(dataset.metric, dataset.label)

# Access sub-resources: peer comparison
for peer in company.peers.list():
    print(peer.data)

# List available sectors
for sector in screener.sectors.list():
    print(sector.name, sector.url)

# Get IPO data using enum
for ipo in screener.ipos.list(ipo_type=IpoType.UPCOMING):
    print(ipo.data)

# Get stock screen results
result = screener.screenresults.get(screen_id="59", slug="magic-formula")
print(result.page, result.total_pages)
All endpoints · 8 totalmissing one? ·

Search for companies by name or ticker symbol. Returns up to ~8 matching results including ETFs and subsidiaries. Each result carries an integer id usable with price_history and announcements, plus a relative URL path containing the symbol.

Input
ParamTypeDescription
queryrequiredstringSearch keyword such as a company name or ticker symbol.
Response
{
  "type": "object",
  "fields": {
    "results": "array of company match objects with id, name, and url"
  },
  "sample": {
    "data": {
      "results": [
        {
          "id": 2726,
          "url": "/company/RELIANCE/consolidated/",
          "name": "Reliance Industries Ltd"
        },
        {
          "id": 2729,
          "url": "/company/RPOWER/consolidated/",
          "name": "Reliance Power Ltd"
        }
      ]
    },
    "status": "success"
  }
}

About the Screener API

Company Financials and Ratios

The company_details endpoint accepts a symbol parameter (e.g. RELIANCE, INFY, SBIN) and an optional consolidated boolean. It returns top_ratios — a key-value map of metrics like Market Cap, Current Price, and Stock P/E — alongside tabular arrays for profit_loss, balance_sheet, quarters, cash_flow, and shareholding. The company_id and warehouse_id fields in the response are numeric identifiers required by the price_history, announcements, and peers endpoints respectively.

Price History and Peer Comparison

price_history takes a company_id and an optional days integer. Shorter lookback periods return daily data; longer periods return weekly-aggregated data. Each dataset object carries a metric, label, and values array of [date, value] pairs covering price, volume, DMA50, and DMA200. The peers endpoint uses a warehouse_id from company_details and returns a tabular structure where the first array is a header row and subsequent rows contain peer companies with metrics like CMP, P/E, market cap, dividend yield, and ROCE.

IPOs, Stock Screens, and Sector Lists

ipo_data accepts an optional type parameter (recent or upcoming) and returns rows with IPO name, date, subscription figures, issue price, listing price, and gain/loss. screen_results requires a numeric screen_id (e.g. 59 for magic-formula, 343087 for fii-buying) and supports an optional slug and page parameter for paginated results. stock_list either returns available sectors (when sector_url is omitted) or paginated stock rows for a given sector path — useful for building sector-level watchlists.

Search and Announcements

The search endpoint takes a query string and returns up to approximately 8 matching company objects, each with an id, name, and relative url. Results include ETFs and subsidiaries, not just primary-listed equities. The announcements endpoint takes a company_id and returns recent BSE filing objects with title, url (direct link to the BSE PDF), and date.

Reliability & maintenanceVerified

The Screener API is a managed, monitored endpoint for screener.in — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when screener.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 screener.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
5d ago
Latest check
8/8 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
  • Pull quarterly earnings tables and year-over-year profit/loss data for a basket of NSE-listed stocks using company_details.
  • Track DMA50 and DMA200 crossovers for a watchlist by calling price_history with varying days values.
  • Build an IPO calendar feed showing subscription rates, issue prices, and listing gains from ipo_data.
  • Compare a company's P/E, ROCE, and dividend yield against sector peers using the peers endpoint.
  • Aggregate BSE filing alerts by polling announcements for multiple company IDs.
  • Screen stocks by pre-defined criteria (magic formula, FII buying) with paginated screen_results.
  • Enumerate all companies within a sector using stock_list with a sector_url and iterate through pages.
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 screener.in have an official developer API?+
Screener.in offers a limited official API documented at https://www.screener.in/api/docs/, but it requires account authentication and exposes fewer endpoints than this Parse API covers. The Parse API provides structured access to financials, IPOs, price history, peers, and announcements without requiring a screener.in account.
What does the `company_details` endpoint return beyond basic ratios?+
Beyond top_ratios (which maps metric names like Market Cap and Stock P/E to string values), the endpoint returns tabular arrays for profit_loss, quarters, cash_flow, shareholding, and documents (links to recent filings). It also returns company_id and warehouse_id, which are required inputs for the price_history, announcements, and peers endpoints.
Can I retrieve intraday or tick-level price data?+
No. The price_history endpoint returns daily data for shorter lookback periods and weekly-aggregated data for longer ones. Intraday or tick-level data is not currently covered. You can fork this API on Parse and revise it to add an intraday endpoint if that data becomes accessible from the source.
Does the search endpoint return only NSE/BSE primary-listed stocks?+
No — results from search include ETFs and subsidiaries alongside primary-listed equities. The response does not include a field that distinguishes instrument type, so you may need to filter by the returned url path or cross-reference with company_details to determine the exact instrument category.
Is there support for custom or user-defined stock screens?+
The screen_results endpoint currently supports only pre-defined screens identified by a numeric screen_id. Custom or user-built screener queries with arbitrary financial filters are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting custom screen IDs if needed.
Page content last updated . Spec covers 8 endpoints from screener.in.
Related APIs in FinanceSee all →
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.
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.
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.
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.
openinsider.com API
Track insider trading activity by accessing the latest SEC filings, identifying cluster buys, and discovering top insider purchases with advanced filtering capabilities. Screen stocks based on insider behavior patterns and visualize buy/sell trends to inform your investment decisions.
bseindia.com API
Retrieve live BSE India market data including top gainers and losers, 52-week highs and lows, bulk deals, and block deals for the most recent trading day.
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.