Skip to main content
GET
/
api
/
v1
/
correlation
/
shifts
Correlation Shifts
curl --request GET \
  --url https://api.example.com/api/v1/correlation/shifts
Returns the current and historical rolling correlation between BTC and traditional macro assets (S&P 500, Gold, US Dollar Index). Correlation regime shifts can signal major market transitions.

Parameters

No parameters required.

Example Request

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

Example Response

{
  "correlations": {
    "btc_sp500": {
      "current": 0.42,
      "avg30d": 0.55,
      "shift": -0.13,
      "signal": "DECOUPLING"
    },
    "btc_gold": {
      "current": 0.18,
      "avg30d": 0.08,
      "shift": 0.10,
      "signal": "STRENGTHENING"
    },
    "btc_dxy": {
      "current": -0.65,
      "avg30d": -0.58,
      "shift": -0.07,
      "signal": "STABLE"
    }
  },
  "regime": "MARKUP",
  "timestamp": "2026-03-21T12:30:00.000Z"
}
Correlations range from -1 (perfect inverse) to +1 (perfect positive). BTC-DXY is typically negative (dollar up = BTC down). A shift in BTC-SPX correlation from positive to near-zero may indicate crypto decoupling from traditional risk assets. Requires approximately 2 hours of data collection before first results appear.