Naar de inhoud
GET /v1/meta

Venue metadata & endpoint guide

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/blofin-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "bars": [
            "1m",
            "3m",
            "5m",
            "15m",
            "30m",
            "1H",
            "2H",
            "4H",
            "6H",
            "12H",
            "1D",
            "1W"
        ],
        "venue": "BloFin",
        "source": "BloFin public REST (openapi.blofin.com/api/v1), keyless",
        "examples": {
            "ticker": "/v1/ticker?instId=BTC-USDT",
            "trades": "/v1/trades?instId=BTC-USDT&limit=10",
            "candles": "/v1/candles?instId=BTC-USDT&bar=1H&limit=100",
            "funding": "/v1/funding?instId=BTC-USDT",
            "orderbook": "/v1/orderbook?instId=ETH-USDT&size=10",
            "instruments": "/v1/instruments?quote=USDT"
        },
        "endpoints": {
            "/v1/ticker": "24h ticker: last/bid/ask, high/low/open, volume (instId=BTC-USDT)",
            "/v1/trades": "recent public trades (instId, limit)",
            "/v1/candles": "OHLC candles (instId, bar, limit)",
            "/v1/funding": "latest funding rate (instId)",
            "/v1/orderbook": "live order book (instId, size)",
            "/v1/instruments": "list every perpetual instrument with specs & max leverage (filter quote)"
        },
        "instrument": "perpetual futures",
        "cache_ttl_ms": 5000
    },
    "meta": {
        "timestamp": "2026-06-15T11:15:38.138Z",
        "request_id": "c6c00bfa-41c4-405e-a822-a1f2e802342f"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}