Get Peer Comparison from Screener.in
screener_get_peer_comparisonFetch peer comparison data for a company against its industry peers, showing key metrics such as CMP, P/E, market cap, and ROE.
Instructions
Fetch the peer-comparison table Screener.in shows on a company's page — the same industry peers, compared on CMP, P/E, market cap, ROE, and other columns Screener selects.
Args:
identifier (string): Ticker, company name, or screener.in URL/path.
consolidated (boolean, default true): Consolidated vs standalone.
Returns: JSON: { "columns": string[], "peers": [{ "name": string, "values": { [column]: string } }] }
Examples:
Use when: "How does TCS compare to its industry peers on P/E and ROE?" -> identifier="TCS"
Don't use when: You want a custom peer set with your own filter criteria (use screener_run_custom_screen instead)
Error Handling:
Returns an error if no peer table is found for the company (uncommon, but can happen for delisted or very niche companies).
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. |