get https://open-api-v3.coinglass.com/api/futures/takerBuySellVolume/exchange-list
This API retrieves the long/short ratio of aggregated taker buy/sell volumes for exchanges.
Response Data
{
"code": "0",
"msg": "success",
"data":
{
"symbol": "BTC",
"buyRatio": 50.44,
"sellRatio": 49.56,
"buyVolUsd": 2294704859.9894,
"sellVolUsd": 2254915922.0706,
"list":
[
{
"exchange": "Binance",
"buyRatio": 50.98,
"sellRatio": 49.02,
"buyVolUsd": 806792105.6662,
"sellVolUsd": 775926431.2517
},
...
]
}
}
Field | Description |
---|---|
symbol | Symbol of coin eg. BTC |
buyRatio | Buy ratio |
sellRatio | Sell ratio |
buyVolUsd | Buy volume (USD) |
sellVolUsd | Sell volume (USD) |
list[] | Exchange details |
list.exchange | Exchange name |
list.buyRatio | Exchange buy ratio |
list.sellRatio | Exchange sell ratio |
list.buyVolUsd | Exchange buy volume (USD) |
list.sellVolUsd | Exchange sell volume (USD) |