Get Futures Depths
Description
Get the depth data of the futures
HTTP Request
- GET /fapi/v1/market/depth
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| futuresName | String | Yes | Futures name, e.g. "E-BTC-USDT" |
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/depth?futuresName=E-BTC-USDT'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| asks | List<String> | The trading pair of all selling prices, elements are price and quantity |
| > Index 0 | String | Price |
| > Index 1 | String | Quantity |
| bids | List<String> | The trading pair of all buying prices, elements are 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": {
"asks": [
[
"90904.5",
"20"
],
[
"90904.6",
"20"
],
...
],
"bids": [
[
"90904.4",
"12570"
],
[
"90904.3",
"14720"
],
...
],
"time": "1736769543000"
}
}