Get All Tickers
Description
Retrieve all trading pair ticker
HTTP Request
- Get /fapi/v1/market/allTicker
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/allTicker'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| > futuresName | String | Futures name, e.g. "e_btcusdt" |
| > high | String | 24h high |
| > low | String | 24h low |
| > vol | String | 24h transaction volume |
| > last | String | Last price |
| > rose | String | Price increase or decrease (24 hours) |
| > time | String | Timestamp |
Response Example
json
{
"code": "0",
"msg": "成功",
"data": [
{
"high": "57879",
"vol": "0",
"last": "57879",
"low": "57879",
"futuresName": "e_btcusdt",
"rose": "0",
"time": "1736764260000"
},
...
]
}