Financial Data API

List Stock Tickers

Retrieve the complete list of stock ticker symbols available in the ROIC.ai database. The response includes every publicly traded company across NASDAQ, NYSE, AMEX, and international exchanges — over 60,000 symbols in total. Each entry includes the ticker symbol, full company name, exchange name, security type, and listing status. You can filter by listing status using the listed query parameter.

This endpoint is ideal for building local databases, populating autocomplete fields, or syncing your system with the full universe of available tickers. Results are live.

GEThttps://api.roic.ai/v2/tickers/list

Parameters

Query Parameters

apikeystringrequired

Your API key for authentication.

listedbooleanoptional

Filter by listing status. `true` for listed, `false` for delisted. Omit to return all tickers.

Values: true, false
formatstringoptional

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

Default: jsonValues: json, excel

Code Examples

curl "https://api.roic.ai/v2/tickers/list?apikey=YOUR_API_KEY"

Response

Response200 OK
[
  {
    "symbol": "AAPL",
    "name": "Apple Inc.",
    "exchange_name": "NASDAQ Global Select",
    "exchange": "NASDAQ",
    "type": "Common Stock",
    "listed": true
  },
  {
    "symbol": "MSFT",
    "name": "Microsoft Corporation",
    "exchange_name": "NASDAQ Global Select",
    "exchange": "NASDAQ",
    "type": "Common Stock",
    "listed": true
  }
]

Use Cases

  • Build a local ticker database that syncs daily with all available stock symbols
  • Populate an autocomplete or typeahead search field with every available ticker
  • Generate a master list of all securities for compliance or audit purposes
  • Export to CSV or Excel for offline analysis using the format=excel parameter
  • Feed into a stock screener or portfolio management system as the base universe
  • Search Tickers - Search for specific tickers instead of downloading the full list
  • List by Exchange - Get tickers for a single exchange instead of all exchanges
  • List All Exchanges - See which exchanges are available and how many tickers each has