Skip to content

Dates

FreeValueStandardPro

List available dates for a stock by request type (EOD, TRADE, QUOTE, etc.).

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

trade · AAPL
Client
Auth
Style
from thetadatadx import Client

client = Client.from_env()

rows = client.market_data.stock_list_dates(
    "trade", "AAPL",
)
for t in rows:
    print(t)

Parameters

NameTypeRequiredDefaultDescription
request_typestringyesRequest type. Accepted values: trade, quote, eod, ohlc.
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.