/v1/openinterest
Open-interest time series
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/bybit-api/v1/openinterest" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bybit-api/v1/openinterest", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bybit-api/v1/openinterest");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/bybit-api/v1/openinterest",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 30,
"source": "Bybit",
"symbol": "BTCUSDT",
"category": "linear",
"interval": "1h",
"open_interest": [
{
"time": "2026-06-09T20:00:00.000Z",
"open_interest": 55528.886
},
{
"time": "2026-06-09T19:00:00.000Z",
"open_interest": 55859.079
},
{
"time": "2026-06-09T18:00:00.000Z",
"open_interest": 56024.942
},
{
"time": "2026-06-09T17:00:00.000Z",
"open_interest": 55745.054
},
{
"time": "2026-06-09T16:00:00.000Z",
"open_interest": 55697.862
},
{
"time": "2026-06-09T15:00:00.000Z",
"open_interest": 55111.407
},
{
"time": "2026-06-09T14:00:00.000Z",
"open_interest": 55495.514
},
{
"time": "2026-06-09T13:00:00.000Z",
"open_interest": 54809.996
},
{
"time": "2026-06-09T12:00:00.000Z",
"open_interest": 54542.756
},
{
"time": "2026-06-09T11:00:00.000Z",
"open_interest": 54149.857
},
{
"time": "2026-06-09T10:00:00.000Z",
"open_interest": 54129.991
},
{
"time": "2026-06-09T09:00:00.000Z",
"open_interest": 54396.618
},
{
"time": "2026-06-09T08:00:00.000Z",
"open_interest": 53748.927
},
{
"time": "2026-06-09T07:00:00.000Z",
"open_interest": 54492.323
},
{
"time": "2026-06-09T06:00:00.000Z",
"open_interest": 54658.653
},
{
"time": "2026-06-09T05:00:00.000Z",
"open_interest": 54344.415
},
{
"time": "2026-06-09T04:00:00.000Z",
"open_interest": 54309.446
},
{
"time": "2026-06-09T03:00:00.000Z",
"open_interest": 54894.318
},
{
"time": "2026-06-09T02:00:00.000Z",
"open_interest": 55103.212
},
{
"time": "2026-06-09T01:00:00.000Z",
"open_interest": 55028.442
},
{
"time": "2026-06-09T00:00:00.000Z",
"open_interest": 54840.348
},
{
"time": "2026-06-08T23:00:00.000Z",
"open_interest": 55155.54
},
{
"time": "2026-06-08T22:00:00.000Z",
"open_interest"
…