npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

screener-scraper-pro

v1.0.0

Published

Scrape every data from screener.in website effortlessly and use it in your projects.

Downloads

8

Readme

 

✨ Features

  • Complete Financial Data - Extract quarterly results, annual profit & loss, balance sheet, cash flow, and ratios
  • Growth Metrics - Get compounded sales growth, profit growth, stock price CAGR, and ROE
  • Shareholding Patterns - Track promoter, FII, DII, and public holdings over time
  • Company Documents - Access announcements, annual reports, credit ratings, and concall transcripts
  • Analysis Insights - Automatically extract pros and cons from screener's analysis
  • TypeScript Support - Full type definitions included
  • Zero Dependencies on External APIs - Directly scrapes public data from screener.in

📦 Installation

# npm
npm install screener-scraper-pro

# yarn
yarn add screener-scraper-pro

# pnpm
pnpm add screener-scraper-pro

🚀 Quick Start

import { ScreenerScraperPro } from "screener-scraper-pro";

// Use any screener.in company URL
const data = await ScreenerScraperPro("https://www.screener.in/company/RELIANCE/");

console.log(data.analysis);      // { pros: [...], cons: [...] }
console.log(data.CAGRs);         // Growth rates over different periods
console.log(data.quarters);      // Quarterly financial results
console.log(data.profitLoss);    // Annual P&L statements
console.log(data.balanceSheet);  // Balance sheet data

📊 Data Structure

The ScreenerScraperPro function returns an object with the following sections:

| Property | Description | |----------|-------------| | analysis | Pros and cons extracted from screener's analysis | | quarters | Quarterly results (Sales, Expenses, Profit, EPS, etc.) | | profitLoss | Annual profit & loss statements | | balanceSheet | Balance sheet data over the years | | cashFlow | Cash flow statements | | ratios | Financial ratios (Debtor Days, ROCE, etc.) | | shareholding | Shareholding pattern changes | | documents | Announcements, annual reports, credit ratings, concalls | | CAGRs | Compounded growth rates (Sales, Profit, Stock Price, ROE) |

Example: Accessing Specific Data

const data = await ScreenerScraperPro("https://www.screener.in/company/TCS/");

// Get pros and cons
console.log(data.analysis.pros);  // ["Company is almost debt free.", ...]
console.log(data.analysis.cons);  // ["Stock is trading at 15x book value", ...]

// Get 5-year compounded sales growth
console.log(data.CAGRs["Compounded Sales Growth"]["5 Years"]);  // "12%"

// Get latest quarter sales
const latestQuarter = data.quarters.headers[data.quarters.headers.length - 1];
console.log(data.quarters.data.Sales[latestQuarter]);  // 64259

// Get annual reports
data.documents.annualReports.forEach(report => {
  console.log(`${report.year}: ${report.link}`);
});

📋 Sample Full Response

{
  "analysis": {
    "pros": [],
    "cons": [
      "Stock is trading at 3.53 times its book value",
      "The company has delivered a poor sales growth of 8.93% over past five years.",
      "Company has a low return on equity of 8.13% over last 3 years.",
      "Earnings include an other income of Rs.25,894 Cr."
    ]
  },
  "quarters": {
    "headers": [
      "Dec 2022",
      "Mar 2023",
      "Jun 2023",
      "Sep 2023",
      "Dec 2023",
      "Mar 2024",
      "Jun 2024",
      "Sep 2024",
      "Dec 2024",
      "Mar 2025",
      "Jun 2025",
      "Sep 2025",
      "Dec 2025"
    ],
    "data": {
      "Sales": {
        "Dec 2022": 125849,
        "Mar 2023": 129674,
        "Jun 2023": 122627,
        "Sep 2023": 137380,
        "Dec 2023": 127695,
        "Mar 2024": 146832,
        "Jun 2024": 129898,
        "Sep 2024": 130108,
        "Dec 2024": 124381,
        "Mar 2025": 132962,
        "Jun 2025": 116341,
        "Sep 2025": 126335,
        "Dec 2025": 121150
      },
      "Expenses": {
        "Dec 2022": 110950,
        "Mar 2023": 110542,
        "Jun 2023": 105134,
        "Sep 2023": 118189,
        "Dec 2023": 110137,
        "Mar 2024": 126809,
        "Jun 2024": 115583,
        "Sep 2024": 116683,
        "Dec 2024": 109168,
        "Mar 2025": 117846,
        "Jun 2025": 103171,
        "Sep 2025": 111946,
        "Dec 2025": 106260
      },
      "Operating Profit": {
        "Dec 2022": 14899,
        "Mar 2023": 19132,
        "Jun 2023": 17493,
        "Sep 2023": 19191,
        "Dec 2023": 17558,
        "Mar 2024": 20023,
        "Jun 2024": 14315,
        "Sep 2024": 13425,
        "Dec 2024": 15213,
        "Mar 2025": 15116,
        "Jun 2025": 13170,
        "Sep 2025": 14389,
        "Dec 2025": 14890
      },
      "OPM %": {
        "Dec 2022": "12%",
        "Mar 2023": "15%",
        "Jun 2023": "14%",
        "Sep 2023": "14%",
        "Dec 2023": "14%",
        "Mar 2024": "14%",
        "Jun 2024": "11%",
        "Sep 2024": "10%",
        "Dec 2024": "12%",
        "Mar 2025": "11%",
        "Jun 2025": "11%",
        "Sep 2025": "11%",
        "Dec 2025": "12%"
      },
      "Other Income": {
        "Dec 2022": 2689,
        "Mar 2023": 2750,
        "Jun 2023": 2728,
        "Sep 2023": 2934,
        "Dec 2023": 2969,
        "Mar 2024": 3497,
        "Jun 2024": 3502,
        "Sep 2024": 3801,
        "Dec 2024": 3214,
        "Mar 2025": 5577,
        "Jun 2025": 13460,
        "Sep 2025": 3445,
        "Dec 2025": 3412
      },
      "Interest": {
        "Dec 2022": 3349,
        "Mar 2023": 3752,
        "Jun 2023": 3596,
        "Sep 2023": 3239,
        "Dec 2023": 2982,
        "Mar 2024": 3613,
        "Jun 2024": 2963,
        "Sep 2024": 2662,
        "Dec 2024": 2371,
        "Mar 2025": 2058,
        "Jun 2025": 2194,
        "Sep 2025": 1770,
        "Dec 2025": 1473
      },
      "Depreciation": {
        "Dec 2022": 2529,
        "Mar 2023": 3779,
        "Jun 2023": 3883,
        "Sep 2023": 4384,
        "Dec 2023": 4567,
        "Mar 2024": 4856,
        "Jun 2024": 4708,
        "Sep 2024": 4350,
        "Dec 2024": 4459,
        "Mar 2025": 4464,
        "Jun 2025": 4130,
        "Sep 2025": 4472,
        "Dec 2025": 4434
      },
      "Profit before tax": {
        "Dec 2022": 11710,
        "Mar 2023": 14351,
        "Jun 2023": 12742,
        "Sep 2023": 14502,
        "Dec 2023": 12978,
        "Mar 2024": 15051,
        "Jun 2024": 10146,
        "Sep 2024": 10214,
        "Dec 2024": 11597,
        "Mar 2025": 14171,
        "Jun 2025": 20306,
        "Sep 2025": 11592,
        "Dec 2025": 12395
      },
      "Tax %": {
        "Dec 2022": "28%",
        "Mar 2023": "4%",
        "Jun 2023": "24%",
        "Sep 2023": "23%",
        "Dec 2023": "24%",
        "Mar 2024": "25%",
        "Jun 2024": "25%",
        "Sep 2024": "24%",
        "Dec 2024": "25%",
        "Mar 2025": "21%",
        "Jun 2025": "12%",
        "Sep 2025": "21%",
        "Dec 2025": "24%"
      },
      "Net Profit": {
        "Dec 2022": 8373,
        "Mar 2023": 13806,
        "Jun 2023": 9627,
        "Sep 2023": 11208,
        "Dec 2023": 9924,
        "Mar 2024": 11283,
        "Jun 2024": 7611,
        "Sep 2024": 7713,
        "Dec 2024": 8721,
        "Mar 2025": 11217,
        "Jun 2025": 17904,
        "Sep 2025": 9129,
        "Dec 2025": 9396
      },
      "EPS in Rs": {
        "Dec 2022": 6.19,
        "Mar 2023": 10.2,
        "Jun 2023": 7.11,
        "Sep 2023": 8.28,
        "Dec 2023": 7.33,
        "Mar 2024": 8.34,
        "Jun 2024": 5.62,
        "Sep 2024": 5.7,
        "Dec 2024": 6.44,
        "Mar 2025": 8.29,
        "Jun 2025": 13.23,
        "Sep 2025": 6.75,
        "Dec 2025": 6.94
      }
    }
  },
  "profitLoss": {
    "headers": [
      "Mar 2014",
      "Mar 2015",
      "Mar 2016",
      "Mar 2017",
      "Mar 2018",
      "Mar 2019",
      "Mar 2020",
      "Mar 2021",
      "Mar 2022",
      "Mar 2023",
      "Mar 2024",
      "Mar 2025",
      "TTM"
    ],
    "data": {
      "Sales": {
        "Mar 2014": 389178,
        "Mar 2015": 328013,
        "Mar 2016": 231743,
        "Mar 2017": 240597,
        "Mar 2018": 289188,
        "Mar 2019": 370744,
        "Mar 2020": 336097,
        "Mar 2021": 245050,
        "Mar 2022": 422413,
        "Mar 2023": 537909,
        "Mar 2024": 531908,
        "Mar 2025": 515425,
        "TTM": 496788
      },
      "Expenses": {
        "Mar 2014": 358244,
        "Mar 2015": 296377,
        "Mar 2016": 192359,
        "Mar 2017": 197272,
        "Mar 2018": 237430,
        "Mar 2019": 311853,
        "Mar 2020": 283073,
        "Mar 2021": 211542,
        "Mar 2022": 370007,
        "Mar 2023": 471050,
        "Mar 2024": 457488,
        "Mar 2025": 457292,
        "TTM": 439223
      },
      "Operating Profit": {
        "Mar 2014": 30934,
        "Mar 2015": 31636,
        "Mar 2016": 39384,
        "Mar 2017": 43325,
        "Mar 2018": 51758,
        "Mar 2019": 58891,
        "Mar 2020": 53024,
        "Mar 2021": 33508,
        "Mar 2022": 52406,
        "Mar 2023": 66859,
        "Mar 2024": 74420,
        "Mar 2025": 58133,
        "TTM": 57565
      },
      "OPM %": {
        "Mar 2014": "8%",
        "Mar 2015": "10%",
        "Mar 2016": "17%",
        "Mar 2017": "18%",
        "Mar 2018": "18%",
        "Mar 2019": "16%",
        "Mar 2020": "16%",
        "Mar 2021": "14%",
        "Mar 2022": "12%",
        "Mar 2023": "12%",
        "Mar 2024": "14%",
        "Mar 2025": "11%",
        "TTM": "12%"
      },
      "Other Income": {
        "Mar 2014": 8879,
        "Mar 2015": 8687,
        "Mar 2016": 7784,
        "Mar 2017": 8640,
        "Mar 2018": 8203,
        "Mar 2019": 8785,
        "Mar 2020": 9125,
        "Mar 2021": 19114,
        "Mar 2022": 13779,
        "Mar 2023": 12247,
        "Mar 2024": 11973,
        "Mar 2025": 16030,
        "TTM": 25894
      },
      "Interest": {
        "Mar 2014": 3206,
        "Mar 2015": 2367,
        "Mar 2016": 2562,
        "Mar 2017": 2723,
        "Mar 2018": 4656,
        "Mar 2019": 9751,
        "Mar 2020": 12105,
        "Mar 2021": 16211,
        "Mar 2022": 9123,
        "Mar 2023": 12633,
        "Mar 2024": 13430,
        "Mar 2025": 10054,
        "TTM": 7495
      },
      "Depreciation": {
        "Mar 2014": 8789,
        "Mar 2015": 8488,
        "Mar 2016": 8590,
        "Mar 2017": 8465,
        "Mar 2018": 9580,
        "Mar 2019": 10558,
        "Mar 2020": 9728,
        "Mar 2021": 9199,
        "Mar 2022": 10276,
        "Mar 2023": 11167,
        "Mar 2024": 17690,
        "Mar 2025": 17981,
        "TTM": 17500
      },
      "Profit before tax": {
        "Mar 2014": 27818,
        "Mar 2015": 29468,
        "Mar 2016": 36016,
        "Mar 2017": 40777,
        "Mar 2018": 45725,
        "Mar 2019": 47367,
        "Mar 2020": 40316,
        "Mar 2021": 27212,
        "Mar 2022": 46786,
        "Mar 2023": 55306,
        "Mar 2024": 55273,
        "Mar 2025": 46128,
        "TTM": 58464
      },
      "Tax %": {
        "Mar 2014": "21%",
        "Mar 2015": "23%",
        "Mar 2016": "24%",
        "Mar 2017": "23%",
        "Mar 2018": "26%",
        "Mar 2019": "26%",
        "Mar 2020": "23%",
        "Mar 2021": "-17%",
        "Mar 2022": "16%",
        "Mar 2023": "20%",
        "Mar 2024": "24%",
        "Mar 2025": "24%"
      },
      "Net Profit": {
        "Mar 2014": 21984,
        "Mar 2015": 22719,
        "Mar 2016": 27384,
        "Mar 2017": 31425,
        "Mar 2018": 33612,
        "Mar 2019": 35163,
        "Mar 2020": 30903,
        "Mar 2021": 31944,
        "Mar 2022": 39084,
        "Mar 2023": 44190,
        "Mar 2024": 42042,
        "Mar 2025": 35262,
        "TTM": 47646
      },
      "EPS in Rs": {
        "Mar 2014": 15.94,
        "Mar 2015": 16.46,
        "Mar 2016": 19.81,
        "Mar 2017": 22.65,
        "Mar 2018": 24.87,
        "Mar 2019": 26,
        "Mar 2020": 22.85,
        "Mar 2021": 25.19,
        "Mar 2022": 28.89,
        "Mar 2023": 32.66,
        "Mar 2024": 31.07,
        "Mar 2025": 26.06,
        "TTM": 35.21
      },
      "Dividend Payout %": {
        "Mar 2014": "14%",
        "Mar 2015": "14%",
        "Mar 2016": "12%",
        "Mar 2017": "11%",
        "Mar 2018": "11%",
        "Mar 2019": "12%",
        "Mar 2020": "13%",
        "Mar 2021": "14%",
        "Mar 2022": "14%",
        "Mar 2023": "14%",
        "Mar 2024": "16%",
        "Mar 2025": "21%"
      }
    }
  },
  "balanceSheet": {
    "headers": [
      "Mar 2014",
      "Mar 2015",
      "Mar 2016",
      "Mar 2017",
      "Mar 2018",
      "Mar 2019",
      "Mar 2020",
      "Mar 2021",
      "Mar 2022",
      "Mar 2023",
      "Mar 2024",
      "Mar 2025",
      "Sep 2025"
    ],
    "data": {
      "Equity Capital": {
        "Mar 2014": 3232,
        "Mar 2015": 3236,
        "Mar 2016": 3240,
        "Mar 2017": 3251,
        "Mar 2018": 6335,
        "Mar 2019": 6339,
        "Mar 2020": 6339,
        "Mar 2021": 6445,
        "Mar 2022": 6765,
        "Mar 2023": 6766,
        "Mar 2024": 6766,
        "Mar 2025": 13532,
        "Sep 2025": 13532
      },
      "Reserves": {
        "Mar 2014": 193859,
        "Mar 2015": 212940,
        "Mar 2016": 250758,
        "Mar 2017": 285062,
        "Mar 2018": 308312,
        "Mar 2019": 398983,
        "Mar 2020": 384876,
        "Mar 2021": 468038,
        "Mar 2022": 464762,
        "Mar 2023": 472312,
        "Mar 2024": 508330,
        "Mar 2025": 529555,
        "Sep 2025": 544964
      },
      "Borrowings": {
        "Mar 2014": 89968,
        "Mar 2015": 97620,
        "Mar 2016": 107104,
        "Mar 2017": 107446,
        "Mar 2018": 116881,
        "Mar 2019": 161720,
        "Mar 2020": 298599,
        "Mar 2021": 224683,
        "Mar 2022": 197439,
        "Mar 2023": 218706,
        "Mar 2024": 214575,
        "Mar 2025": 201505,
        "Sep 2025": 207388
      },
      "Other Liabilities": {
        "Mar 2014": 80524,
        "Mar 2015": 83989,
        "Mar 2016": 120572,
        "Mar 2017": 150987,
        "Mar 2018": 185997,
        "Mar 2019": 208703,
        "Mar 2020": 281885,
        "Mar 2021": 174507,
        "Mar 2022": 209708,
        "Mar 2023": 224876,
        "Mar 2024": 229972,
        "Mar 2025": 277809,
        "Sep 2025": 302764
      },
      "Total Liabilities": {
        "Mar 2014": 367583,
        "Mar 2015": 397785,
        "Mar 2016": 481674,
        "Mar 2017": 546746,
        "Mar 2018": 617525,
        "Mar 2019": 775745,
        "Mar 2020": 971699,
        "Mar 2021": 873673,
        "Mar 2022": 878674,
        "Mar 2023": 922660,
        "Mar 2024": 959643,
        "Mar 2025": 1022401,
        "Sep 2025": 1068648
      },
      "Fixed Assets": {
        "Mar 2014": 109406,
        "Mar 2015": 114563,
        "Mar 2016": 147543,
        "Mar 2017": 154578,
        "Mar 2018": 200964,
        "Mar 2019": 203188,
        "Mar 2020": 306478,
        "Mar 2021": 306833,
        "Mar 2022": 239626,
        "Mar 2023": 282301,
        "Mar 2024": 299630,
        "Mar 2025": 311047,
        "Sep 2025": 314432
      },
      "CWIP": {
        "Mar 2014": 41716,
        "Mar 2015": 75753,
        "Mar 2016": 110905,
        "Mar 2017": 132741,
        "Mar 2018": 99483,
        "Mar 2019": 111557,
        "Mar 2020": 27965,
        "Mar 2021": 32835,
        "Mar 2022": 34662,
        "Mar 2023": 54357,
        "Mar 2024": 61632,
        "Mar 2025": 82417,
        "Sep 2025": 98517
      },
      "Investments": {
        "Mar 2014": 86062,
        "Mar 2015": 112573,
        "Mar 2016": 157250,
        "Mar 2017": 192450,
        "Mar 2018": 225222,
        "Mar 2019": 331683,
        "Mar 2020": 491823,
        "Mar 2021": 347285,
        "Mar 2022": 408797,
        "Mar 2023": 351141,
        "Mar 2024": 370063,
        "Mar 2025": 390360,
        "Sep 2025": 412681
      },
      "Other Assets": {
        "Mar 2014": 130399,
        "Mar 2015": 94896,
        "Mar 2016": 65976,
        "Mar 2017": 66977,
        "Mar 2018": 91856,
        "Mar 2019": 129317,
        "Mar 2020": 145433,
        "Mar 2021": 186720,
        "Mar 2022": 195589,
        "Mar 2023": 234861,
        "Mar 2024": 228318,
        "Mar 2025": 238577,
        "Sep 2025": 243018
      },
      "Total Assets": {
        "Mar 2014": 367583,
        "Mar 2015": 397785,
        "Mar 2016": 481674,
        "Mar 2017": 546746,
        "Mar 2018": 617525,
        "Mar 2019": 775745,
        "Mar 2020": 971699,
        "Mar 2021": 873673,
        "Mar 2022": 878674,
        "Mar 2023": 922660,
        "Mar 2024": 959643,
        "Mar 2025": 1022401,
        "Sep 2025": 1068648
      }
    }
  },
  "cashFlow": {
    "headers": [
      "Mar 2014",
      "Mar 2015",
      "Mar 2016",
      "Mar 2017",
      "Mar 2018",
      "Mar 2019",
      "Mar 2020",
      "Mar 2021",
      "Mar 2022",
      "Mar 2023",
      "Mar 2024",
      "Mar 2025"
    ],
    "data": {
      "Cash from Operating Activity": {
        "Mar 2014": 42160,
        "Mar 2015": 35285,
        "Mar 2016": 43447,
        "Mar 2017": 51450,
        "Mar 2018": 62000,
        "Mar 2019": 29191,
        "Mar 2020": 77533,
        "Mar 2021": -512,
        "Mar 2022": 67491,
        "Mar 2023": 55340,
        "Mar 2024": 73998,
        "Mar 2025": 79392
      },
      "Cash from Investing Activity": {
        "Mar 2014": -64013,
        "Mar 2015": -55998,
        "Mar 2016": -41223,
        "Mar 2017": -54949,
        "Mar 2018": -59109,
        "Mar 2019": -53949,
        "Mar 2020": -143583,
        "Mar 2021": 74257,
        "Mar 2022": -45315,
        "Mar 2023": -8678,
        "Mar 2024": -38292,
        "Mar 2025": -28106
      },
      "Cash from Financing Activity": {
        "Mar 2014": 5530,
        "Mar 2015": -940,
        "Mar 2016": -6903,
        "Mar 2017": -1639,
        "Mar 2018": -1914,
        "Mar 2019": 25795,
        "Mar 2020": 70767,
        "Mar 2021": -76657,
        "Mar 2022": -6035,
        "Mar 2023": -7369,
        "Mar 2024": -27465,
        "Mar 2025": -38063
      },
      "Net Cash Flow": {
        "Mar 2014": -16323,
        "Mar 2015": -21653,
        "Mar 2016": -4679,
        "Mar 2017": -5138,
        "Mar 2018": 977,
        "Mar 2019": 1037,
        "Mar 2020": 4717,
        "Mar 2021": -2912,
        "Mar 2022": 16141,
        "Mar 2023": 39293,
        "Mar 2024": 8241,
        "Mar 2025": 13223
      }
    }
  },
  "ratios": {
    "headers": [
      "Mar 2014",
      "Mar 2015",
      "Mar 2016",
      "Mar 2017",
      "Mar 2018",
      "Mar 2019",
      "Mar 2020",
      "Mar 2021",
      "Mar 2022",
      "Mar 2023",
      "Mar 2024",
      "Mar 2025"
    ],
    "data": {
      "Debtor Days": {
        "Mar 2014": 10,
        "Mar 2015": 5,
        "Mar 2016": 6,
        "Mar 2017": 8,
        "Mar 2018": 13,
        "Mar 2019": 12,
        "Mar 2020": 8,
        "Mar 2021": 6,
        "Mar 2022": 12,
        "Mar 2023": 16,
        "Mar 2024": 10,
        "Mar 2025": 11
      },
      "Inventory Days": {
        "Mar 2014": 47,
        "Mar 2015": 50,
        "Mar 2016": 63,
        "Mar 2017": 75,
        "Mar 2018": 71,
        "Mar 2019": 60,
        "Mar 2020": 58,
        "Mar 2021": 78,
        "Mar 2022": 52,
        "Mar 2023": 77,
        "Mar 2024": 79,
        "Mar 2025": 84
      },
      "Days Payable": {
        "Mar 2014": 64,
        "Mar 2015": 75,
        "Mar 2016": 123,
        "Mar 2017": 151,
        "Mar 2018": 160,
        "Mar 2019": 119,
        "Mar 2020": 106,
        "Mar 2021": 180,
        "Mar 2022": 151,
        "Mar 2023": 108,
        "Mar 2024": 121,
        "Mar 2025": 115
      },
      "Cash Conversion Cycle": {
        "Mar 2014": -6,
        "Mar 2015": -19,
        "Mar 2016": -54,
        "Mar 2017": -67,
        "Mar 2018": -76,
        "Mar 2019": -48,
        "Mar 2020": -40,
        "Mar 2021": -96,
        "Mar 2022": -87,
        "Mar 2023": -15,
        "Mar 2024": -32,
        "Mar 2025": -20
      },
      "Working Capital Days": {
        "Mar 2014": -28,
        "Mar 2015": -41,
        "Mar 2016": -128,
        "Mar 2017": -152,
        "Mar 2018": -155,
        "Mar 2019": -111,
        "Mar 2020": -263,
        "Mar 2021": -136,
        "Mar 2022": -68,
        "Mar 2023": -77,
        "Mar 2024": -79,
        "Mar 2025": -91
      },
      "ROCE %": {
        "Mar 2014": "11%",
        "Mar 2015": "10%",
        "Mar 2016": "11%",
        "Mar 2017": "10%",
        "Mar 2018": "12%",
        "Mar 2019": "11%",
        "Mar 2020": "9%",
        "Mar 2021": "6%",
        "Mar 2022": "8%",
        "Mar 2023": "10%",
        "Mar 2024": "10%",
        "Mar 2025": "8%"
      }
    }
  },
  "shareholding": {
    "headers": [
      "Dec 2022",
      "Mar 2023",
      "Jun 2023",
      "Sep 2023",
      "Dec 2023",
      "Mar 2024",
      "Jun 2024",
      "Sep 2024",
      "Dec 2024",
      "Mar 2025",
      "Jun 2025",
      "Sep 2025",
      "",
      "Mar 2017",
      "Mar 2018",
      "Mar 2019",
      "Mar 2020",
      "Mar 2021",
      "Mar 2022",
      "Mar 2023",
      "Mar 2024",
      "Mar 2025",
      "Sep 2025"
    ],
    "data": {
      "Promoters": {
        "Dec 2022": "46.32%",
        "Mar 2023": "47.45%",
        "Jun 2023": "47.27%",
        "Sep 2023": "50.07%",
        "Dec 2023": "50.58%",
        "Mar 2024": "50.66%",
        "Jun 2024": "50.41%",
        "Sep 2024": "50.31%",
        "Dec 2024": "50.10%",
        "Mar 2025": "50.01%"
      },
      "FIIs": {
        "Dec 2022": "22.58%",
        "Mar 2023": "24.46%",
        "Jun 2023": "24.39%",
        "Sep 2023": "24.08%",
        "Dec 2023": "25.66%",
        "Mar 2024": "24.23%",
        "Jun 2024": "22.49%",
        "Sep 2024": "22.06%",
        "Dec 2024": "19.07%",
        "Mar 2025": "18.65%"
      },
      "DIIs": {
        "Dec 2022": "11.85%",
        "Mar 2023": "11.23%",
        "Jun 2023": "11.86%",
        "Sep 2023": "13.78%",
        "Dec 2023": "12.62%",
        "Mar 2024": "14.23%",
        "Jun 2024": "16.06%",
        "Sep 2024": "16.98%",
        "Dec 2024": "19.36%",
        "Mar 2025": "20.25%"
      },
      "Government": {
        "Dec 2022": "0.14%",
        "Mar 2023": "0.15%",
        "Jun 2023": "0.18%",
        "Sep 2023": "0.20%",
        "Dec 2023": "0.20%",
        "Mar 2024": "0.17%",
        "Jun 2024": "0.16%",
        "Sep 2024": "0.19%",
        "Dec 2024": "0.17%",
        "Mar 2025": "0.17%"
      },
      "Public": {
        "Dec 2022": "19.12%",
        "Mar 2023": "16.72%",
        "Jun 2023": "16.29%",
        "Sep 2023": "11.87%",
        "Dec 2023": "10.94%",
        "Mar 2024": "10.71%",
        "Jun 2024": "10.89%",
        "Sep 2024": "10.46%",
        "Dec 2024": "11.29%",
        "Mar 2025": "10.92%"
      },
      "No. of Shareholders": {
        "Dec 2022": 2501302,
        "Mar 2023": 2266000,
        "Jun 2023": 2211231,
        "Sep 2023": 2632168,
        "Dec 2023": 3031272,
        "Mar 2024": 3327847,
        "Jun 2024": 3639396,
        "Sep 2024": 3463276,
        "Dec 2024": 4765728,
        "Mar 2025": 4393764
      }
    }
  },
  "documents": {
    "announcements": [
      {
        "title": "Announcement under Regulation 30 (LODR)-Analyst / Investor Meet - Outcome",
        "description": "24h - Audio recording of Jan 16, 2026 analyst meet on Q3/9M Dec 31, 2025 results available online.",
        "link": "https://www.bseindia.com/xml-data/corpfiling/AttachLive/1eb1611f-3be0-4a9e-975b-6ce43eeb5081.pdf"
      },
      {
        "title": "Compliances-Reg. 54 - Asset Cover details",
        "description": "1d - Security cover as of Dec 31, 2025: secured NCDs ₹20,000cr (+₹222cr interest); unsecured NCDs ₹7,389cr; total ₹27,389cr.",
        "link": "https://www.bseindia.com/xml-data/corpfiling/AttachLive/3e753ce1-d29e-4ad1-8be9-e431a99f49ca.pdf"
      },
      {
        "title": "Announcement under Regulation 30 (LODR)-Investor Presentation",
        "description": "1d - Presentation on the Unaudited Financial Results (Consolidated and Standalone) for the quarter and nine months ended December 31, 2025",
        "link": "https://www.bseindia.com/xml-data/corpfiling/AttachLive/d0e06e07-5a3e-4bc0-a6a6-76635bc53238.pdf"
      },
      {
        "title": "Announcement under Regulation 30 (LODR)-Press Release / Media Release",
        "description": "1d - Q3 FY26 consolidated EBITDA ₹50,932 Cr; 9M EBITDA ₹159,323 Cr; PAT ₹22,290 Cr (Q3), ₹75,165 Cr (9M)",
        "link": "https://www.bseindia.com/xml-data/corpfiling/AttachLive/a7693fc4-3f63-40de-93dd-d0700f254d84.pdf"
      },
      {
        "title": "Board Meeting Outcome for Consolidated And Standalone Unaudited Financial Results For The Quarter And Nine Months Ended December 31, 2025",
        "description": "1d - Unaudited Q3 and nine-month results to Dec 31, 2025; consolidated PAT ₹22,151 crore.",
        "link": "https://www.bseindia.com/xml-data/corpfiling/AttachLive/651cb21b-af7c-4e12-b1b0-14475741ac42.pdf"
      }
    ],
    "annualReports": [
      {
        "year": "Financial Year 2025",
        "source": "from bse",
        "link": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/468b09a3-a212-4066-bbaa-4b0ba524d2ce.pdf"
      },
      {
        "year": "Financial Year 2024",
        "source": "from bse",
        "link": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/d473280d-1c2b-4037-8ff9-dfbb82aa2c7e.pdf"
      },
      {
        "year": "Financial Year 2023",
        "source": "from bse",
        "link": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/b55b5dfc-a3bf-4f24-9d7f-ca09774a1dd9.pdf"
      },
      {
        "year": "Financial Year 2022",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/74185500325.pdf"
      },
      {
        "year": "Financial Year 2021",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/68509500325.pdf"
      },
      {
        "year": "Financial Year 2020",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/5003250320.pdf"
      },
      {
        "year": "Financial Year 2019",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/5003250319.pdf"
      },
      {
        "year": "Financial Year 2018",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/5003250318.pdf"
      },
      {
        "year": "Financial Year 2017",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/5003250317.pdf"
      },
      {
        "year": "Financial Year 2016",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/5003250316.pdf"
      },
      {
        "year": "Financial Year 2015",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/5003250315.pdf"
      },
      {
        "year": "Financial Year 2014",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/5003250314.pdf"
      },
      {
        "year": "Financial Year 2013",
        "source": "from nse",
        "link": "https://archives.nseindia.com/annual_reports/AR_19_RELIANCE_2012_2013_08052013171218.zip"
      },
      {
        "year": "Financial Year 2013",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/5003250313.pdf"
      },
      {
        "year": "Financial Year 2012",
        "source": "from bse",
        "link": "https://www.bseindia.com/bseplus/AnnualReport/500325/5003250312.pdf"
      }
    ],
    "creditRatings": [
      {
        "title": "Rating update",
        "date": "30 Oct 2025",
        "source": "crisil",
        "link": "https://www.crisil.com/mnt/winshare/Ratings/RatingList/RatingDocs/RelianceIndustriesLimited_October 30_ 2025_RR_379987.html"
      },
      {
        "title": "Rating update",
        "date": "30 Jul 2025",
        "source": "crisil",
        "link": "https://www.crisil.com/mnt/winshare/Ratings/RatingList/RatingDocs/FirstBusinessReceivablesTrust_July 30_ 2025_RR_374300.html"
      },
      {
        "title": "Rating update",
        "date": "4 Jul 2025",
        "source": "care",
        "link": "https://www.careratings.com/upload/CompanyFiles/PR/202507130705_Reliance_Industries_Limited.pdf"
      },
      {
        "title": "Rating update",
        "date": "30 Jun 2025",
        "source": "crisil",
        "link": "https://www.crisil.com/mnt/winshare/Ratings/RatingList/RatingDocs/RelianceIndustriesLimited_June 30_ 2025_RR_372910.html"
      },
      {
        "title": "Rating update",
        "date": "30 Jan 2025",
        "source": "icra",
        "link": "https://www.icra.in/Rationale/ShowRationaleReport/?Id=132755"
      },
      {
        "title": "Rating update",
        "date": "23 Jan 2025",
        "source": "crisil",
        "link": "https://www.crisil.com/mnt/winshare/Ratings/RatingList/RatingDocs/FirstBusinessReceivablesTrust_January 23_ 2025_RR_360185.html"
      }
    ],
    "concalls": [
      {
        "month": "Jan 2026",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachLive/d0e06e07-5a3e-4bc0-a6a6-76635bc53238.pdf"
      },
      {
        "month": "Oct 2025",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/f2454c0f-aad9-4d23-add0-dfe3d49aa8d6.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/b74bb5fb-c15b-42f1-b853-34231e587f46.pdf",
        "recording": "https://youtu.be/mU39C6sNUNM"
      },
      {
        "month": "Oct 2025",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/7a050d55-ad53-4d57-8735-cbcf20bb412b.pdf"
      },
      {
        "month": "Aug 2025",
        "recording": "https://www.youtube.com/live/4Y1cd2SLoo8?si=b4cZ3ALJKDyHxM2b"
      },
      {
        "month": "Jul 2025",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/38a33049-ed9e-4544-ace5-a92e5f984f23.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/49a01d99-854c-4c3a-b62c-e1fb3619029f.pdf"
      },
      {
        "month": "Apr 2025",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/b6203612-be21-4d28-ace9-6496cd3fb8b2.pdf"
      },
      {
        "month": "Apr 2025",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/3e36b485-0a6c-4f84-bf74-7d60b0e26d9d.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/ac3d5e8f-9a84-4510-99e8-71eabcf49a01.pdf",
        "recording": "https://www.youtube.com/watch?v=Tj8c9UfTdXw"
      },
      {
        "month": "Jan 2025",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/aa0547ba-09ef-404d-b57d-c216d1513f17.pdf"
      },
      {
        "month": "Jan 2025",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/89c33a3e-5683-4a1d-b8f9-1952ff4df63f.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/cb5da39b-b46a-45f7-b2b6-932a4f2ecf91.pdf"
      },
      {
        "month": "Oct 2024",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/0e6309fa-450f-4db6-88b2-d76d9a3ff756.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/fd1fe004-0eb0-4a2b-9859-7b62a89e451c.pdf"
      },
      {
        "month": "Aug 2024",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/9364b18a-7921-4029-bcfa-78921cd7807e.pdf"
      },
      {
        "month": "Jul 2024",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/191e6ab9-4751-4017-ba5f-bb63daf2d871.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/24faf885-ece1-4852-b0fe-91fc8643dc1c.pdf"
      },
      {
        "month": "Apr 2024",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/06b05d06-8c38-4aee-aa5b-5e7108ae3871.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/0501df4e-7d64-455d-bbb0-4b2118067e51.pdf",
        "recording": "https://www.ril.com/investors/events-presentations#webcast-sec"
      },
      {
        "month": "Jan 2024",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/de3e8ff3-efca-4266-9bc8-7509f48574a4.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/1cb66ca2-dfd5-4f46-986f-03b0661bd486.pdf"
      },
      {
        "month": "Oct 2023",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/ef9baa21-923a-48ad-9fb7-2157af59ae16.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/f9c9eba2-4b08-430f-a3a0-0dd5419b7f8f.pdf"
      },
      {
        "month": "Aug 2023",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/7cf2df9a-51bb-45d4-9004-3cad20b5920b.pdf"
      },
      {
        "month": "Jul 2023",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/f2fa506f-675b-46db-9f7b-26303a05d6b9.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/dc6d4a06-e2bc-4df4-8b8a-5db0f50b1918.pdf"
      },
      {
        "month": "Apr 2023",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/9c8c3f07-883a-476b-8fb2-8fe74078e9f5.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/7c228ccc-99ad-4bd9-be72-0a746c30ebee.pdf"
      },
      {
        "month": "Jan 2023",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/dfb275bd-fd47-4a38-964e-21a67e26b3c2.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/1ef9c86c-8f99-4791-a677-ea8a65e4ef28.pdf"
      },
      {
        "month": "Oct 2022",
        "transcript": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/aa7a60c6-791d-4e59-94e6-9f94c3a506fc.pdf",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/d6182ad1-6f8e-4112-b865-984ea1035107.pdf"
      },
      {
        "month": "Jul 2022",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/9e81c058-6b85-4f18-ba5a-bbdd72156edf.pdf"
      },
      {
        "month": "May 2022",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/bf7646f7-940a-429b-b3eb-0625715f6aeb.pdf"
      },
      {
        "month": "Feb 2022",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/7d172a7c-9056-4588-ad0c-d5c114ff902a.pdf"
      },
      {
        "month": "Jan 2022",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/6047c516-bdab-4a88-9103-81d6ddad23d5.pdf"
      },
      {
        "month": "Oct 2021",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/1008c763-0d31-4432-a031-6dd4afda0c72.pdf"
      },
      {
        "month": "Jul 2021",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/33e997e6-025e-478e-b71f-fb59dca2a4ef.pdf"
      },
      {
        "month": "Apr 2021",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/b9139079-b211-4486-a604-ef5b85a7985e.pdf"
      },
      {
        "month": "Feb 2021",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/4c079f28-425e-4fb4-a830-ae9f4fde355d.pdf"
      },
      {
        "month": "Feb 2021",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/caff4f40-fd8f-49ae-929c-f5dae4c98ec3.pdf"
      },
      {
        "month": "Jan 2021",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/c44095c1-55cb-4048-a235-6f776dd054e9.pdf"
      },
      {
        "month": "Jan 2021",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/ee845952-2c47-4abc-b15a-ab759c068efe.pdf"
      },
      {
        "month": "Oct 2020",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/ef91573e-ebb9-4257-8209-b684d9380a3e.pdf"
      },
      {
        "month": "Jul 2020",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/c9c7754a-ab5a-4463-a5cb-3baafbef135d.pdf"
      },
      {
        "month": "May 2020",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/8841c2b4-6659-4ea6-aefd-9874fee15705.pdf"
      },
      {
        "month": "Jan 2020",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/a738dab1-1698-4a4f-b863-148b5c5023e0.pdf"
      },
      {
        "month": "Oct 2019",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/5f6d2f75-5b1f-4c8b-87eb-34e3c8246fb1.pdf"
      },
      {
        "month": "Oct 2019",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/bcf1b986-0d58-4126-b3fa-cf67e7b44e14.pdf"
      },
      {
        "month": "Apr 2019",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/AttachHis/05c527f3-c7ff-4e83-a2b3-d7d92b20969d.pdf"
      },
      {
        "month": "Jan 2019",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/CorpAttachment/2019/1/040c976b-6d40-4903-905e-27820f21eb05.pdf"
      },
      {
        "month": "Oct 2018",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/CorpAttachment/2018/10/d71a237f-6917-4594-969d-cfd62d1849d9.pdf"
      },
      {
        "month": "Apr 2018",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/CorpAttachment/2018/4/e0357498-61d2-405d-98c9-02a1e83b556b.pdf"
      },
      {
        "month": "Jan 2018",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/CorpAttachment/2018/1/1a49913c-4798-4f48-ab39-e187ea89caf2.pdf"
      },
      {
        "month": "Oct 2017",
        "ppt": "https://www.bseindia.com/xml-data/corpfiling/CorpAttachment/2017/10/421cf002-f53b-4c1c-a8be-de2fdda6fd05.pdf"
      },
      {
        "month": "Jun 2016",
        "ppt": "https://www.bseindia.com/stockinfo/AnnPdfOpen.aspx?Pname=6669EE6F_088E_4C15_9839_E2DBB861749D_110427.pdf"
      }
    ]
  },
  "CAGRs": {
    "Compounded Sales Growth": {
      "10 Years": "5%",
      "5 Years": "9%",
      "3 Years": "7%",
      "TTM": "-6%"
    },
    "Compounded Profit Growth": {
      "10 Years": "5%",
      "5 Years": "0%",
      "3 Years": "-4%",
      "TTM": "13%"
    },
    "Stock Price CAGR": {
      "10 Years": "21%",
      "5 Years": "10%",
      "3 Years": "9%",
      "1 Year": "12%"
    },
    "Return on Equity": {
      "10 Years": "9%",
      "5 Years": "8%",
      "3 Years": "8%",
      "Last Year": "7%"
    }
  }
}

🔗 Supported URL Formats

The package supports various screener.in URL formats:

// Standard company page
"https://www.screener.in/company/RELIANCE/"

// Consolidated financials
"https://www.screener.in/company/RELIANCE/consolidated/"

// By BSE/NSE code
"https://www.screener.in/company/500325/"

⚠️ Important Notes

  • This package scrapes publicly available data from screener.in
  • Respect screener.in's terms of service and rate limits
  • Data accuracy depends on screener.in's data
  • Some sections may be empty if the company doesn't have that data available

🛠️ Requirements

  • Node.js 18.0 or higher (uses native fetch)
  • ES Modules support

📄 License

GPL-3.0 - See LICENSE for details.

🐛 Issues & Contributions

Found a bug or want to contribute? Please open an issue or pull request on GitHub.