Zum Inhalt springen
GET /v1/exchange

One venue full profile

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "id": "binance_futures",
        "url": "https://www.binance.com/",
        "name": "Binance (Futures)",
        "source": "CoinGecko",
        "country": "Cayman Islands",
        "description": null,
        "futures_pairs": 108,
        "volume_24h_btc": 965098.28,
        "perpetual_pairs": 593,
        "year_established": 2019,
        "open_interest_btc": 346539.95
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:24.199Z",
        "request_id": "cd2a699a-85f2-4586-bec4-aa79fe655f5f"
    },
    "status": "ok",
    "message": "Derivatives exchange retrieved successfully",
    "success": true
}