4 real-time modules in one connection. Tweets, follows, profile changes, and community monitoring — delivered to your trading bot in milliseconds. Built for crypto. From $49/mo.
Last updated: April 2026
Everything a crypto trading bot needs — tweets, follows, profile changes, and community signals. TweetCatcher-compatible opcode protocol.
Sub-second tweet, reply, quote, and retweet detection. Full untruncated text, media URLs, quoted tweet content, and contract address extraction. No data left behind.
Know when tracked accounts follow or unfollow someone new. ~30–60 second detection. Partnership signals, whale watching, rug pull warnings — all via the same WebSocket.
Bio, name, avatar, and pinned tweet changes in under 500ms. Detect rebrands, narrative shifts, and rug pull signals before anyone else sees them.
The only API that tracks Twitter/X community membership. Detect when accounts create or join communities — the earliest token launch signal. No competitor offers this.
TweetCatcher-compatible opcode protocol. If you’ve integrated with TweetCatcher, migration is near drop-in.
Add Twitter/X handles via the bot (/add @handle) or the REST API (POST /v1/dt/targets).
Connect to wss://api.xanguard.tech/v1/dt/realtime/ws and send your API key via the LOGIN opcode.
Get real-time events for all 4 modules — tweets, follows, profile changes, and community activity.
const ws = new WebSocket('wss://api.xanguard.tech/v1/dt/realtime/ws');
ws.onmessage = (event) => {
const msg = JSON.parse(event.data);
switch (msg.op) {
case 10: // HELLO
ws.send(JSON.stringify({op: 2, d: 'dt_YOUR_API_KEY'}));
break;
case 4: // READY
console.log(`Monitoring ${msg.d.handles} handles`);
break;
case 0: // EVENT
if (msg.d.event === 'twitter.post.new') {
console.log(`@${msg.d.data.author.handle}: ${msg.d.data.text}`);
}
break;
}
};
setInterval(() => ws.send(JSON.stringify({op: 1})), 30000);
| Feature | X API Enterprise | TweetStream | TweetCatcher | Xanguard |
|---|---|---|---|---|
| Real-time WebSocket | Firehose only | ✓ | ✓ | ✓ |
| Follow/unfollow detection | ✗ | ✗ | ✓ | ✓ |
| Profile change alerts | ✗ | ✗ | Partial | ✓ (<500ms) |
| Community monitoring | ✗ | ✗ | ✗ | ✓ (only one) |
| Convergence detection | ✗ | ✗ | ✗ | ✓ (only one) |
| Telegram delivery | ✗ | ✗ | ✓ | ✓ |
| Starting price | $42,000/mo | $139/mo | ~$60/mo | $49/mo |
Every plan includes all 4 real-time modules. No feature gates. No surprises.
4 real-time modules. One WebSocket. Sub-second delivery. Pay with SOL. Start building in under 5 minutes.