Skip to content

stock_list_symbols

List all available stock ticker symbols.

FreeValueStandardPro

Code Example

rust
let data = tdx.stock_list_symbols().await?;
for item in &data {
    println!("{}", item);
}
python
data = tdx.stock_list_symbols()
for item in data:
    print(item)
typescript
const data = tdx.stockListSymbols();
console.log(data);
cpp
auto data = client.stock_list_symbols();
for (const auto& item : data) {
    printf("%s\n", item.c_str());
}

Parameters

None.

Response

List of ticker symbol strings (e.g. "AAPL", "MSFT", "GOOGL").

Sample Response

json
["AAPL", "MSFT", "GOOGL", "AMZN", "TSLA"]

Returns 25,000+ symbols. Shown cropped to 5.

Notes

  • Returns all symbols for which ThetaData has any historical stock data.
  • The list may include delisted symbols with historical data still available.

Released under the Apache-2.0 License.