Naar de inhoud
GET /v1/meta

Endpoints, intervals & source

Probeer het live

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

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

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

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

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

{
    "data": {
        "sample": {
            "sol_usdc_last": 67.45
        },
        "source": "Backpack Exchange public market API (api.backpack.exchange/api/v1), keyless",
        "service": "backpack-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/klines": "OHLC candlesticks (symbol, interval, limit).",
            "GET /v1/ticker": "24h ticker for one market (symbol) or all markets.",
            "GET /v1/trades": "Recent trades (symbol, limit).",
            "GET /v1/funding": "Perp mark price, funding rate and open interest (symbol).",
            "GET /v1/markets": "Every spot and perp market (optional type=SPOT|PERP).",
            "GET /v1/orderbook": "Order-book depth for one market (symbol, depth)."
        },
        "description": "Live spot and perpetual market data from Backpack, the Solana-native crypto exchange, with no key: every listed market, the 24h ticker for any pair, order-book depth, OHLC candlesticks, recent trades and — for perpetuals — mark price, index price, funding rate and open interest. The exchange-data / live-ticker / derivatives layer for trading bots, dashboards and analytics. Distinct from the Binance, bitFlyer and XT exchange readers. Live, short cache only.",
        "kline_intervals": [
            "1m",
            "3m",
            "5m",
            "15m",
            "30m",
            "1h",
            "2h",
            "4h",
            "6h",
            "8h",
            "12h",
            "1d",
            "3d",
            "1w",
            "1month"
        ],
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:36.007Z",
        "request_id": "68daffed-7f0a-472a-9b6f-cbcbe0f50084"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}