get https://open-api-v3.coinglass.com/api/futures/openInterest/exchange-list
This API retrieves open interest data for a coin from exchanges
Response Data
{
"code": "0",
"msg": "success",
"data": [
{
"exchange": "All",
"symbol": "BTC",
"openInterest": 27471518651.5294,
"openInterestAmount": 492269.553,
"openInterestByCoinMargin": 6210860600.04,
"openInterestByStableCoinMargin": 21260658051.49,
"openInterestAmountByCoinMargin": 110748.4703,
"openInterestAmountByStableCoinMargin": 381521.0827,
"openInterestChangePercent5m": -0.29,
"openInterestChangePercent15m": -0.29,
"openInterestChangePercent30m": -0.32,
"openInterestChangePercent1h": 0.27,
"openInterestChangePercent4h": 0.49,
"openInterestChangePercent24h": 2.18
},
...
]
}
Field | Description |
---|---|
exchange | Exchange name eg: Binance |
symbol | Symbol of the coin |
openInterest | Open interest in USD |
openInterestAmount | Open interest in COIN |
openInterestByCoinMargin | Open interest by coin margin in USD |
openInterestByStableCoinMargin | Open interest by stable coin margin in USD |
openInterestAmountByCoinMargin | Open interest by coin margin in COIN |
openInterestAmountByStableCoinMargin | Open interest by stable coin margin in COIN |
openInterestChangePercent15m | Open interest change percentage in the last 15 minutes |
openInterestChangePercent5m | Open interest change percentage in the last 5 minutes |
openInterestChangePercent30m | Open interest change percentage in the last 30 minutes |
openInterestChangePercent1h | Open interest change percentage in the last 1 hours |
openInterestChangePercent4h | Open interest change percentage in the last 4 hours |
openInterestChangePercent24h | Open interest change percentage in the last 24 hours |