curl --request GET \
--url https://api.example.com/api/regime-alerts{
"alerts": [
{
"id": "<string>",
"createdAt": "<string>",
"payload": {
"reason": "<string>",
"regime": "<string>",
"recordDate": "<string>",
"timeMachineUrl": "<string>"
}
}
]
}Retrieve market regime change alerts with Time Machine deep links
curl --request GET \
--url https://api.example.com/api/regime-alerts{
"alerts": [
{
"id": "<string>",
"createdAt": "<string>",
"payload": {
"reason": "<string>",
"regime": "<string>",
"recordDate": "<string>",
"timeMachineUrl": "<string>"
}
}
]
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/zz-plant/whether/llms.txt
Use this file to discover all available pages before exploring further.
GET /api/regime-alerts
Show alert properties
curl https://your-domain.com/api/regime-alerts
{
"alerts": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"createdAt": "2026-03-03T09:15:00Z",
"payload": {
"reason": "CURVE_INVERSION_DEEPENED",
"regime": "LATE_CYCLE",
"recordDate": "2026-03-02",
"timeMachineUrl": "/time-machine?date=2026-03-02"
}
},
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"createdAt": "2026-02-24T14:30:00Z",
"payload": {
"reason": "BASE_RATE_THRESHOLD_CROSSED",
"regime": "EXPANSION",
"recordDate": "2026-02-23",
"timeMachineUrl": "/time-machine?date=2026-02-23"
}
}
]
}
CURVE_INVERSION_DEEPENED - Yield curve inversion became more pronouncedCURVE_NORMALIZED - Yield curve returned to normal shapeBASE_RATE_THRESHOLD_CROSSED - Base interest rate crossed a key thresholdSENSOR_DIVERGENCE - Multiple sensor readings indicate regime shiftMOMENTUM_SHIFT - Rate of change accelerated in new directioncurl -X POST https://your-domain.com/api/regime-alerts \
-H "Content-Type: application/json" \
-d '{
"reason": "CURVE_INVERSION_DEEPENED",
"regime": "LATE_CYCLE",
"recordDate": "2026-03-02",
"timeMachineUrl": "/time-machine?date=2026-03-02"
}'