Financial Data API

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

EndpointPathDescription
List All TickersGET /v2/tickers/listGet the complete list of all 60,000+ stock ticker symbols
Search TickersGET /v2/tickers/searchSearch by symbol, name, CIK, CUSIP, or ISIN
List by ExchangeGET /v2/tickers/search/exchange/{exchange}List all tickers on a specific exchange

Common Response Fields

Every ticker endpoint returns objects with these fields:

FieldTypeDescription
symbolstringStock ticker symbol (e.g., AAPL)
namestringFull company name
exchange_namestringFull exchange name (e.g., NASDAQ Global Select)
exchangestringExchange code (e.g., NASDAQ)
typestringSecurity type (e.g., Common Stock)

Some endpoints also return the identifier you searched by (cik, cusip, or isin).

Which Endpoint Should I Use?

Next Steps