Zum Inhalt springen
GET /v1/screener

Scan a basket for overbought & oversold coins

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/cryptorsi-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/cryptorsi-api/v1/screener" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptorsi-api/v1/screener", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptorsi-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/cryptorsi-api/v1/screener",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "overbought coins (RSI>=70) are stretched and may pull back; oversold (RSI<=30) are washed out and may bounce. Ranked by how extreme. Default basket is the liquid majors; pass coins=BTC,ETH,... to customise.",
        "source": "Binance",
        "scanned": 5,
        "interval": "1d",
        "oversold": [],
        "overbought": [],
        "oversold_count": 0,
        "overbought_count": 0
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:40.203Z",
        "request_id": "7a1d8f38-6421-4eab-8536-6e526f0582a7"
    },
    "status": "ok",
    "message": "Screener retrieved successfully",
    "success": true
}