/v1/meta
Service metadata
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}