Search tickers
Search ticker codes, exchange-qualified symbols, or company names with
typo-tolerant ranking, so a query such as aple can still resolve Apple.
/v3.0.0/tickers/searchPlan Access
Free
(Your plan)
Individual
$29/mo
Professional
$89/mo
curl "https://api.roic.ai/v3.0.0/tickers/search?apikey=YOUR_API_KEY&query=Apple"{
"data": [
{
"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"
}
],
"next_page_url": null,
"previous_page_url": null
}Parameters
Query parameters
querystringrequiredSearch text.
Applesearch_bystringoptionalFields used for matching.
symbolValues: symbolnameexchangemictypeprimary_symbolmarketlisting_country_codetrading_currencyfundamental_currencycikcusipisinfigifigi_compositefigi_share_classlimitintegeroptionalMaximum number of resources to return.
500Min: 1Max: 2000pagestringoptionalOpaque page token from a previous response. Follow the returned page URL when possible.
Response
Response fields
dataarray of objectsArray of ticker resources for the current page.
+ Show child attributes- Hide child attributes
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.
next_page_urlnullableURL of the next page of results, or null when there are no more pages. Request it unchanged to continue paging.
previous_page_urlnullableURL of the previous page of results, or null on the first page.
Related endpoints
Use list for catalog browsing and retrieve after you select one result.