Skip to main content

Get Contract Order Book Depth

Request Example

curl "https://api.mexc.com/api/v1/contract/depth/BTC_USDT"

Response Example

{
"success": true,
"code": 0,
"data": {
"asks": [
[
108779.2,
3240,
1
],
[
108779.3,
3884,
1
]
],
"bids": [
[
108779.1,
3240,
1
],
[
108779,
3884,
1
]
],
"version": 28111438870,
"timestamp": 1761879567135
}
}
  • GET /api/v1/contract/depth/{symbol}

Request Parameters:

ParameterTypeRequiredDescription
symbolstringtrueContract symbol
limitintfalseNumber of rows

Response Parameters:

ParameterTypeDescription
asksList<Numeric[]>Ask depth
bidsList<Numeric[]>Bid depth
versionlongVersion
timestamplongSystem timestamp

Note: [411.8, 10, 1] 411.8 is price,10 is the order numbers of the contract ,1 is the order quantity.