/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}