Jaydeep purohit
Jaydeep purohit

Reputation: 1566

How to get all Stock list company name and symbol of NSE and BSE with free API?

Hello I am going to develop app for show data from stockmarket. Yahoo and Google only gives details of specific Symbol data but I need all company list with symbols or ID which covers in NSE/BSE.

Upvotes: 5

Views: 15580

Answers (2)

The Gardener
The Gardener

Reputation: 119

Is this what you are looking for? Quandl BSE ticker list

This is from the Quandl page for BSE (https://www.quandl.com/data/BSE). Look at the Documentation tab to get the symbols list. Of course that does not include delisted symbols or symbol changes.

Similarly https://www.quandl.com/data/NSE

Upvotes: 1

Pranav Darji
Pranav Darji

Reputation: 752

Check the below link

http://www.barchartondemand.com/freemarketdataapi.php

or you can can the following they are free, they generate Json, though for different exchanges you need to ensure that correct syntax is used. even Yahoo finance works well, but it has some issues regarding NSE and BSE data, which is always generated Null

Google Finance - NSE

URL - http://www.google.com/finance/info?q=NSE:AIAENG,ATULAUTO,

Google Finance - BSE

URL -http://www.google.com/finance/info?q=BOM:524091,532683,

Other Data Feeds (Json)

URL - http://live-nse.herokuapp.com/?symbol=AIAENG,ATULAUTO,

Python Utility (NSE)

URL - http://nsetools.readthedocs.org/en/latest/index.html

Upvotes: 2

Related Questions