Retrieve a collection of stocks listed on the National Stock Exchange of India (NSE) with a snapshot taken on December 28, 2023. This endpoint provides details such as stock symbols, names, market capitalization, and current prices of randomly selected stocks.
https://api.freeapi.app/api/v1/public/stocks?page=1&limit=2&inc=Symbol%2CName%2CMarketCap%2CCurrentPrice&query=tata
Example-> JSON data
1
2
3
4
5
6
7
{
"Symbol": "TATACHEM",
"Name": "Tata Chemicals Limited",
"MarketCap": "₹ 28,355 Cr.",
"CurrentPrice": "₹ 1,113"
}
Retrieve detailed information about a specific stock by its symbol (ID) using this API endpoint. Provide a valid stock symbol as a path variable to receive comprehensive details about the corresponding stock, including its name, listing date, ISIN, market capitalization, current price, trading range, financial metrics, and face value.
Example-> JSON data
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"Name": "Tata Chemicals Limited",
"Symbol": "TATACHEM",
"ListingDate": "01-Apr-99",
"ISIN": "INE092A01019",
"MarketCap": "₹ 28,355 Cr.",
"CurrentPrice": "₹ 1,113",
"HighLow": "₹ 1,123 / 912",
"StockPE": 14.4,
"BookValue": "₹ 840",
"DividendYield": "1.54 %",
"ROCE": "11.6 %",
"ROE": "12.0 %",
"FaceValue": "₹ 10.0"
}
Retrieve details of a randomly selected stock from the list using this API endpoint. Upon accessing this endpoint, you will receive information about a randomly chosen stock, including its name, symbol, listing date, ISIN, market capitalization, current price, trading range, financial metrics, and face value.
Example-> JSON data
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"Name": "Tata Chemicals Limited",
"Symbol": "TATACHEM",
"ListingDate": "01-Apr-99",
"ISIN": "INE092A01019",
"MarketCap": "₹ 28,355 Cr.",
"CurrentPrice": "₹ 1,113",
"HighLow": "₹ 1,123 / 912",
"StockPE": 14.4,
"BookValue": "₹ 840",
"DividendYield": "1.54 %",
"ROCE": "11.6 %",
"ROE": "12.0 %",
"FaceValue": "₹ 10.0"
}