Skip to content

Get Depth of All Futures

Description

Get the depth of all futures

HTTP Request

  • GET /fapi/v1/market/allDepth

Request Parameters

ParameterTypeRequiredDescription

Request Example

http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/AllDepth'

Response Parameters

ParameterTypeDescription
>futuresNameStringFutures name
>asksList<String>The current selling price, the element is price and quantity
>> Index 0StringPrice
>> Index 1StringQuantity
>bidsList<String>The current buy price, the element is price and quantity
>> Index 0StringPrice
>> Index 1StringQuantity
>timeStringThe current depth of timestamp, ms

Response Example

json
{
    "code": "0",
    "msg": "suc",
    "data": [
        {
            "futuresName": "e_btcusdt",
            "asks": [
                [
                    "57879",
                    "296575"
                ]
            ],
            "bids": [
                [
                    "92769.9",
                    "136950"
                ]
            ],
            "time": "1736763781000"
        },
        ...
    ]
}