/v1/openinterest
Open-interest time series
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
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_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"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"
…