Get Futures Active Buy Sell Volume Data
Rate limit: 1 req/s (IP)
Description
Get Futures Active Buy Sell Volume Data
HTTP Request
- GET /api/v2/mix/market/taker-buy-sell
Request Example
curl "https://api.bitget.com/api/v2/mix/market/taker-buy-sell?symbol=BTCUSDT"
Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
symbol | String | Yes | Trading pair |
period | String | No | - default:5m, support:5m 15m 30m 1h 2h 4h 6h 12h 1d |
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1656589586807,
"data": [
{
"buyVolume": "0.01",
"sellVolume": "0.12",
"ts": "1714020600000"
},
{
"buyVolume": "0.01",
"sellVolume": "0.12",
"ts": "1714020600000"
}
]
}
Response Parameters
Parameter | Type | Description |
---|---|---|
sellVolume | String | Sell Volume |
buyVolume | String | Buy volume |
ts | String | Millseconds time |