/v1/meta
Spec
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/derivatives-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/derivatives-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/derivatives-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/derivatives-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "CoinGecko public derivatives API (live)",
"service": "derivatives-api",
"endpoints": {
"GET /v1/top": "Largest contracts market-wide (by=open_interest|volume, limit up to 50).",
"GET /v1/meta": "This document.",
"GET /v1/contract": "A symbol across every exchange (symbol=BTCUSDT): price, funding, basis, OI, volume per venue.",
"GET /v1/exchanges": "Derivatives-exchange league table by open interest (limit up to 100)."
},
"description": "Live cross-exchange perpetual-futures market data from CoinGecko: a symbol's contract on every exchange that lists it (mark price, funding rate, basis, open interest, 24h volume side by side); the derivatives-exchange league table ranked by open interest with volumes and pair counts; and the largest contracts market-wide by open interest or volume. Live, no key, nothing stored. Distinct from single-exchange funding and open-interest APIs — this is the whole perpetual-futures market across exchanges.",
"upstream_status": null
},
"meta": {
"timestamp": "2026-06-09T11:39:15.292Z",
"request_id": "efa2a9bf-a542-4b7b-97f5-16be18584755"
},
"status": "ok",
"message": "Meta",
"success": true
}