/v1/stats
Live perpetual stats for an asset
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/aevo-api/v1/stats" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aevo-api/v1/stats", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aevo-api/v1/stats");
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/aevo-api/v1/stats",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"asset": "ETH",
"venue": "Aevo",
"market": "ETH-PERP",
"source": "Aevo",
"mark_price": 1661.235324,
"volume_24h": 144629.98,
"index_price": 1662.27735,
"open_interest": 1701.128259,
"buy_volume_24h": 112228.6,
"sell_volume_24h": 32401.38,
"funding_daily_avg": -1.0e-6,
"mark_daily_change": 20.753925,
"index_daily_change": 19.735637
},
"meta": {
"timestamp": "2026-06-12T01:42:13.523Z",
"request_id": "489cb2cd-c4ca-4faa-bb9a-c2c12f8e2443"
},
"status": "ok",
"message": "Stats retrieved successfully",
"success": true
}