CuteMarkets Docs

API Reference

Everything you need to integrate market data, build faster, and scale.

Tip: open /docs/indicators-rsi.md directly for raw markdown (easy copy/paste into an LLM).

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=10

Endpoint

bash
GET /v1/options/indicators/rsi/{ticker}

Example request

bash
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

bash
{
  "results": {
    "values": [
      { "timestamp": 1775016000000, "value": 68.48397362973498 },
      { "timestamp": 1774929600000, "value": 66.67445148145187 },
      { "timestamp": 1774843200000, "value": 58.445579575082704 }
    ]
  },
  "status": "OK",
  "request_id": "cm_49c532b5d7ef43209fcf65f6aa74fb42"
}

Next steps

Move from the docs into the product workflow

If you are evaluating the API rather than implementing a specific endpoint right now, the product pages map the live, historical, and chain workflows directly.