/v1/oscillators
A pair's RSI, Stochastic & signal
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/cryptorsi-api/v1/oscillators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptorsi-api/v1/oscillators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptorsi-api/v1/oscillators");
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/oscillators",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"coin": "BTC",
"note": "RSI14 is Wilder's Relative Strength Index over 14 periods (>70 overbought, <30 oversold). stoch_k/%d is the 14,3 Stochastic. Signals are mean-reversion cues, most useful in ranges; descriptive, not a forecast.",
"price": 63717.89,
"rsi14": 33.4,
"signal": "weak",
"source": "Binance",
"symbol": "BTCUSDT",
"stoch_d": 25,
"stoch_k": 30.3,
"interval": "1d"
},
"meta": {
"timestamp": "2026-06-12T10:35:39.805Z",
"request_id": "528e3eeb-b5ab-485f-8fcb-9ed558894d69"
},
"status": "ok",
"message": "Oscillators retrieved successfully",
"success": true
}