Relative Strength Index (RSI)
RSI measures momentum on a 0–100 scale, commonly with a window such as 14 periods.
For query parameters, response envelope, expand_underlying, request_id, and pagination (next_url / page), see SMA. Use window for the RSI lookback length.
Example Endpoint
/v1/options/indicators/rsi/O:NFLX260402C00075000/?timespan=day&window=14&limit=10Endpoint
GET /v1/options/indicators/rsi/{ticker}
Example request
curl \
"https://api.cutemarkets.com/v1/options/indicators/rsi/O:NFLX260402C00075000/?timespan=day&window=14&limit=10" \
-H "Authorization: Bearer YOUR_API_KEY"
Sample response
{
"results": {
"values": [
{ "timestamp": 1775016000000, "value": 68.48397362973498 },
{ "timestamp": 1774929600000, "value": 66.67445148145187 },
{ "timestamp": 1774843200000, "value": 58.445579575082704 }
]
},
"status": "OK",
"request_id": "cm_49c532b5d7ef43209fcf65f6aa74fb42"
}