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.

GEThttps://api.roic.ai/v2/tickers/search/exchange/{exchange}
Request
curl "https://api.roic.ai/v2/tickers/search/exchange/NASDAQ?apikey=YOUR_API_KEY"
Response
200 OK
[
  {
    "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

exchangestringrequired

Exchange code to filter by.

Example: NASDAQ

Query parameters

formatstring

Response format. Use json for JSON (default) or excel for tab-separated values compatible with Google Sheets and Excel.

Default: jsonValues: jsonexcel

Response

Response fields

symbolstring

The ticker symbol as it trades on its exchange, e.g. AAPL. Use it as the identifier when calling other v2 endpoints.

namestring

Human-readable name of the company or security, e.g. Apple Inc.. Use it for display; it is not a stable identifier.

exchange_namestring

Full display name of the listing exchange, e.g. NASDAQ Global Select.

exchangestring

Short code of the listing exchange, e.g. NASDAQ. Pass it to the exchange filter parameters to narrow searches to one venue.

typestring

The 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