[Feature Request] NSE Large Deals

Can we have nse bulk deals function available in our python code?
https://www.nseindia.com/market-data/large-deals

1 Like

If it is not there, just use the nsefetch() function * Basic Usage

1 Like

Thanks for the functions. But I don’t see Buy/Sell status in the response.

You have discovered a new URL.

It’s called Large Deals and it contains three data in one snapshot - Bulk Deal, Short Deal, and Block Deal. I will add this in the next update shortly.

You can use this mean while -

def get_largedeals():
    return nsefetch('https://www.nseindia.com/api/snapshot-capital-market-largedeal')

print(get_largedeals())

Thanks :slight_smile:

1 Like

Done and dusted.

1 Like