/v1/meta
Service metadata
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/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/aevo-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/aevo-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Options are available for BTC, ETH and HYPE; filter by type=call|put and expiry=YYYY-MM-DD. Stats are the perpetual market statistics for any listed asset. Greeks and IV come straight from the venue; expiries are nanosecond timestamps converted to dates.",
"source": "Aevo public API (api.aevo.xyz, live)",
"service": "aevo-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/stats": "Live perpetual stats — OI, index, funding, 24h volume (asset=ETH).",
"GET /v1/options": "Option chain for an asset (asset=ETH, type=call|put, expiry=YYYY-MM-DD optional).",
"GET /v1/expiries": "Available option expiries with strike range (asset=ETH)."
},
"description": "Live on-chain options and perpetuals data from Aevo, a leading decentralized derivatives exchange. The on-chain options view — the full option chain with strikes, expiries, mark prices, implied volatility and the option greeks, plus live perpetual stats. options = the option chain for an asset (calls and puts by strike and expiry, with mark/index price, IV and delta/gamma/theta/vega/rho); stats = live perpetual statistics for an asset (open interest, index and mark price, 24h change, funding, 24h volume); expiries = the available option expiries with their strike range. Live, no key, nothing stored. An on-chain options/perps venue, distinct from the Deribit-based and other derivatives APIs.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T01:42:13.705Z",
"request_id": "8aa82113-7ccf-4191-a5aa-ee7be2d13858"
},
"status": "ok",
"message": "Meta",
"success": true
}