Skip to content

Get Futures Depths

Description

Get the depth data of the futures

HTTP Request

  • GET /fapi/v1/market/depth

Request Parameters

ParameterTypeRequiredDescription
futuresNameStringYesFutures name, e.g. "E-BTC-USDT"

Request Example

http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/depth?futuresName=E-BTC-USDT'

Response Parameters

ParameterTypeDescription
asksList<String>The trading pair of all selling prices, elements are price and quantity
> Index 0StringPrice
> Index 1StringQuantity
bidsList<String>The trading pair of all buying prices, elements are price and quantity
> Index 0StringPrice
> Index 1StringQuantity
timeStringThe current depth of timestamp, ms

Response Example

json
{
    "code": "0",
    "msg": "suc",
    "data": {
        "asks": [
            [
                "90904.5",
                "20"
            ],
            [
                "90904.6",
                "20"
            ],
            ...
        ],
        "bids": [
            [
                "90904.4",
                "12570"
            ],
            [
                "90904.3",
                "14720"
            ],
            ...
        ],
        "time": "1736769543000"
    }
}