Symbols
FreeValueStandardPro
List all available option underlying 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.
rust
pub fn option_list_symbols(&self) -> OptionListSymbolsBuilder<'_>Execute with .await → Result<Vec<String>, Error>.
Example
rust
let rows = tdx.option_list_symbols().await?;
for value in &rows {
println!("{value}");
}Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
timeout_ms | int | no | — | Per-request deadline in milliseconds. 0 means no deadline. |
Response
A list of strings — one symbol value per row.