general
quant tickers
Returns the WebSocket-only ticker symbols exclusive to Quant subscribers for real-time streaming.
GET/tickers/quantQuant Tier
Returns the WebSocket-only ticker symbols exclusive to Quant subscribers for real-time streaming.
Quant Ticker Access
- Quant Tier Required: Requires an active Quant subscription and API key.
- Universe Integration: Combine returned symbols with base tickers from
GET /tickersto build your complete real-time subscription list. - Group Construction: Supports standard groups (
{TICKER}_{PACKAGE}_{CATEGORY}) and explicit-expiry groups ({TICKER}_{PACKAGE}_{CATEGORY}_{YYYYMMDD}).
Request
Example: /tickers/quant
Headers
| Name | Type | Description |
|---|---|---|
Authorization | string | Required. Format: Bearer <YOUR_API_KEY> |
User-Agent | string | Required. Identify your client application. |
Accept | string | Required. Set to "application/json". |
Response
| Field | Type | Description |
|---|---|---|
stocks | array | Additional Quant stock tickers available for real-time WebSocket output. |
indexes | array | Additional Quant index tickers available for real-time WebSocket output. Currently contains XSP. |
{
"stocks": [
"SOXL",
"LLY",
"FUTU",
"MARA",
"PYPL",
"F",
"ETHA",
"EXK"
],
"indexes": [
"XSP"
]
}{
"type": "object",
"properties": {
"stocks": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 5
},
"description": "Additional Quant stock tickers available for real-time WebSocket output."
},
"indexes": {
"type": "array",
"items": {
"type": "string",
"enum": ["XSP"]
},
"description": "Additional Quant index tickers available for real-time WebSocket output."
}
}
}type: object
properties:
stocks:
type: array
items:
type: string
minLength: 1
maxLength: 5
description: Additional Quant stock tickers available for real-time WebSocket output.
indexes:
type: array
items:
type: string
enum:
- XSP
description: Additional Quant index tickers available for real-time WebSocket output.tickers
Returns the list of available ticker symbols supported by the API. This includes stocks, indexes, and futures that can be used with other endpoints.
categories
Returns the available category names for a package. Combine a ticker, package, and category to build standard WebSocket groups and historical download queries.