Get Ticker
Description
Get ticker data of the given futures name
HTTP Request
- GET /fapi/v1/market/ticker
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| futuresName | String | Yes | futures name, e.g. "E-BTC-USDT" |
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/ticker?futuresName=E-BTC-USDT'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| high | String | 24h high |
| low | String | 24h low |
| vol | String | 24h transaction volume |
| last | String | Last price |
| buy | String | Current buying price |
| sell | String | Current selling 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",
"buy": "92769.9",
"sell": "57879",
"rose": "0",
"time": "1736763900000"
}
}