get https://open-api-v4.coinglass.com/api/futures/top-long-short-account-ratio/history
This endpoint provides historical data for the long/short account 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_account_long_percent": 73.3, // Long position percentage of top accounts (%)
"top_account_short_percent": 26.7, // Short position percentage of top accounts (%)
"top_account_long_short_ratio": 2.75 // Long/Short ratio of top accounts
},
{
"time": 1741618800000, // Timestamp (in milliseconds)
"top_account_long_percent": 74.18, // Long position percentage of top accounts (%)
"top_account_short_percent": 25.82, // Short position percentage of top accounts (%)
"top_account_long_short_ratio": 2.87 // Long/Short ratio of top accounts
}
]
}