/v1/rsi
Wilder Relative Strength Index
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/technicals-api/v1/rsi" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/technicals-api/v1/rsi", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/technicals-api/v1/rsi");
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/technicals-api/v1/rsi",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 26,
"value": 46.0368,
"period": 14,
"series": [
50,
45.8118,
42.6796,
40.5639,
39.4792,
39.5786,
41.6436,
45.4109,
50.3368,
55.689,
60.8782,
65.5389,
69.4786,
72.6784,
75.1756,
77.045,
78.3288,
79.0643,
79.25,
77.7034,
73.9722,
68.7022,
62.6039,
56.4873,
50.8826,
46.0368
],
"signal": "neutral",
"source": "TECHNICALS",
"indicator": "rsi"
},
"meta": {
"timestamp": "2026-06-10T22:56:27.881Z",
"request_id": "bd492d73-bebe-411e-8dcd-b9c8e6719265"
},
"status": "ok",
"message": "RSI computed",
"success": true
}