/v1/screener
Multi-asset universe ranked by 52-week range position with new-high/low lists
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/fiftytwoweek-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fiftytwoweek-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fiftytwoweek-api/v1/screener");
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/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Every instrument placed in its 52-week range as a 0-100 position (0 = on its low, 100 = at its high), ranked high to low. near_highs are breaking out / momentum leaders; near_lows are breaking down. new_highs/new_lows list fresh 52-week extremes. class filters to equities, bonds, commodities, fx, crypto or stocks.",
"class": "commodities",
"assets": [
{
"key": "copper",
"class": "commodities",
"label": "Copper",
"price": 38.94,
"status": "upper range",
"symbol": "CPER",
"week52_low": 27.21,
"week52_high": 40.6,
"pct_from_low": 43.11,
"pct_from_high": -4.09,
"range_position": 87.6
},
{
"key": "oil",
"class": "commodities",
"label": "Crude Oil",
"price": 128.83,
"status": "upper range",
"symbol": "USO",
"week52_low": 66.17,
"week52_high": 152.96,
"pct_from_low": 94.7,
"pct_from_high": -15.78,
"range_position": 72.2
},
{
"key": "broad_commodities",
"class": "commodities",
"label": "Broad Commodities",
"price": 28.85,
"status": "upper range",
"symbol": "DBC",
"week52_low": 21.62,
"week52_high": 31.69,
"pct_from_low": 33.44,
"pct_from_high": -8.96,
"range_position": 71.8
},
{
"key": "gold",
"class": "commodities",
"label": "Gold",
"price": 386.32,
"status": "mid range",
"symbol": "GLD",
"week52_low": 300.96,
"week52_high": 495.9,
"pct_from_low": 28.36,
"pct_from_high": -22.1,
"range_position": 43.8
},
{
"key": "silver",
"class": "commodities",
"label": "Silver",
"price": 60.82,
"status": "lower range",
"symbol": "SLV",
"week52_low": 32.61,
"week52_high": 105.6,
"pct_from_low": 86.51,
"pct_from_high": -42.41,
"range_position": 38.6
},
{
"key": "natural_gas",
"class": "commodities",
"label": "Natural Gas",
"price": 11.16,
"status": "lower range",
"symbol": "UNG",
"week52_low": 10.15,
"week52_high": 18.08,
"pct_from_low": 9.95,
"pct_from_high": -38.27,
…