Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/deribit-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "kinds": [
            "future",
            "option",
            "spot",
            "future_combo",
            "option_combo"
        ],
        "exchange": "Deribit",
        "upstream": "https://www.deribit.com/api/v2/public",
        "endpoints": [
            "/v1/index",
            "/v1/ticker",
            "/v1/instruments",
            "/v1/book",
            "/v1/meta"
        ],
        "currencies": [
            "BTC",
            "ETH",
            "USDC",
            "USDT",
            "EURR"
        ],
        "description": "Deribit is the leading crypto options and futures exchange. This API exposes its keyless public market data: index prices, instrument tickers (with greeks & implied vol for options, funding for perpetuals), the active instruments catalog and per-currency order-book summaries.",
        "documentation": "https://api.oanor.com/deribit-api"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:47.788Z",
        "request_id": "5fb449e0-251e-41b3-b866-85704d5ee2d6"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}