List Tickers by Exchange
Get all stock ticker symbols listed on a specific exchange. Pass an exchange code (e.g., NASDAQ, NYSE, AMEX) and receive every ticker on that exchange with the company name, full exchange name, and security type. This is useful for building exchange-specific stock lists, screening universes, or analyzing market composition by exchange.
Major supported exchanges include NASDAQ, NYSE, AMEX, and international markets. Use the List All Exchanges endpoint to see every available exchange code and the number of tickers on each.
https://api.roic.ai/v2/tickers/search/exchange/{exchange}curl "https://api.roic.ai/v2/tickers/search/exchange/NASDAQ?apikey=YOUR_API_KEY"[
{
"symbol": "AAPL",
"name": "Apple Inc.",
"exchange_name": "NASDAQ Global Select",
"exchange": "NASDAQ",
"type": "Common Stock"
},
{
"symbol": "MSFT",
"name": "Microsoft Corporation",
"exchange_name": "NASDAQ Global Select",
"exchange": "NASDAQ",
"type": "Common Stock"
}
]Parameters
Path parameters
exchangestringrequiredExchange code to filter by.
NASDAQQuery parameters
formatstringResponse format. Use json for JSON (default) or excel for tab-separated values compatible with Google Sheets and Excel.
jsonValues: jsonexcelResponse
Response fields
symbolstringThe ticker symbol as it trades on its exchange, e.g. AAPL. Use it as the identifier when calling other v2 endpoints.
namestringHuman-readable name of the company or security, e.g. Apple Inc.. Use it for display; it is not a stable identifier.
exchange_namestringFull display name of the listing exchange, e.g. NASDAQ Global Select.
exchangestringShort code of the listing exchange, e.g. NASDAQ. Pass it to the exchange filter parameters to narrow searches to one venue.
typestringThe kind of security this ticker represents, e.g. Common Stock, ETF, or Preferred Stock.
Use Cases
- Build a stock screener that filters by exchange before applying financial criteria
- Analyze market composition by comparing the number and types of securities across exchanges
- Create exchange-specific watchlists for traders focused on NASDAQ or NYSE
- Generate compliance reports that categorize holdings by listing exchange
- Power a dropdown or filter UI that shows all stocks on a user-selected exchange
Related Endpoints
- List All Tickers - Get every ticker across all exchanges in a single request
- List All Exchanges - See all available exchange codes and their ticker counts
- Search Tickers - Search for specific tickers with optional exchange filtering