Retrieve a ticker
Resolve one ticker resource from a stable public ID or supported market identifier. This route returns the object directly instead of a list envelope. A bare ticker, CIK, CUSIP, or ISIN can map to several listings, so they are not accepted.
/v3.0.0/tickers/{identifier}Plan Access
Free
(Your plan)
Individual
$29/mo
Professional
$89/mo
Parameters
Path parameters
identifierstringrequiredA ticker ID, an exchange and symbol separated by a colon (e.g. NASDAQ:AAPL), or a FIGI.
NASDAQ:AAPLtkr_cO46h8pgSu9QqyBBG000B9XRY4Response
Response fields
idstringUnique identifier for the ticker, beginning with tkr_. It stays stable across symbol and exchange changes, so store this ID rather than the symbol.
objectstringString representing the object's type, always v3.reference.ticker for this resource.
symbolstringQualified symbol combining the exchange code and ticker separated by a colon, e.g. NASDAQ:AAPL. Accepted as an identifier by every endpoint that takes one.
namestringHuman-readable name of the company or security, e.g. Apple Inc. Use it for display; it is not a stable identifier.
exchangestringShort code of the exchange where this ticker trades, e.g. NASDAQ.
micstringThe ISO 10383 Market Identifier Code of the listing venue, e.g. XNGS for the Nasdaq Global Select Market.
typestringThe kind of security: stock for equities, fund for funds and ETFs, or dr for depositary receipts.
type_specificationsarray of stringsArray of qualifiers that narrow the security type, e.g. common for common stock. Empty when no qualifier applies.
is_primarybooleanWhether this ticker is the company's primary listing. A company traded on several venues has exactly one primary listing; use this flag to deduplicate cross-listed results.
statusstringListing status of the ticker: listed while it actively trades, delisted after it leaves its exchange. Historical data remains available for delisted tickers.
primary_symbolstringQualified symbol of the company's primary listing, e.g. NASDAQ:AAPL. Equals symbol when is_primary is true.
marketstringMarket region the ticker trades in, e.g. america. Useful for grouping tickers by geography.
listing_country_codestringTwo-letter ISO 3166 country code of the country the listing exchange operates in, e.g. US.
trading_currencystringISO 4217 code of the currency the security trades in, e.g. USD. Price data for this ticker is denominated in this currency.
fundamental_currencystringISO 4217 code of the currency the company reports its financial statements in. It can differ from trading_currency for cross-listed companies.
cikstringThe SEC Central Index Key (CIK) of the filer, a zero-padded 10-digit string, e.g. 0000320193. null for companies that do not file with the SEC.
cusipstringThe CUSIP of the security, a 9-character alphanumeric code that identifies North American securities, e.g. 037833100. null when not available.
isinstringThe ISIN of the security, a 12-character code that starts with a two-letter country code, e.g. US0378331005. It identifies the security globally; null when not available.
figistringThe OpenFIGI Financial Instrument Global Identifier of this specific listing, e.g. BBG000B9XRY4. null when not available.
figi_compositestringComposite FIGI that groups this security's listings within one country. null when not available.
figi_share_classstringShare-class FIGI that identifies the security globally across all of its listings. null when not available.
Missing resources
An unknown identifier returns 404 Not Found with the stable
resource_missing error code. Use the returned request_id when you need help
tracing the request.
Related endpoints
Discover an identifier before direct retrieval when you don't know the exact value.
curl "https://api.roic.ai/v3.0.0/tickers/NASDAQ:AAPL?apikey=YOUR_API_KEY"{
"id": "tkr_cO46h8pgSu9Qqy",
"object": "v3.reference.ticker",
"symbol": "NASDAQ:AAPL",
"name": "Apple Inc.",
"exchange": "NASDAQ",
"mic": "XNGS",
"type": "stock",
"type_specifications": [
"common"
],
"is_primary": true,
"status": "listed",
"primary_symbol": "NASDAQ:AAPL",
"market": "america",
"listing_country_code": "US",
"trading_currency": "USD",
"fundamental_currency": "USD",
"cik": "0000320193",
"cusip": "037833100",
"isin": "US0378331005",
"figi": "BBG000B9XRY4",
"figi_composite": "BBG000B9XRY4",
"figi_share_class": "BBG001S5N8V8"
}