Share Holding Pattern

This API retrieves the shareholding pattern for a given company, identified by its company code (cocode). It returns detailed information about the distribution of shares among different shareholder categories, including Domestic Institutional Investors & Mutual Funds (DIIMF), Foreign Institutional Investors (FII), insurance companies, mutual funds, promoters, and others, along with the total number of shares and record count for each period.

Note: cocode can be obtained from the Search Stock or Company Basic Detail API.

Endpoint

https://connects.torusdigital.com/api/v1/share-holding-pattern/{cocode}

Request Parameter

NameMandatoryDescription

cocode

Y

The unique company code identifier.

Request

cURL
curl -X 'GET' \
  'https://connects.torusdigital.com/api/v1/share-holding-pattern/{cocode}' \
  -H 'accept: application/json'

Response

[
  {
    "DIIMFPer": 15.8476,
    "FIIPer": 21.2191,
    "insurancePer": 8.1716,
    "mutualFundsPer": 7.6474,
    "othersPer": 13.825500000000005,
    "promotersPer": 49.1078,
    "totalShares": 6766229014,
    "yearlyRecordCount": 202406
  },
  {
    "DIIMFPer": 15.5999,
    "FIIPer": 21.5285,
    "insurancePer": 8.2659,
    "mutualFundsPer": 7.3248,
    "othersPer": 13.762899999999993,
    "promotersPer": 49.1087,
    "totalShares": 6766109014,
    "yearlyRecordCount": 202403
  },
  {
    "DIIMFPer": 15.223400000000002,
    "FIIPer": 21.6136,
    "insurancePer": 8.3533,
    "mutualFundsPer": 6.8052,
    "othersPer": 14.054300000000008,
    "promotersPer": 49.1087,
    "totalShares": 6766109014,
    "yearlyRecordCount": 202312
  },
  {
    "DIIMFPer": 14.6889,
    "FIIPer": 22.0786,
    "insurancePer": 8.2178,
    "mutualFundsPer": 6.4056,
    "othersPer": 14.123800000000006,
    "promotersPer": 49.1087,
    "totalShares": 6766109014,
    "yearlyRecordCount": 202309
  }
]

Response Parameter

ParametersDescription

DIIMFPer

Percentage of shares held by Domestic Institutional Investors and Mutual Funds.

FIIPer

Percentage of shares held by Foreign Institutional Investors (FII).

insurancePer

Percentage of shares held by insurance companies.

mutualFundsPer

Percentage of shares held by mutual funds.

othersPer

Percentage of shares held by other shareholders.

promotersPer

Percentage of shares held by company promoters.

totalShares

Total number of shares outstanding.

yearlyRecordCount

Unique record identifier for the year, showing the time period of the data record.

Last updated