Skip to main content

Current Open positions

Description

Retrieve all current open interest in the market.

HTTP Request

GET /v3/market/openInterest

Request Parameters

ParameterRequiredTypeDescription
symbolYesStringA trading pair, consisting of two currencies: base currency and quote currency

Response Parameters

ParameterTypeDescription
sStringA trading pair, consisting of two currencies: base currency and quote currency
oInterestStringCurrent open interest

Request Example

{
"symbol": "BTC_USDT_PERP"
}

Response Example

{
"code": 200,
"data": {
"oInterest": "28.000000000000000000",
"s": "BTC_USDT_PERP"
},
"msg": "Success"
}