get https://open-api-v4.coinglass.com/api/coinbase-premium-index
This endpoint provides the Coinbase Bitcoin Premium Index, which indicates the price difference between Bitcoin on Coinbase Pro and Binance.
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",
"msg": "success",
"data": [
{
"time": 1658880000, // Timestamp (in seconds)
"premium": 5.55, // Premium amount (USD)
"premium_rate": 0.0261 // Premium rate (e.g., 0.0261 = 2.61%)
},
{
"time": 1658880000, // Timestamp (in seconds)
"premium": 5.55, // Premium amount (USD)
"premium_rate": 0.0261 // Premium rate (e.g., 0.0261 = 2.61%)
}
]
}