/v1/screener
Cross-asset board with overbought/oversold lists and RSI ranking
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/rsiscreener-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/rsiscreener-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/rsiscreener-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/rsiscreener-api/v1/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Each market's 14-day RSI (Wilder) and Stochastic %K. RSI above 70 = overbought (stretched, mean-reversion risk); below 30 = oversold (bounce candidate). Sorted hottest (highest RSI) first. Stochastic %K corroborates where price sits in its 14-day range.",
"class": "sector",
"assets": [
{
"key": "health_care",
"class": "sector",
"label": "Health Care",
"price": 154.09,
"rsi_14": 63.1,
"signal": "bullish momentum",
"stochastic_k": 89.1
},
{
"key": "financials",
"class": "sector",
"label": "Financials",
"price": 52.62,
"rsi_14": 59.5,
"signal": "bullish momentum",
"stochastic_k": 91.7
},
{
"key": "real_estate",
"class": "sector",
"label": "Real Estate",
"price": 44.92,
"rsi_14": 58.2,
"signal": "bullish momentum",
"stochastic_k": 84.1
},
{
"key": "technology",
"class": "sector",
"label": "Technology",
"price": 183.21,
"rsi_14": 54.3,
"signal": "neutral",
"stochastic_k": 40
},
{
"key": "industrials",
"class": "sector",
"label": "Industrials",
"price": 175.15,
"rsi_14": 54.1,
"signal": "neutral",
"stochastic_k": 79.8
},
{
"key": "energy",
"class": "sector",
"label": "Energy",
"price": 57.12,
"rsi_14": 45.8,
"signal": "neutral",
"stochastic_k": 31.2
},
{
"key": "utilities",
"class": "sector",
"label": "Utilities",
"price": 44.05,
"rsi_14": 45.1,
"signal": "neutral",
"stochastic_k": 38.1
}
],
"source": "Yahoo Finance",
"scanned": 7,
"oversold": [],
"overbought": []
},
"meta": {
"timestamp": "2026-06-12T10:35:06.987Z",
"request_id": "ff7d1e34-947e-4b74-807e-d3b7e96ed6ff"
},
"status": "ok",
"message": "Screener retrieved successfully",
"success": true
}