get https://open-api-v4.coinglass.com/api/futures/top-long-short-position-ratio/history
This endpoint provides historical data for the long/short position ratio of top traders.
This endpoint is available on the following API plans:
Plans | Hobbyist | Startup | Standard | Professional | Enterprise |
---|---|---|---|---|---|
Available | ✅ | ✅ | ✅ | ✅ | ✅ |
interval Limit | >=4h | >=30m | No Limit | No Limit | No Limit |
Response Data
{
"code": "0",
"msg": "success",
"data": [
{
"time": 1741615200000, // Timestamp (in milliseconds)
"top_position_long_percent": 64.99, // Long position percentage of top positions (%)
"top_position_short_percent": 35.01, // Short position percentage of top positions (%)
"top_position_long_short_ratio": 1.86 // Long/Short ratio of top positions
},
{
"time": 1741618800000, // Timestamp (in milliseconds)
"top_position_long_percent": 64.99, // Long position percentage of top positions (%)
"top_position_short_percent": 35.01, // Short position percentage of top positions (%)
"top_position_long_short_ratio": 1.86 // Long/Short ratio of top positions
}
]
}