Ir al contenido
GET /v1/openinterest

Open-interest time series

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/bybit-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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_..."}
)

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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"
…