v1

latestOpenAPI 3.0.1Apache-2.02026-07-17105189262.9 KB
Default

Stock Symbol

List supported stocks. We use the following symbology to identify stocks on Finnhub <code>Exchange_Ticker.Exchange_Code</code>. A list of supported exchange codes can be found <a href="https://docs.google.com/spreadsheets/d/1I3pBxjfXB056-g_JYf_6o3Rns3BV2kMGG1nCatb91ls/edit?usp=sharing" target="_blank">here</a>.

get/stock/symbol

Query parameters

exchangestring required

Exchange you want to get the list of symbols from. List of exchange codes can be found <a href="https://docs.google.com/spreadsheets/d/1I3pBxjfXB056-g_JYf_6o3Rns3BV2kMGG1nCatb91ls/edit?usp=sharing" target="_blank">here</a>.

micstring

Filter by MIC code.

securityTypestring

Filter by security type used by OpenFigi standard.

currencystring

Filter by currency.

Response

successful operation

descriptionstring

Symbol description

displaySymbolstring

Display symbol name.

symbolstring

Unique symbol used to identify this symbol used in <code>/stock/candle</code> endpoint.

typestring

Security type.

micstring

Primary exchange's MIC.

figistring

FIGI identifier.

shareClassFIGIstring

Global Share Class FIGI.

currencystring

Price's currency. This might be different from the reporting currency of fundamental data.

symbol2string

Alternative ticker for exchanges with multiple tickers for 1 stock such as BSE.

isinstring

ISIN. This field is only available for EU stocks and selected Asian markets. Entitlement from Finnhub is required to access this field.

Example response

[
  {
    "displaySymbol": "displaySymbol",
    "symbol": "symbol",
    "mic": "mic",
    "description": "description",
    "figi": "figi",
    "shareClassFIGI": "shareClassFIGI",
    "currency": "currency",
    "type": "type",
    "isin": "isin",
    "symbol2": "symbol2"
  }
]