Skip to main content
← 1322 home

Social Media Alerts for Trading Bots

Your bot is only as fast as its slowest input. 1322 pushes machine-readable social posts from X, Truth Social and Binance Square into your code over WebSocket or signed webhook in 150-250ms, so your strategy reacts the instant an account posts, not on the next poll.

Push beats polling for bots

A bot that polls a REST endpoint is capped at its poll interval and burns rate limits. A bot that holds a WebSocket gets the event as it lands. For signal-driven strategies, where the first seconds decide the fill, push is the only thing that makes sense. You consume one normalized stream instead of building and babysitting a scraper per platform.

What your bot receives

{
  "platform": "x", "handle": "examplekol", "content": "sending it. CA: 7xKX...pump", "coinPairs": [], "timestamp": "2026-06-16T14:03:07.114Z", "metrics": { "followers": 412000 }
}

Normalized JSON across every platform. Match contract-address or ticker patterns, route by author, or fan out to multiple strategies. Prefer no code? The included Discord and Telegram bots post the same events to a human.

13221322 BotDiscordnow

@elonmusk just posted on X · 182ms

Cybertruck production ramping hard.

TG1322 alertsTelegram

@realDonaldTrump posted on Truth Social · 0.18s

The same event can fire a Discord and Telegram alert when a human is in the loop.

Wire it up

  • WebSocket consumer, lowest latency, open clients on GitHub (Node + Python).
  • Signed webhooks, for serverless and event-driven stacks.
  • Tracked-account management via REST, dashboard, or Discord bot commands.
  • Related: crypto KOL tracking, prediction markets.

FAQ

How do I feed social posts into my trading bot?

Open a WebSocket to the 1322 feed (or receive signed webhooks) and you get a JSON event the moment a tracked account posts. No scraping, no polling loop, no platform developer accounts. Filter the event in your consumer and act on it.

What delivery methods work for bots?

A persistent WebSocket for lowest latency, signed webhooks for serverless or event-driven stacks, plus Discord and Telegram if a human is in the loop. All are included.

How fast are the signals?

X posts are typically 150-250ms from publication; other platforms a few hundred milliseconds. Push delivery means your bot reacts before a polling tracker finishes its cycle.

Are events machine-readable?

Yes. Each event is normalized JSON with the platform, author, full text, media, timestamp and metrics. Binance Square events include parsed coin pairs; X events stream progressively so you get the earliest signal first.

Which platforms can drive my bot?

X (Twitter), Truth Social and Binance Square are the common trading signals, all on one WebSocket. Instagram, YouTube and news are available on the same connection if your strategy uses them.

Is this against any platform terms?

You authenticate with a 1322 API key, not a platform developer account. 1322 runs the detection; your bot just consumes a feed. Always confirm your own compliance requirements.

Give your bot a faster input

Real-time social events over WebSocket and webhooks. From $250/mo.