Skip to content

Dates

FreeValueStandardPro

List available dates for an index symbol.

Lists all dates of data that are available for a index with a given request type and symbol. This endpoint is updated overnight.

SPX
Client
Auth
Style
from thetadatadx import Client

client = Client.from_env()

rows = client.market_data.index_list_dates(
    "SPX",
)
for t in rows:
    print(t)

Parameters

NameTypeRequiredDefaultDescription
symbolstringyesTicker symbol (e.g. AAPL)
timeout_msintnoPer-request deadline in milliseconds. 0 means no deadline.

Response

A list of strings — one date value per row.

Released under the Apache-2.0 License.