Get Latest Ticker for All Contracts
HTTP REQUEST
GET /api/v1/allTickers
REQUEST RATE LIMIT
Public Weight
: 5
RESPONSES
Param | Description |
---|---|
sequence | Message sequence |
symbol | Contract symbol |
side | Trade direction |
size | Contract size |
tradeId | Trade ID |
price | Transaction price |
bestBidPrice | Best bid price |
bestBidSize | Best bid size |
bestAskPrice | Best ask price |
bestAskSize | Best ask size |
ts | Timestamp |
{
"success": true,
"code": "200",
"msg": "success",
"retry": false,
"data": [
{
"sequence": 1721456489271,
"symbol": "THETAUSDTM",
"side": "buy",
"size": 728,
"tradeId": "1721456489263",
"price": "1.479",
"bestBidPrice": "1.536",
"bestBidSize": 272,
"bestAskPrice": "1.54",
"bestAskSize": 1000,
"ts": 1722237164196000000
}
//...
]
}