Skip to main content
GET
/
api
/
v1
/
regime
/
history
Regime History
curl --request GET \
  --url https://api.example.com/api/v1/regime/history
Returns the history of regime state changes, allowing you to analyze how the market has transitioned between different phases over time.

Parameters

ParameterTypeDefaultDescription
daysnumber7Lookback window in days (max 90)

Example Request

curl -X GET "https://krovn.io/api/v1/regime/history?days=7" \
  -H "X-API-Key: your_api_key"

Example Response

{
  "data": [
    {
      "timestamp": "2026-03-21T12:00:00.000Z",
      "regime": "MARKUP",
      "hmm_state": "RISK_ON",
      "confidence": 0.82,
      "score": 72
    },
    {
      "timestamp": "2026-03-20T18:00:00.000Z",
      "regime": "ACCUMULATION",
      "hmm_state": "TRANSITION",
      "confidence": 0.65,
      "score": 55
    },
    {
      "timestamp": "2026-03-19T06:00:00.000Z",
      "regime": "DISTRIBUTION",
      "hmm_state": "RISK_OFF",
      "confidence": 0.78,
      "score": 38
    }
  ]
}
Results are returned in descending order (newest first). Use this data to identify regime transition patterns and their duration.