/v1/summary
Per-market summary (mark price, funding, OI, IV & greeks)
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}