Get Ticker (Contract Market Data)
Request Example
curl "https://api.mexc.com/api/v1/contract/ticker"
Response Example
{
"success": true,
"code": 0,
"data": {
"contractId": 10,
"symbol": "BTC_USDT",
"lastPrice": 109167.1,
"bid1": 109167,
"ask1": 109167.1,
"volume24": 954830625,
"amount24": 10374579341.00211,
"holdVol": 381485808,
"lower24Price": 106226,
"high24Price": 111553.8,
"riseFallRate": 0.014,
"riseFallValue": 1510.6,
"indexPrice": 109235,
"fairPrice": 109168.9,
"fundingRate": 0,
"maxBidPrice": 120158.5,
"minAskPrice": 98311.5,
"timestamp": 1761883095759,
"riseFallRates": {
"zone": "UTC+8",
"r": 0.014,
"v": 1510.6,
"r7": -0.0061,
"r30": -0.0343,
"r90": -0.0532,
"r180": 0.1329,
"r365": 0.5149
},
"riseFallRatesOfTimezone": [
-0.0157,
0.0083,
0.014
]
}
}
- GET
/api/v1/contract/ticker
Request Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | false | Contract symbol |
Response Parameters:
| Parameter | Type | Description |
|---|---|---|
| symbol | string | Contract |
| lastPrice | decimal | Last price |
| bid1 | decimal | Best bid |
| ask1 | decimal | Best ask |
| volume24 | decimal | 24h volume (in contracts) |
| amount24 | decimal | 24h turnover |
| holdVol | decimal | Open interest (contracts) |
| lower24Price | decimal | 24h low |
| high24Price | decimal | 24h high |
| riseFallRate | decimal | Change rate |
| riseFallValue | decimal | Change amount |
| indexPrice | decimal | Index price |
| fairPrice | decimal | Fair price |
| fundingRate | decimal | Funding rate |
| maxBidPrice | decimal | Maximum bid price |
| minAskPrice | decimal | Minimum ask price |
| timestamp | long | Trade time |