/v1/meta
Service metadata
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/fiftytwoweek-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fiftytwoweek-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fiftytwoweek-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/fiftytwoweek-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "screener class= filters by asset class. asset= is a supported key (see /v1/universe). The 52-week high/low are the max/min daily close over the year. Read fresh per call, nothing cached.",
"source": "Yahoo Finance daily closes (1y range) across a multi-asset universe, live",
"classes": [
"equities",
"bonds",
"commodities",
"fx",
"crypto",
"stocks"
],
"service": "fiftytwoweek-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/asset": "One instrument's 52-week range detail (asset=gold).",
"GET /v1/screener": "Multi-asset universe ranked by 52-week range position, with new-high/low lists (class=commodities optional).",
"GET /v1/universe": "The supported instruments."
},
"description": "52-week high/low range screener — where every major asset sits in its one-year range, across stocks, indices, bonds, commodities, FX and crypto, live from Yahoo Finance (no key, nothing stored). screener ranks the whole multi-asset universe by range position (0-100) with the near-highs, near-lows and fresh new-high/new-low lists. asset drills into one instrument. universe lists what is covered. The 52-week-range / new-highs-new-lows momentum cut across asset classes — distinct from the crypto Donchian-breakout screener and the single-quote, index, commodity and stock price feeds.",
"universe_size": 30,
"assets_scanned": 30,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T10:35:18.785Z",
"request_id": "0914b149-438f-4497-a780-293008fc837b"
},
"status": "ok",
"message": "Meta",
"success": true
}