Naar de inhoud
GET /v1/rsi

Wilder Relative Strength Index

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/technicals-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}