/v1/screener
Scan a basket for overbought & oversold coins
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}