/v1/meta
Venue metadata & endpoint guide
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/bitunix-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitunix-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitunix-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/bitunix-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"venue": "Bitunix",
"source": "Bitunix public futures REST (fapi.bitunix.com/api/v1/futures/market), keyless",
"examples": {
"ticker": "/v1/ticker?symbol=BTCUSDT",
"candles": "/v1/candles?symbol=BTCUSDT&interval=1h&limit=100",
"funding": "/v1/funding?symbol=BTCUSDT",
"orderbook": "/v1/orderbook?symbol=ETHUSDT&limit=15",
"instruments": "/v1/instruments?quote=USDT"
},
"endpoints": {
"/v1/ticker": "24h ticker: last/mark price, high/low/open, volume (symbol=BTCUSDT)",
"/v1/candles": "OHLC candles (symbol, interval, limit)",
"/v1/funding": "latest funding rate with next funding time (symbol)",
"/v1/orderbook": "live order book (symbol, limit in 1/5/15/50/max)",
"/v1/instruments": "list every trading pair with contract specs (filter quote)"
},
"intervals": [
"1m",
"3m",
"5m",
"15m",
"30m",
"1h",
"2h",
"4h",
"6h",
"8h",
"12h",
"1d",
"1w"
],
"instrument": "perpetual futures",
"cache_ttl_ms": 5000,
"depth_levels": [
"1",
"5",
"15",
"50",
"max"
]
},
"meta": {
"timestamp": "2026-06-15T11:15:35.154Z",
"request_id": "d8aa5eb0-66d0-4d96-8f35-f9231e97eb33"
},
"status": "ok",
"message": "Meta",
"success": true
}