c4a12725cdb5
Stocks
The stocks endpoint provides a daily updated list of all available stock symbols. It returns an array containing the symbols, which can be used to identify and access specific stock data across various services. This endpoint is essential for users needing to retrieve the latest stock symbol information for further data requests or integration into financial applications.
Query parameters
The ticker symbol of an instrument for which data is requested
Filter by financial instrument global identifier (FIGI). This parameter is available on the <a href="https://twelvedata.com/pricing">Ultra</a> plan (individual) and the <a href="https://twelvedata.com/pricing-business">Enterprise</a> plan (business) and above.
Filter by international securities identification number (ISIN). ISIN access is activating in the <a href="https://twelvedata.com/account/add-ons">Data add-ons</a> section
The CUSIP of an instrument for which data is requested. CUSIP access is activating in the <a href="https://twelvedata.com/account/add-ons">Data add-ons</a> section
The CIK of an instrument for which data is requested
Filter by exchange name
Filter by market identifier code (MIC) under ISO 10383 standard
Filter by country name or alpha code, e.g., United States or US
The asset class to which the instrument belongs
The format of the response data
The separator used in the CSV response data
Adds info on which plan symbol is available
Include delisted identifiers
Page number of the results to fetch
Determines the number of data points returned in the output
Response
Example response
{
"count": 100,
"data": [
{
"symbol": "AAPL",
"name": "Apple Inc",
"currency": "USD",
"exchange": "NASDAQ",
"mic_code": "XNGS",
"country": "United States",
"type": "Common Stock",
"figi_code": "BBG000B9Y5X2",
"cfi_code": "ESVUFR",
"isin": "US0378331005",
"cusip": "037833100",
"access": {
"global": "Basic",
"plan": "Basic",
"plan_business": "Basic"
}
}
],
"status": "ok"
}