/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"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
}