Naar de inhoud
GET /v1/meta

Spec

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/derivatives-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}