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, so your strategy reacts to a pushed event instead of waiting for the next poll. Standard X and Truth lanes typically operate in a 150-250ms range; selected priority lanes can be faster.
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.
@elonmusk just posted on X · 182ms
Cybertruck production ramping hard.
@realDonaldTrump posted on Truth Social · 0.18s
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 is the direct machine route, signed webhooks fit event-driven stacks, and Discord or Telegram can keep a human in the loop. Entitlements depend on the selected source plan; WebSocket is included with X and offered as an add-on on several other sources.
How fast are the signals?
Standard X typically operates in a 150-250ms range, with selected Ultimate accounts around a 100ms average. Regular Truth lanes typically operate in a 150-250ms range, with named Trump and White House priority lanes around a 50ms average. These are operating figures, not an SLA.
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, Truth Social and Binance Square are common trading inputs. Instagram, YouTube, TikTok and news can use the same workspace and event contract when separately subscribed and enabled for the chosen delivery route.
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.