Skip to main content
← Blog

How to Track Trump's Truth Social Posts in Real Time (2026 Guide)

Updated 2026-08-06 | 1322 Team

@realDonaldTrump posts on Truth Social move prediction-market odds, and sometimes whole markets, within seconds. Whatever you think about the politics, the engineering question is concrete: how do you find out about a post fast enough for it to matter? Here are the real options, slowest to fastest.

The speed ladder

MethodTypical delayCost
X/Telegram mirror accounts1-10 minutes (manual reposts)Free
Truth Social app notificationsSeconds to minutes, unreliable orderingFree
DIY scraper (truthbrush etc.)Your poll interval, 30-60s+ realisticallyFree + your infra + blocked-IP risk
Pay-per-call scraper APIsYour poll intervalPer request, compounds at tight polling
Managed push feed (1322)Named Trump priority lane around 50ms averageFrom $300/mo

For casual following, the free tiers are fine. For prediction markets the difference between 300ms and 30 seconds is the whole game, odds on the relevant Polymarket/Kalshi markets typically finish moving within the first minute. There is also now an official institutional lane: Trump Media's Truth API, announced July 16, 2026, streams the platform's top 10 trending accounts to licensed financial-services partners from August 1, 2026. It is not self-serve, and it does not cover arbitrary accounts.

The push setup (no code)

  1. Subscribe to the Truth Social monitoring feed and add @realDonaldTrump (and any other accounts, cabinet members, campaign accounts, journalists) to your tracked list.
  2. Link the built-in Telegram or Discord bot to your chat/server, posts arrive as formatted cards the moment they are detected, retruths and quote chains included.
  3. Optional: add the news feed in the same stream, a post corroborated by a matching headline within seconds is a much stronger trading signal than either alone.

The bot setup (Python, ~25 lines)

import asyncio, json, os
import websockets

API_KEY = os.environ["API_KEY"]
WS_URL = os.environ["WS_URL"]      # from your dashboard api-access page
WATCH = {"realdonaldtrump"}        # lowercase handles you care about


async def run():
    while True:
        try:
            async with websockets.connect(
                WS_URL, additional_headers={"X-Api-Key": API_KEY}
            ) as ws:
                async for raw in ws:
                    e = json.loads(raw)
                    if e.get("platform") != "truth":
                        continue
                    if str(e.get("handle", "")).lower() not in WATCH:
                        continue
                    kind = "RETRUTH" if e.get("isRepost") else "POST"
                    print(f"[{e['timestamp']}] {kind}: {e.get('content', '')[:200]}")
                    # -> place order / send alert / match against your markets
        except Exception as exc:
            print(f"reconnecting ({exc})")
            await asyncio.sleep(1)


asyncio.run(run())

Same consumer pattern works for every platform, ready-made examples: truthsocial-stream on GitHub. Background on the official institutional Truth API, why there is still no public developer API, and what scrapers can/can't do: the complete Truth Social API guide.

FAQ

Is there a free way to get Trump Truth Social alerts?

Following the account in the Truth Social app gives standard app notifications, and some accounts mirror posts elsewhere. Neither provides the structured, source-direct event contract needed by an automated desk.

How fast can a Truth Social post be detected?

Regular 1322 Truth lanes typically operate in a 150-250ms range. The dedicated @realDonaldTrump and @WhiteHouse priority lanes typically operate around a 50ms average. These are observed operating figures, not an SLA.

Why do traders care about Truth Social posts?

Posts from high-profile political accounts can move prediction-market odds and sometimes broader markets. A real-time feed gives the desk the original event before screenshots and commentary circulate; it does not provide trading advice.

Do I get retruths and quoted posts too?

With 1322's feed, yes. Events include retruths and the quote chain, plus profile, follow, deletion and pin events when detected.

Can alerts go straight to Discord or Telegram?

Yes. Configured delivery routes can post tracked-account events to a server, group or channel without requiring a custom consumer.

Get the first touch

Truth Social + News + X in one WebSocket. Used by prediction-market traders.