Skip to content

Symbols

FreeValueStandardPro

List all available index symbols.

A symbol can be defined as a unique identifier for a stock / underlying asset. Common terms also include: root, ticker, and underlying. This endpoint returns all traded symbols for options. This endpoint is updated overnight.

Client
Auth
Style
from thetadatadx import Client

client = Client.from_env()

rows = client.market_data.index_list_symbols()
for t in rows:
    print(t)

Parameters

NameTypeRequiredDefaultDescription
timeout_msintnoPer-request deadline in milliseconds. 0 means no deadline.

Response

A list of strings — one symbol value per row.

Released under the Apache-2.0 License.