Zum Inhalt springen
GET /v1/meta

Spec

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/kraken-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "source": "Kraken public REST API (live)",
        "service": "kraken-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/ohlc": "Candlestick history (pair=BTCUSD, interval in minutes: 1,5,15,30,60,240,1440,10080,21600).",
            "GET /v1/ticker": "Live ticker for one or many pairs (pair=BTCUSD,ETHUSD — up to 8).",
            "GET /v1/orderbook": "Live order book to a depth (pair=BTCUSD, depth up to 100)."
        },
        "description": "Live market data from the Kraken cryptocurrency exchange via its public API: the ticker for one or many pairs (last price, best bid/ask and spread, 24h volume/VWAP/high/low/open, change since open and 24h trade count); the live order book to any depth (bid/ask levels with sizes, best bid/ask, spread); and OHLC candlestick history at intervals from 1 minute to 2 weeks. Pairs may be given the friendly way (BTCUSD, ETHEUR). Live, no key, nothing stored. Distinct from aggregate-price and other single-exchange APIs — this is Kraken's own ticker, order book and candles.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T11:39:27.653Z",
        "request_id": "092b3e7e-236b-4bb6-8c85-db233a927a1e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}