Skip to main content
← 1322 home

Tweet Alerts in Discord & Telegram

Trading groups, alpha communities and fan servers all want the same thing: the moment a tracked account posts on X, Instagram or Truth Social, a message lands in the group. 1322 does this two ways, a zero-code route with built-in delivery bots, and a builder route over WebSocket.

Route 1, zero code (built-in bots)

  1. Sign up, pick a plan, add the accounts you want tracked (dashboard, REST, or bot commands).
  2. Discord: link your server from the dashboard, events arrive as rich embeds with media, metrics and links. Manage the tracked list with /add, /remove, /list right in Discord.
  3. Telegram: link the bot to your chat, group or channel, posts arrive as formatted cards, filterable per platform.

That's the whole setup. Most competitors hand you raw API access and leave the Discord/Telegram plumbing to you, here it ships with the subscription.

Route 2, your own bot (WebSocket)

When you want custom logic, contract-address detection, ticker filters, follower thresholds, role pings, consume the WebSocket yourself and post to a Discord webhook:

import WebSocket from "ws";

const ws = new WebSocket(process.env.WS_URL, {
  headers: { "X-Api-Key": process.env.API_KEY },
});

ws.on("message", async (raw) => {
  const e = JSON.parse(raw.toString());
  if (e.platform !== "x" || !e.eventType?.startsWith("tweet")) return;
  await fetch(process.env.DISCORD_WEBHOOK_URL, {
    method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ content: `🐦 @${e.handle}: ${e.content}` }), });
});

Full walkthrough with Telegram + contract-address filtering: KOL alert bot in 50 lines of Python. Minimal consumers for all 6 platforms: social-monitor-examples on GitHub.

What communities run on this

  • Crypto alpha groups, KOL tweets + Binance Square posts with coin pairs, pinged to the entries channel. More →
  • Political / prediction-market groups, Truth Social posts + breaking headlines in one channel. More →
  • Fan + creator communities, Instagram posts/stories and YouTube uploads the moment they go live.

FAQ

Do I need to write code to get tweet alerts in Discord?

No. 1322 includes a Discord bot: link your server from the dashboard and tracked-account events arrive as formatted embeds. Code is only needed when you want custom filtering or actions.

How fast do alerts arrive?

Detection is typically 150-250ms from the post appearing; Discord/Telegram delivery adds the messenger's own send time on top, in practice alerts land in about a second.

Can one server get alerts from multiple platforms?

Yes, X, Instagram, Truth Social, YouTube, Binance Square and news events can all route to the same Discord server or Telegram chat, each clearly labeled per platform.

Can I run my own bot instead?

Yes. Consume the WebSocket directly and post wherever you want, a 50-line Python example with contract-address filtering is in our tutorial, and minimal consumers for all 6 platforms are open source on GitHub.

How do I manage which accounts are tracked?

Via the dashboard, the REST API, or Discord bot commands (/add, /remove, /list) using your own key.

Wire up your server

Discord + Telegram delivery included with every plan. From $250/mo.