v1

latestOpenAPI 3.0.32026-08-04850206.9 KB
Indicators

Stochastic RSI

Daily Stochastic RSI — applies the stochastic oscillator to RSI itself, giving a faster, more sensitive 0–100 momentum read with %K and %D lines that cross to signal turns. Windows: 7, 14, 21, 28 days (default 14) — the 21- and 28-day windows require the Starter plan or higher.

get/api/v1/coins/{slug}/indicators/stoch-rsi

Query parameters

periodinteger

Window length — one of 7, 14, 21, 28 (default 14).

Example:14

Window length — one of 7, 14, 21, 28 (default 14).

startstring

ISO date lower bound.

Example:2026-06-01

ISO date lower bound.

endstring

ISO date upper bound.

Example:2026-06-30

ISO date upper bound.

limitinteger

Max rows (1–1000, default 365).

Example:30

Max rows (1–1000, default 365).

Response

Example response

{
  "data": [
    {
      "date": "2026-06-14",
      "k": 18.4,
      "d": 22.1
    }
  ],
  "meta": {
    "coin": "bitcoin",
    "indicator": "stoch-rsi",
    "period": 14,
    "count": 1
  }
}