get https://open-api-v4.coinglass.com/api/futures/price/history
This endpoint provides historical open, high, low, and close (OHLC) price data for cryptocurrencies over specified timeframes.
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 | ✅ | ✅ | ✅ | ✅ | ✅ |
interval Limit | >=4h | >=30m | No Limit | No Limit | No Limit |
Response Data
{
"code": "0",
"data": [
{
"time": 1745366400000,
"open": "93404.9",
"high": "93864.9",
"low": "92730",
"close": "92858.2",
"volume_usd": "1166471854.3026"
},
{
"time": 1745370000000,
"open": "92858.2",
"high": "93464.8",
"low": "92552",
"close": "92603.8",
"volume_usd": "871812560.3437"
},
...
]
}