Get Depth of All Futures
Description
Get the depth of all futures
HTTP Request
- GET /fapi/v1/market/allDepth
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/AllDepth'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| >futuresName | String | Futures name |
| >asks | List<String> | The current selling price, the element is price and quantity |
| >> Index 0 | String | Price |
| >> Index 1 | String | Quantity |
| >bids | List<String> | The current buy price, the element is price and quantity |
| >> Index 0 | String | Price |
| >> Index 1 | String | Quantity |
| >time | String | The 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"
},
...
]
}