/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/openinterest-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/openinterest-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/openinterest-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/openinterest-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "Bybit v5 open-interest + tickers (live)",
"periods": [
"5m",
"15m",
"30m",
"1h",
"4h",
"1d"
],
"service": "openinterest-api",
"endpoints": {
"GET /v1/oi": "Latest open interest + change/trend (symbol=BTCUSDT or base=BTC, period=5m|15m|30m|1h|4h|1d, lookback).",
"GET /v1/meta": "This document.",
"GET /v1/history": "Open-interest time-series (symbol, period, limit up to 200).",
"GET /v1/symbols": "List tradable perpetual symbols (q= filter, limit)."
},
"description": "Live crypto open-interest history and trend from Bybit v5 (USDT perpetuals): latest open interest in contracts and USD, change over a window, rising/falling trend, and the full time-series across 5m–1d buckets. Look up by symbol or base coin, pull history, or list symbols. Live, no key. Distinct from funding-rate (a snapshot) and price APIs — this is the open-interest trend.",
"symbols_live": 582
},
"meta": {
"timestamp": "2026-06-09T03:02:50.963Z",
"request_id": "7cf3daff-8487-497a-ab17-bf151110d134"
},
"status": "ok",
"message": "Meta",
"success": true
}