Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AlphaVantage - List of all tickers on an Exchange

I recently started exploring Alpha Vantage. I was wondering if there is an endpoint which would list all the tickers being traded on an exchange. Thanks in Advance.

like image 946
user1142317 Avatar asked Apr 09 '18 00:04

user1142317


1 Answers

Check out the alpha vantage documentation at https://www.alphavantage.co/documentation/

Go to Listing and Delisting Status

Examples To ensure optimal API response time, this endpoint uses the CSV format which is more memory-efficient than JSON.

Querying all active stocks as of the latest trading day: https://www.alphavantage.co/query?function=LISTING_STATUS&apikey=demo

Querying all delisted stocks as of 2014-07-10: https://www.alphavantage.co/query?function=LISTING_STATUS&date=2014-07-10&state=delisted&apikey=demo

like image 185
Jakub Avatar answered Oct 23 '22 20:10

Jakub