/v1/meta
Spec
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}