Stock Ticker API
The Tickers API provides endpoints for searching, listing, and resolving stock ticker symbols across all major exchanges. Whether you need to find a ticker by company name, convert a SEC CIK number to a symbol, look up a CUSIP or ISIN, or list every stock on NASDAQ — these endpoints cover the full range of ticker resolution workflows.
All ticker endpoints return the stock symbol, company name, exchange, and security type. Results are live.
Available Endpoints
| Endpoint | Path | Description |
|---|---|---|
| List All Tickers | GET /v2/tickers/list | Get the complete list of all 60,000+ stock ticker symbols |
| Search Tickers | GET /v2/tickers/search | Search by symbol, name, CIK, CUSIP, or ISIN |
| List by Exchange | GET /v2/tickers/search/exchange/{exchange} | List all tickers on a specific exchange |
Common Response Fields
Every ticker endpoint returns objects with these fields:
| Field | Type | Description |
|---|---|---|
symbol | string | Stock ticker symbol (e.g., AAPL) |
name | string | Full company name |
exchange_name | string | Full exchange name (e.g., NASDAQ Global Select) |
exchange | string | Exchange code (e.g., NASDAQ) |
type | string | Security type (e.g., Common Stock) |
Some endpoints also return the identifier you searched by (cik, cusip, or isin).
Which Endpoint Should I Use?
- You have a ticker symbol, company name, CIK, CUSIP, or ISIN — use Search Tickers
- You want all stocks on an exchange — use List by Exchange
- You want every ticker in the database — use List All Tickers
Next Steps
- Get your API key to start making requests
- List all exchanges to see available exchange codes
- Get company profiles after resolving a ticker symbol