/v1/meta
Venue metadata & endpoint guide
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/hibachi-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hibachi-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hibachi-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/hibachi-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"venue": "Hibachi",
"source": "Hibachi public data REST (data-api.hibachi.xyz), keyless",
"examples": {
"stats": "/v1/stats?symbol=ETH",
"klines": "/v1/klines?symbol=BTC&interval=1h",
"prices": "/v1/prices?symbol=BTC",
"trades": "/v1/trades?symbol=BTC&limit=10",
"markets": "/v1/markets",
"orderbook": "/v1/orderbook?symbol=BTC&depth=10"
},
"endpoints": {
"/v1/stats": "24h high, low and volume (symbol=BTC)",
"/v1/klines": "OHLC candlesticks (symbol, interval)",
"/v1/prices": "bid/ask, mark price, spot price and estimated funding rate (symbol=BTC)",
"/v1/trades": "recent public trades (symbol, limit)",
"/v1/markets": "list every perpetual contract with specs",
"/v1/orderbook": "live order book (symbol, depth)"
},
"intervals": [
"1m",
"5m",
"15m",
"30m",
"1h",
"4h",
"1d",
"1w"
],
"instrument": "perpetual futures",
"cache_ttl_ms": 5000
},
"meta": {
"timestamp": "2026-06-15T11:15:55.013Z",
"request_id": "3ecee367-00f0-426d-bebf-9f1dc3f9f5a5"
},
"status": "ok",
"message": "Meta",
"success": true
}