Current Open positions
Description
Retrieve all current open interest in the market.
HTTP Request
GET /v3/market/openInterest
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
symbol | Yes | String | A trading pair, consisting of two currencies: base currency and quote currency |
Response Parameters
Parameter | Type | Description |
---|---|---|
s | String | A trading pair, consisting of two currencies: base currency and quote currency |
oInterest | String | Current open interest |
Request Example
{
"symbol": "BTC_USDT_PERP"
}
Response Example
{
"code": 200,
"data": {
"oInterest": "28.000000000000000000",
"s": "BTC_USDT_PERP"
},
"msg": "Success"
}