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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "service": "binance-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/depth": "Order book (symbol=, limit=).",
            "GET /v1/price": "Current price for a symbol (e.g. BTCUSDT).",
            "GET /v1/klines": "Candlesticks (symbol=, interval=, limit=).",
            "GET /v1/ticker": "24-hour ticker stats for a symbol.",
            "GET /v1/trades": "Recent trades (symbol=, limit=).",
            "GET /v1/symbols": "Trading pairs (quote= filter, e.g. USDT).",
            "GET /v1/avg-price": "Current average price for a symbol."
        },
        "description": "Binance crypto exchange market data: current prices, 24-hour ticker stats, candlesticks (klines), the order book (depth), recent trades, average price and trading pairs. Real live data, no key."
    },
    "meta": {
        "timestamp": "2026-06-08T01:20:16.021Z",
        "request_id": "378069da-e736-4608-9e0a-e6aebacf0da6"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}