/v1/meta
Market metadata & endpoint guide
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/lithuania-stock-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lithuania-stock-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lithuania-stock-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/lithuania-stock-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"market": "Nasdaq Vilnius (OMX Vilnius)",
"source": "TradingView screener (lithuania market), keyless",
"country": "Lithuania",
"indices": [
"OMXVGI",
"OMXV"
],
"currency": "EUR",
"examples": {
"index": "/v1/index",
"quote": "/v1/quote?symbols=IGN1L,TEL1L,SAB1L",
"screener": "/v1/screener?sort=change&order=desc&limit=10"
},
"endpoints": {
"/v1/index": "Vilnius index (OMX Vilnius Gross = OMXVGI)",
"/v1/quote": "live quote for one or more Vilnius stocks by ticker (symbols=IGN1L,TEL1L,SAB1L)",
"/v1/screener": "rank local primary listings by market_cap | change | volume (sort, order, limit)"
},
"cache_ttl_ms": 20000
},
"meta": {
"timestamp": "2026-06-15T11:16:08.216Z",
"request_id": "f382c995-5445-4d95-807f-0106068069d1"
},
"status": "ok",
"message": "Meta",
"success": true
}