Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/cryptooptions-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "source": "Deribit v2 public API (live)",
        "service": "cryptooptions-api",
        "endpoints": {
            "GET /v1/atm": "Nearest at-the-money call & put (currency=BTC).",
            "GET /v1/meta": "This document.",
            "GET /v1/chain": "Option chain (currency=BTC, type=call|put, expiry=11JUN26, limit).",
            "GET /v1/index": "Spot index price (currency=BTC).",
            "GET /v1/summary": "Options market summary: OI, volume, expiries (currency=BTC).",
            "GET /v1/volatility": "Historical realised volatility + stats (currency=BTC, limit)."
        },
        "currencies": [
            "BTC",
            "ETH",
            "SOL",
            "XRP"
        ],
        "description": "Live crypto options-market data from Deribit (BTC, ETH, SOL, XRP): full option chain with mark price, mark implied volatility, open interest, 24h volume and underlying; nearest at-the-money call/put; spot index price; historical realised volatility; and a market-wide summary. Live, no key. Distinct from spot-price and funding APIs."
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:36.526Z",
        "request_id": "e82b95aa-512f-44f0-b261-3feaa55bba65"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}