Vai al contenuto
GET /v1/ticker

Full ticker for an instrument (price, OI, funding, greeks, IV)

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/deribit-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "state": "open",
        "stats": {
            "low": 63660,
            "high": 65984,
            "volume": 4811.36496026,
            "volume_usd": 313868270,
            "price_change": 2.1645,
            "volume_notional": 313868270
        },
        "timestamp": 1781522087532,
        "funding_8h": 6.0e-8,
        "last_price": 65912,
        "mark_price": 65908.18,
        "index_price": 65914.31,
        "open_interest": 987637640,
        "best_ask_price": 65911.5,
        "best_bid_price": 65911,
        "current_funding": 0,
        "instrument_name": "BTC-PERPETUAL",
        "settlement_price": 65637.35
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:47.556Z",
        "request_id": "aa88d56d-2963-4352-856f-8d94185818cc"
    },
    "status": "ok",
    "message": "Ticker retrieved successfully",
    "success": true
}