Skip to content
GET /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.

Custom headers (optional)
api.oanor.com/apex-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/apex-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apex-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apex-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/apex-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": "Symbols accepted as BTCUSDT or BTC-USDT; quote endpoints use the dashless form, funding history the dashed form — resolved automatically.",
        "venue": "ApeX Omni",
        "source": "ApeX Omni public REST (omni.apex.exchange/api/v3), keyless",
        "examples": {
            "depth": "/v1/depth?symbol=ETHUSDT&limit=10",
            "ticker": "/v1/ticker?symbol=BTCUSDT",
            "trades": "/v1/trades?symbol=BTCUSDT&limit=10",
            "funding": "/v1/funding?symbol=BTCUSDT&limit=5",
            "symbols": "/v1/symbols?base=BTC"
        },
        "endpoints": {
            "/v1/depth": "live order book (symbol, limit)",
            "/v1/ticker": "24h ticker: last/index price, high/low, change, volume, funding rate (symbol=BTCUSDT)",
            "/v1/trades": "recent public trades (symbol, limit)",
            "/v1/funding": "funding-rate history (symbol, limit)",
            "/v1/symbols": "list every perpetual contract with specs (filter base=BTC)"
        },
        "instrument": "perpetual futures",
        "cache_ttl_ms": 5000
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:58.951Z",
        "request_id": "11d7f2b4-6911-488c-be67-507a0714fd0f"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}