Share Holding Pattern
https://connects.torusdigital.com/api/v1/share-holding-pattern/{cocode}Name
Mandatory
Description
curl -X 'GET' \
'https://connects.torusdigital.com/api/v1/share-holding-pattern/{cocode}' \
-H 'accept: application/json'Unirest.setTimeouts(0, 0);
HttpResponse<String> response = Unirest.post("https://connects.torusdigital.com/api/v1/share-holding-pattern/{cocode}")
.header("Content-Type", "application/json")
.asString();package main
import (
"fmt"
"io/ioutil"
"net/http"
"strings"
)
func main() {
url := "https://connects.torusdigital.com/api/v1/share-holding-pattern/{cocode}"
method := "GET"
client := &http.Client{}
req, err := http.NewRequest(method, url, nil)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}[
{
"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
}
]Parameters
Description
Last updated