/v1/meta
Venue metadata & endpoint guide
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/edgex-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/edgex-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/edgex-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/edgex-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"chain": "StarkEx (Ethereum L2)",
"venue": "edgeX",
"source": "edgeX public REST (pro.edgex.exchange/api/v1/public), keyless",
"examples": {
"depth": "/v1/depth?symbol=ETHUSD&level=15",
"ticker": "/v1/ticker?symbol=BTCUSD",
"funding": "/v1/funding?symbol=BTCUSD",
"contracts": "/v1/contracts?base=BTC"
},
"endpoints": {
"/v1/depth": "live order book (symbol, level=15 or 200)",
"/v1/ticker": "24h ticker for a contract: last/open/high/low, change, volume (symbol=BTCUSD)",
"/v1/funding": "latest funding rate with mark/oracle/index price (symbol=BTCUSD)",
"/v1/contracts": "list every perpetual contract with specs (filter base=BTC)"
},
"instrument": "perpetual futures",
"cache_ttl_ms": 5000
},
"meta": {
"timestamp": "2026-06-15T11:16:00.037Z",
"request_id": "518bc846-3ba8-4055-8760-b36d453dca18"
},
"status": "ok",
"message": "Meta",
"success": true
}