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.
https://api.roic.ai/v2/tickers/listParameters
Query Parameters
apikeystringrequiredYour API key for authentication.
listedbooleanoptionalFilter by listing status. `true` for listed, `false` for delisted. Omit to return all tickers.
true, falseformatstringoptionalResponse format. Use `json` for JSON (default) or `excel` for tab-separated values compatible with Google Sheets and Excel.
jsonValues: json, excelCode Examples
curl "https://api.roic.ai/v2/tickers/list?apikey=YOUR_API_KEY"Response
[
{
"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=excelparameter - Feed into a stock screener or portfolio management system as the base universe
Related Endpoints
- 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