Aller au contenu
GET /v1/summary

Per-market summary (mark price, funding, OI, IV & greeks)

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/paradex-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "ask": 65976.5,
        "bid": 65970.5,
        "greeks": {
            "rho": null,
            "vega": 0,
            "delta": 1.00067232211412,
            "gamma": 0,
            "theta": null
        },
        "symbol": "BTC-USD-PERP",
        "mark_iv": null,
        "ask_size": 0.09126,
        "bid_size": 0.10105,
        "mark_price": 65972.54966451,
        "volume_24h": 3153264.475873,
        "funding_rate": 0.00012576446032,
        "total_volume": 133432831651.81215,
        "open_interest": 98.45794,
        "underlying_price": 65928.22466113,
        "last_traded_price": 65970.6,
        "price_change_rate_24h": 0.021382
    },
    "meta": {
        "timestamp": "2026-06-15T11:16:01.570Z",
        "request_id": "c6346d9c-b847-4407-a5ad-96fbf943b5af"
    },
    "status": "ok",
    "message": "Summary retrieved successfully",
    "success": true
}