Retrieves all available trading instruments with optional filtering capabilities.
Retrieves all available trading instruments with optional filtering capabilities. This endpoint returns a comprehensive list of instruments available for trading, with support for filtering by security type and various trading capabilities. All filter parameters are optional and can be combined to narrow down results.
optional set of security types to filter by ([GatewaySecurityType])
optional set of trading statuses to filter by ([ApiInstrumentDto.Trading])
optional set of fractional trading statuses to filter by ([ApiInstrumentDto.Trading])
optional set of option trading statuses to filter by ([ApiInstrumentDto.Trading])
optional set of option spread trading statuses to filter by ([ApiInstrumentDto.Trading])
| Name | Type | Required | Description |
|---|---|---|---|
| typeFilter | array | No | optional set of security types to filter by ([GatewaySecurityType]) |
| tradingFilter | array | No | optional set of trading statuses to filter by ([ApiInstrumentDto.Trading]) |
| fractionalTradingFilter | array | No | optional set of fractional trading statuses to filter by ([ApiInstrumentDto.Trading]) |
| optionTradingFilter | array | No | optional set of option trading statuses to filter by ([ApiInstrumentDto.Trading]) |
| optionSpreadTradingFilter | array | No | optional set of option spread trading statuses to filter by ([ApiInstrumentDto.Trading]) |
No request body defined
{
"instruments": [
{
"instrument": {
"symbol": "string",
"type": "EQUITY"
},
"trading": "BUY_AND_SELL",
"fractionalTrading": "BUY_AND_SELL",
"optionTrading": "BUY_AND_SELL",
"optionSpreadTrading": "BUY_AND_SELL",
"instrumentDetails": null
}
]
}