get
https://open-api-v4.coinglass.com/api/futures/v2/net-position/history
This endpoint provides the historical net position data for futures, including the net_long_change and net_short_change values.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Cache / Update Frequency: Real time for all the API plans.
This endpoint is available on the following API plans:
| Plans | Hobbyist | Startup | Standard | Professional | Enterprise |
|---|---|---|---|---|---|
| Available | ❌ | ✅ | ✅ | ✅ | ✅ |
Response Data
{
"code": "0",
"data": [
{
"net_long_change": -50.11,
"net_short_change": 0,
"net_long_change_cum": -50.11, // Cumulative value
"net_short_change_cum": 0, // Cumulative value
"net_position_change_cum": -50.11, // Cumulative value
"time": 1767272400000
},
{
"net_long_change": 0,
"net_short_change": -64.88,
"net_long_change_cum": -50.11, // Cumulative value
"net_short_change_cum": -64.88, // Cumulative value
"net_position_change_cum": 14.77, // Cumulative value
"time": 1767276000000
}
]
} 200