List All Stock Tickers
Retrieve the complete list of all 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, and security type.
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.
GET
https://api.roic.ai/v2/tickers/listParameters
Query Parameters
apikeystringrequiredYour API key for authentication.
formatstringoptionalResponse format. Use `json` for JSON (default) or `excel` for tab-separated values compatible with Google Sheets and Excel.
Default:
jsonValues: json, excelCode 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"
},
{
"symbol": "MSFT",
"name": "Microsoft Corporation",
"exchange_name": "NASDAQ Global Select",
"exchange": "NASDAQ",
"type": "Common Stock"
}
]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