/v1/screener
Cross-asset board with overbought/oversold CCI extremes, ranked
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/cci-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cci-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cci-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/cci-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 20-period Commodity Channel Index from its typical price. CCI above +100 = a strong up-move / overbought; below -100 = a strong down-move / oversold; between is the normal band. Sorted highest CCI first. A different oscillator from RSI — CCI is unbounded and measures deviation from the mean in volatility units.",
"class": "sector",
"assets": [
{
"key": "financials",
"class": "sector",
"label": "Financials",
"cci_20": 128.5,
"signal": "overbought (strong up-move)"
},
{
"key": "health_care",
"class": "sector",
"label": "Health Care",
"cci_20": 121.1,
"signal": "overbought (strong up-move)"
},
{
"key": "real_estate",
"class": "sector",
"label": "Real Estate",
"cci_20": 111.9,
"signal": "overbought (strong up-move)"
},
{
"key": "industrials",
"class": "sector",
"label": "Industrials",
"cci_20": 45.8,
"signal": "bullish"
},
{
"key": "utilities",
"class": "sector",
"label": "Utilities",
"cci_20": -18.3,
"signal": "bearish"
},
{
"key": "technology",
"class": "sector",
"label": "Technology",
"cci_20": -27.9,
"signal": "bearish"
},
{
"key": "energy",
"class": "sector",
"label": "Energy",
"cci_20": -50.5,
"signal": "bearish"
}
],
"source": "Yahoo Finance",
"scanned": 7,
"oversold": [],
"overbought": [
{
"key": "financials",
"label": "Financials",
"cci_20": 128.5
},
{
"key": "health_care",
"label": "Health Care",
"cci_20": 121.1
},
{
"key": "real_estate",
"label": "Real Estate",
"cci_20": 111.9
}
]
},
"meta": {
"timestamp": "2026-06-12T10:34:59.427Z",
"request_id": "7ac7e1b7-6e58-4b5d-9349-ebcea0273bd7"
},
"status": "ok",
"message": "Screener retrieved successfully",
"success": true
}