Get All Ticker
HTTP request Retrieve all ticker data
- GET  /api/v2/market/tickers
Weight(IP): 20
Request parameters
NONE
Request example
curl "https://api-spot.weex.com/api/v2/market/tickers"
Response parameters
| Field Name | Type | Field Description | 
|---|---|---|
| symbol | String | Trading pair name | 
| priceChange | String | Price change amount | 
| priceChangePercent | String | Price change percentage | 
| trades | long | 24-hour trade count | 
| size | String | 24-hour trading volume (quantity) | 
| value | String | 24-hour trading value (amount) | 
| high | String | 24-hour highest price | 
| low | String | 24-hour lowest price | 
| open | String | Opening price (24-hour period) | 
| close | String | Closing price (24-hour period) | 
| highTime | long | Timestamp of 24-hour high | 
| lowTime | long | Timestamp of 24-hour low | 
| startTime | long | Start timestamp of 24-hour period | 
| endTime | long | End timestamp of 24-hour period | 
| lastPrice | String | Last traded price | 
| openInterest | String | Open interest (for derivatives) | 
| ts | long | System timestamp | 
Response example
{
  "code": "00000",
  "msg": "success",
  "requestTime": 1743667090710,
  "data": [{
    "symbol": "BTCUSDT_SPBL",
    "priceChange": "-628.0",
    "priceChangePercent": "-0.007465",
    "trades": 106283,
    "size": "78680.72453000",
    "value": "6740487302.7932238000",
    "high": "88495.5",
    "low": "82175.9",
    "open": "84125.9",
    "close": "83497.9",
    "highTime": 1743625002550,
    "lowTime": 1743638655112,
    "startTime": 1743577200000,
    "endTime": 1743666300000,
    "lastPrice": "83497.9",
    "openInterest": "0",
    "ts": 1750060557824
  }]
}