/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/lbank-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lbank-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lbank-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/lbank-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Markets are BASE_QUOTE (e.g. BTC_USDT). change_24h_pct is the 24h change; quote_volume_24h (turnover) is in the quote currency.",
"source": "LBank API (api.lbkex.com/v2, live)",
"service": "lbank-api",
"endpoints": {
"GET /v1/book": "Live order-book depth — best bid/ask and spread (market=BTC_USDT, size=20).",
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one market (market=BTC_USDT or symbol=BTC"e=USDT).",
"GET /v1/markets": "Tradable pairs with precision and minimum order size (quote=USDT optional).",
"GET /v1/tickers": "All spot markets for a quote ranked by 24h quote volume (quote=USDT, limit=50)."
},
"description": "Live spot market data from LBank, a global crypto exchange. The ticker endpoint returns a market's last price, 24h high/low, 24h change and base/quote volume; the tickers endpoint ranks every spot market for a quote currency by 24h quote volume; the markets endpoint lists tradable pairs with precision and minimum order size; the book endpoint returns live order-book depth. Live, no key, nothing stored. A distinct global venue, separate from other exchange feeds.",
"market_count": 1316,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T07:49:12.698Z",
"request_id": "806f9167-e92d-48dc-bf44-a67e92643316"
},
"status": "ok",
"message": "Meta",
"success": true
}