Real-Time Crypto Alerts: Regime Shift Webhooks

The difference between catching a regime shift and missing it is often the difference between profit and loss. Here's how to set up instant alerts for every platform.

Why Regime Shift Alerts Matter

From our data (6,730+ snapshots, 68 transitions over 25 days):

Option 1: Webhook (Most Flexible)

Register a webhook endpoint to receive POST requests on regime changes:

curl -X POST https://getregime.com/api/v1/webhooks \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://your-server.com/webhook", "events": ["regime.change"]}'

Payload on regime change:

{
  "event": "regime.change",
  "data": {
    "regime": "bear",
    "previousRegime": "chop",
    "confidence": 0.87,
    "timestamp": "2026-03-26T14:30:00Z"
  }
}

Option 2: Slack

Use your Slack incoming webhook URL directly — we'll format the message automatically:

curl -X POST https://getregime.com/api/v1/webhooks \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"url": "https://hooks.slack.com/services/T.../B.../xxx", "events": ["regime.change"]}'

Option 3: Discord

Same approach with a Discord webhook URL:

curl -X POST https://getregime.com/api/v1/webhooks \
  -H "Authorization: Bearer YOUR_KEY" \
  -d '{"url": "https://discord.com/api/webhooks/.../...", "events": ["regime.change"]}'

Option 4: Telegram (Free)

Join our public Telegram channel for regime shift alerts — no API key needed:

t.me/regime_crypto

The bot posts regime shifts, daily digests, and market intelligence.

Option 5: Poll the API

If you don't want webhooks, poll the regime endpoint every 5 minutes:

import requests, time

last_regime = None
while True:
    data = requests.get("https://getregime.com/api/v1/market/regime").json()
    if last_regime and data["regime"] != last_regime:
        print(f"SHIFT: {last_regime} -> {data['regime']} ({data['confidence']:.0%})")
        # Send your own alert here
    last_regime = data["regime"]
    time.sleep(300)

Which to Choose?

MethodLatencySetupCost
WebhookInstantMediumPro ($49/mo)
TelegramInstantNoneFree
Polling5 minEasyFree (within limits)
Slack/DiscordInstantEasyPro ($49/mo)

For most traders: start with Telegram (free, instant). Upgrade to webhooks when you need to trigger automated actions.

Get Started