/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
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_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten 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
}