Float Market Cap from the Quote

Is there a way to get the Free Float Market Cap from the Quote? (Highlighted in Red Box in below picture)

Never mind. Found that the following URL gives that entire info:

https://www.nseindia.com/api/quote-equity?symbol=BAJFINANCE&section=trade_info

1 Like

Each day I come across some new API of NSE. I thought everything was at here -

payload = nse_eq('BAJFINANCE')
print(payload)

Output:

{
   "info":{
      "symbol":"BAJFINANCE",
      "companyName":"Bajaj Finance Limited",
      "industry":"FINANCE",
      "activeSeries":[
         "EQ"
      ],
      "debtSeries":[
         
      ],
      "tempSuspendedSeries":[
         "N1",
         "W1"
      ],
      "isFNOSec":true,
      "isCASec":false,
      "isSLBSec":true,
      "isDebtSec":false,
      "isSuspended":false,
      "isETFSec":false,
      "isDelisted":false,
      "isin":"INE296A13011",
      "isTop10":false,
      "identifier":"BAJFINANCEEQN"
   },
   "metadata":{
      "series":"EQ",
      "symbol":"BAJFINANCE",
      "isin":"INE296A01024",
      "status":"Listed",
      "listingDate":"01-Apr-2003",
      "industry":"NBFC",
      "lastUpdateTime":"28-Jun-2021 16:00:00",
      "pdSectorPe":24.03,
      "pdSymbolPe":92.56,
      "pdSectorInd":"NIFTY FINANCIAL SERVICES                          "
   },
   "securityInfo":{
      "boardStatus":"Main",
      "tradingStatus":"Active",
      "tradingSegment":"Normal Market",
      "sessionNo":"-",
      "slb":"Yes",
      "classOfShare":"Equity",
      "derivatives":"Yes",
      "surveillance":"-",
      "faceValue":2,
      "issuedCap":603556845
   },
   "priceInfo":{
      "lastPrice":6043,
      "change":-32.80000000000018,
      "pChange":-0.5398466045623652,
      "previousClose":6075.8,
      "open":6100,
      "close":6037.05,
      "vwap":6046.79,
      "lowerCP":"5468.25",
      "upperCP":"6683.35",
      "pPriceBand":"No Band",
      "basePrice":6075.8,
      "intraDayHighLow":{
         "min":6015,
         "max":6117.7,
         "value":6043
      },
      "weekHighLow":{
         "min":2770,
         "minDate":"29-Jun-2020",
         "max":6249,
         "maxDate":"14-Jun-2021",
         "value":6043
      }
   },
   "preOpenMarket":{
      "preopen":[
         {
            "price":5529,
            "buyQty":0,
            "sellQty":92
         },
         {
            "price":5772,
            "buyQty":0,
            "sellQty":36
         },
         {
            "price":5833,
            "buyQty":0,
            "sellQty":330
         },
         {
            "price":5954.3,
            "buyQty":0,
            "sellQty":8
         },
         {
            "price":6100,
            "buyQty":0,
            "sellQty":0,
            "iep":true
         },
         {
            "price":6258.1,
            "buyQty":10,
            "sellQty":0
         },
         {
            "price":6379.55,
            "buyQty":84,
            "sellQty":0
         },
         {
            "price":6379.6,
            "buyQty":1,
            "sellQty":0
         },
         {
            "price":6490,
            "buyQty":50,
            "sellQty":0
         }
      ],
      "ato":{
         "buy":1135,
         "sell":326
      },
      "IEP":6100,
      "totalTradedVolume":1559,
      "finalPrice":6100,
      "finalQuantity":1559,
      "lastUpdateTime":"28-Jun-2021 09:07:33",
      "totalBuyQuantity":13583,
      "totalSellQuantity":21284,
      "atoBuyQty":1135,
      "atoSellQty":326
   }
}

but that value is not here.