Get Company Overview from Screener.in
screener_get_company_overviewRetrieve a company's key financial ratios (P/E, ROE, etc.), overview description, and pros/cons list from Screener.in for quick snapshot analysis.
Instructions
Fetch a company's snapshot from its Screener.in page: key ratios (Market Cap, Current Price, Stock P/E, Book Value, Dividend Yield, ROCE, ROE, Face Value, etc.), a short "About" description, and Screener's machine-generated Pros/Cons list.
This does NOT include multi-year financial statements — use screener_get_financial_statement for those, or screener_get_peer_comparison for peer benchmarking.
Args:
identifier (string): Ticker (e.g. "TCS"), company name (e.g. "Tata Consultancy Services"), or a screener.in company URL/path. If unsure of the exact match, call screener_search_companies first.
consolidated (boolean, default true): Consolidated (with subsidiaries) vs standalone financials.
Returns: JSON: { "name": string, "screenerUrl": string, "aboutText": string|null, "topRatios": [{name, value}], "pros": string[], "cons": string[] }
Examples:
Use when: "What's TCS's current P/E and ROE?" -> identifier="TCS"
Don't use when: You need 10 years of quarterly revenue (use screener_get_financial_statement instead)
Error Handling:
Returns an error if no matching company is found — try screener_search_companies to confirm the right name/ticker first.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| identifier | Yes | Company ticker (e.g. 'TCS', 'INFY'), company name (e.g. 'Tata Consultancy Services'), or a full/relative screener.in company URL/path. | |
| consolidated | No | Use consolidated financials (includes subsidiaries) if true, standalone (parent company only) if false. Default: true. |