/v1/meta
Venue metadata & endpoint guide
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/blofin-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/blofin-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/blofin-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/blofin-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"bars": [
"1m",
"3m",
"5m",
"15m",
"30m",
"1H",
"2H",
"4H",
"6H",
"12H",
"1D",
"1W"
],
"venue": "BloFin",
"source": "BloFin public REST (openapi.blofin.com/api/v1), keyless",
"examples": {
"ticker": "/v1/ticker?instId=BTC-USDT",
"trades": "/v1/trades?instId=BTC-USDT&limit=10",
"candles": "/v1/candles?instId=BTC-USDT&bar=1H&limit=100",
"funding": "/v1/funding?instId=BTC-USDT",
"orderbook": "/v1/orderbook?instId=ETH-USDT&size=10",
"instruments": "/v1/instruments?quote=USDT"
},
"endpoints": {
"/v1/ticker": "24h ticker: last/bid/ask, high/low/open, volume (instId=BTC-USDT)",
"/v1/trades": "recent public trades (instId, limit)",
"/v1/candles": "OHLC candles (instId, bar, limit)",
"/v1/funding": "latest funding rate (instId)",
"/v1/orderbook": "live order book (instId, size)",
"/v1/instruments": "list every perpetual instrument with specs & max leverage (filter quote)"
},
"instrument": "perpetual futures",
"cache_ttl_ms": 5000
},
"meta": {
"timestamp": "2026-06-15T11:15:38.138Z",
"request_id": "c6c00bfa-41c4-405e-a822-a1f2e802342f"
},
"status": "ok",
"message": "Meta",
"success": true
}