get
https://open-api-v4.coinglass.com/api/futures_spot_volume_ratio
This endpoint provides time-series data for the futures-to-spot trading volume ratio, including timestamp, volume ratio, futures trading volume (USD), and spot trading volume (USD).
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": [
{
"time": 1766588040000, // timestamp (ms)
"futures_spot_vol_ratio": 16.9974, // futures / spot volume ratio
"futures_vol_usd": 59900899.685, // futures volume (USD)
"spot_vol_usd": 3524120.4165 // spot volume (USD)
},
{
"time": 1766588100000, // timestamp (ms)
"futures_spot_vol_ratio": 9.0887, // futures / spot volume ratio
"futures_vol_usd": 24469968.832, // futures volume (USD)
"spot_vol_usd": 2692346.1708 // spot volume (USD)
}
]
}