Skip to main content
GET
/
api
/
v1
/
regime
Current Regime
curl --request GET \
  --url https://api.example.com/api/v1/regime
Returns the current market regime as detected by a Hidden Markov Model (HMM). The regime classifies the overall market state and updates every 5 minutes.

Parameters

No parameters required.

Example Request

curl -X GET "https://krovn.io/api/v1/regime" \
  -H "X-API-Key: your_api_key"

Example Response

{
  "regime": "MARKUP",
  "hmmState": "RISK_ON",
  "confidence": 0.82,
  "fearGreed": 65,
  "regimeScore": 72,
  "volRegime": "LOW_VOL",
  "timestamp": "2026-03-21T12:30:00.000Z"
}
Regimes: ACCUMULATION (bottom formation), MARKUP (uptrend), DISTRIBUTION (top formation), CAPITULATION (downtrend/panic). HMM states: RISK_ON, RISK_OFF, TRANSITION. The volRegime indicates the current volatility environment.