Zum Inhalt springen
GET /v1/meta

Venue metadata & endpoint guide

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/edgex-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/edgex-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/edgex-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/edgex-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/edgex-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "chain": "StarkEx (Ethereum L2)",
        "venue": "edgeX",
        "source": "edgeX public REST (pro.edgex.exchange/api/v1/public), keyless",
        "examples": {
            "depth": "/v1/depth?symbol=ETHUSD&level=15",
            "ticker": "/v1/ticker?symbol=BTCUSD",
            "funding": "/v1/funding?symbol=BTCUSD",
            "contracts": "/v1/contracts?base=BTC"
        },
        "endpoints": {
            "/v1/depth": "live order book (symbol, level=15 or 200)",
            "/v1/ticker": "24h ticker for a contract: last/open/high/low, change, volume (symbol=BTCUSD)",
            "/v1/funding": "latest funding rate with mark/oracle/index price (symbol=BTCUSD)",
            "/v1/contracts": "list every perpetual contract with specs (filter base=BTC)"
        },
        "instrument": "perpetual futures",
        "cache_ttl_ms": 5000
    },
    "meta": {
        "timestamp": "2026-06-15T11:16:00.037Z",
        "request_id": "518bc846-3ba8-4055-8760-b36d453dca18"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}