XFlux
Discord alerts

Twitter → Discord without a $5k stream

Watch public X accounts with XFlux monitors, then route signed webhooks into Discord via Make.com or your own bot. Flat plans from Free / $19 — not pay-per-tweet.

Make.com path

Custom Webhook trigger → Discord module. No bot code required.

Your Discord bot

POST to your HTTPS endpoint, verify HMAC, then channel.send.

Same monitors

Keyword filters, 1s poll on Starter+, Dashboard hit history.

How it works

  1. 1

    Create an XFlux monitor

    Dashboard → Monitors → add @username and optional keywords.

  2. 2

    Choose a Discord path

    Make.com Custom Webhook → Discord channel, or your bot’s HTTPS endpoint.

  3. 3

    Paste the webhook URL

    Save on the monitor, copy the signing secret, click Test webhook.

Option A — Make.com

Create a Make scenario with a Custom Webhook trigger, map tweet text / username into a Discord “Send a Message” module, then paste the Make URL into XFlux. Full walkthrough: Connect XFlux to Make.com.

@handle posts (optional keyword match)
        ↓
XFlux monitor.hit (signed POST)
        ↓
Make.com Custom Webhook
        ↓
Discord channel message

Option B — Your bot

Expose an HTTPS route, verify X-XFlux-Signature, then post to Discord with your bot token. Signature details: Webhook docs. Product overview: /twitter-webhook.

// Pseudocode
app.post("/webhooks/xflux", rawBodyMiddleware, (req, res) => {
  if (!verifyHmac(secret, timestamp, rawBody, signature)) {
    return res.status(401).end();
  }
  const event = JSON.parse(rawBody);
  if (event.event === "monitor.hit") {
    discord.channels.send(`@${event.tweet.authorUsername}: ${event.tweet.text}`);
  }
  res.status(200).send("ok");
});

FAQ

Does XFlux ship a first-party Discord bot?
No. Use Make.com’s Discord modules with a Custom Webhook, or point XFlux signed webhooks at your own Discord bot.
Which plan do I need for live Discord alerts?
Starter ($19/mo) or higher for live monitor.hit delivery. Free can configure URLs and send test pings.
How do I verify webhooks in my bot?
HMAC-SHA256 over {timestamp}.{raw_body} using the Dashboard signing secret. See /docs/webhooks.

Route alerts to Discord

Free for monitor history. Starter from $19/mo for live signed delivery.

Twitter → Discord Alerts via Webhooks | XFlux