Vai al contenuto
GET /v1/exchange

One venue full profile

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/derivativesexchanges-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}