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/bitunix-api

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

Get an API key

Code snippets

curl "https://api.oanor.com/bitunix-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitunix-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitunix-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/bitunix-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "venue": "Bitunix",
        "source": "Bitunix public futures REST (fapi.bitunix.com/api/v1/futures/market), keyless",
        "examples": {
            "ticker": "/v1/ticker?symbol=BTCUSDT",
            "candles": "/v1/candles?symbol=BTCUSDT&interval=1h&limit=100",
            "funding": "/v1/funding?symbol=BTCUSDT",
            "orderbook": "/v1/orderbook?symbol=ETHUSDT&limit=15",
            "instruments": "/v1/instruments?quote=USDT"
        },
        "endpoints": {
            "/v1/ticker": "24h ticker: last/mark price, high/low/open, volume (symbol=BTCUSDT)",
            "/v1/candles": "OHLC candles (symbol, interval, limit)",
            "/v1/funding": "latest funding rate with next funding time (symbol)",
            "/v1/orderbook": "live order book (symbol, limit in 1/5/15/50/max)",
            "/v1/instruments": "list every trading pair with contract specs (filter quote)"
        },
        "intervals": [
            "1m",
            "3m",
            "5m",
            "15m",
            "30m",
            "1h",
            "2h",
            "4h",
            "6h",
            "8h",
            "12h",
            "1d",
            "1w"
        ],
        "instrument": "perpetual futures",
        "cache_ttl_ms": 5000,
        "depth_levels": [
            "1",
            "5",
            "15",
            "50",
            "max"
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:35.154Z",
        "request_id": "d8aa5eb0-66d0-4d96-8f35-f9231e97eb33"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}