Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/openinterest-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/openinterest-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/openinterest-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/openinterest-api/v1/meta");
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/openinterest-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "source": "Bybit v5 open-interest + tickers (live)",
        "periods": [
            "5m",
            "15m",
            "30m",
            "1h",
            "4h",
            "1d"
        ],
        "service": "openinterest-api",
        "endpoints": {
            "GET /v1/oi": "Latest open interest + change/trend (symbol=BTCUSDT or base=BTC, period=5m|15m|30m|1h|4h|1d, lookback).",
            "GET /v1/meta": "This document.",
            "GET /v1/history": "Open-interest time-series (symbol, period, limit up to 200).",
            "GET /v1/symbols": "List tradable perpetual symbols (q= filter, limit)."
        },
        "description": "Live crypto open-interest history and trend from Bybit v5 (USDT perpetuals): latest open interest in contracts and USD, change over a window, rising/falling trend, and the full time-series across 5m–1d buckets. Look up by symbol or base coin, pull history, or list symbols. Live, no key. Distinct from funding-rate (a snapshot) and price APIs — this is the open-interest trend.",
        "symbols_live": 582
    },
    "meta": {
        "timestamp": "2026-06-09T03:02:50.963Z",
        "request_id": "7cf3daff-8487-497a-ab17-bf151110d134"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}