📢 Public APIs
Get stock by symbol id
The API endpoint retrieves a stock based on the Symbol as ID provided as a path variable.
By accessing this endpoint and specifying a valid stock symbol, you will receive a response containing the details of the corresponding stock.
get/public/stocks/{stockSymbol}
Response
Get stock by symbol id
Example response
{
"data": {
"Name": "Tata Chemicals Limited",
"Symbol": "TATACHEM",
"ListingDate": "01-Apr-99",
"ISIN": "INE092A01019",
"MarketCap": "₹ 28,355 Cr.",
"CurrentPrice": "₹ 1,113",
"HighLow": "₹ 1,123 / 912",
"BookValue": "₹ 840",
"DividendYield": "1.54 %",
"ROCE": "11.6 %",
"ROE": "12.0 %",
"FaceValue": "₹ 10.0"
},
"message": "Book fetched successfully",
"statusCode": 200,
"success": true
}