Truth Social API: The Complete Guide to Real-Time Monitoring (2026)
Updated 2026-07-29 · 1322 Team
Short version: the official Truth API is a licensed institutional product, and there is still no public self-serve Truth Social API. If you need arbitrary accounts rather than the top 10 trending ones, everything that reads Truth Social programmatically is either a scraper you run yourself, a pay-per-call scraping service, or a managed real-time feed. This guide covers all three honestly, what they cost, how fast they are, and the code to get started.
A GREAT day for America. Big news coming!
Is there an official Truth Social API?
Yes, with limits. On July 16, 2026, Trump Media announced Truth API, its first data-licensing product: an institutional feed for financial-services firms, available from August 1, 2026. It pushes real-time posts from the platform's top 10 trending accounts within milliseconds, with an archive back to 2022, and has reportedly been pitched to trading firms at $100,000 per month. It is not public or self-serve and does not cover arbitrary accounts; for those, teams use independent services like 1322, from $250 per month.
Per TMTG's press release and CNBC's coverage, the product targets high-frequency and algorithmic trading firms under licensing agreements. Official pricing has not been published, but CNBC reported (citing the Financial Times) that Trump Media pitched prospective clients $100,000 per month, or $60,000 per month on a three-year commitment. That is roughly 400x the cost of a self-serve monitoring subscription, for a feed limited to the top 10 trending accounts. The rest of this guide is about the problem the official product does not address: tracking any Truth Social account you choose, self-serve, from $250 per month.
Why there's still no public developer API
Truth Social is built on a fork of Mastodon, the open-source social server. Mastodon itself has a well-documented API, and Truth Social inherited much of that surface internally, but Truth Social never opened a public developer program. There are no self-serve API keys, no documented public endpoints, no rate limit policy, and no support channel; the 2026 Truth API is sold through institutional licensing agreements, not offered as a developer platform. The internal endpoints exist and can change or lock down at any time without notice.
That matters because Truth Social posts move markets. Posts from political figures, most obviously @realDonaldTrump, routinely move prediction-market odds on Polymarket and Kalshi, and sometimes equities and crypto, within seconds. The gap between "no public API" and "market-moving content" is why a whole ecosystem of monitoring approaches exists.
Option 1, Open-source scrapers (free, slow, yours to maintain)
The best-known open-source tool is truthbrush(from the Stanford Internet Observatory), a Python library that authenticates with a Truth Social account and pulls statuses, search results, and user data. GitHub also has assorted scrapers wrapping the same internal endpoints.
What you sign up for with this route:
- Polling latency. You poll on an interval. Poll every 30 seconds and your worst-case detection is 30+ seconds, an eternity for trading use cases.
- Account and IP risk. Scrapers authenticate as a regular account; aggressive polling gets accounts and IPs blocked, so you rotate both.
- Breakage. When internal endpoints change, your pipeline is down until someone patches the library.
- Cost is your time. Free software, but you are now operating scraping infrastructure.
Fine for research and historical analysis. Painful for live monitoring.
Option 2, Pay-per-call scraper APIs
Services like ScrapeCreators and Apify actors expose Truth Social data as a paid HTTP API: you send a request, they scrape and return JSON, you pay per call. They solve the maintenance problem, but not the latency problem. You are still polling; you just outsourced the scraping. At a 10-second poll on one account, a per-call price of even a fraction of a cent compounds to hundreds of dollars a month, for ONE account, with 10-second worst-case latency.
Good for: occasional lookups, backfills, research queries. Wrong shape for: "tell me the instant this account posts."
Option 3, Managed real-time feeds (push, not poll)
The third model inverts the problem: a provider runs the detection layer continuously and pushes new posts to you the moment they are detected. 1322's Truth Social feed works this way, you put accounts on a tracked list, keep a WebSocket open, and receive structured JSON events typically within a few hundred milliseconds of publication: new truths, retruths with the full quote chain, profile changes, deletions and pins. No Truth Social credentials, no scraping infrastructure, flat monthly price.
A minimal Python consumer:
import asyncio, json, websockets
API_KEY = "your-1322-api-key"
async def main():
async with websockets.connect(
"wss://1322.io/your-ws-path", # from your dashboard /api-access page
additional_headers={"X-Api-Key": API_KEY}, ) as ws:
async for raw in ws:
event = json.loads(raw)
if event.get("platform") == "truth" and event.get("eventType") == "post":
handle = event["handle"]
text = event.get("content", "")
print(f"[{event['timestamp']}] @{handle}: {text[:120]}")
# -> match against your prediction markets / alert rules here
asyncio.run(main())Delivery also works without writing a consumer at all: the included Discord bot and Telegram bot post tracked-account events directly to your server or chat, and signed webhooks can hit your backend.
The prediction-market angle
The highest-value use of Truth Social monitoring in 2026 is prediction markets. The pattern: a tracked political account posts → relevant Polymarket/Kalshi odds move within seconds → the first actors capture the spread. A push feed with sub-second detection is the difference between being the mover and being the market. 1322 customers typically pair the Truth Social feed with the news feed in the same WebSocket, a post corroborated by a matching headline within seconds is a much stronger signal than either alone. More on this setup: prediction market data feed.
Honest comparison
| Approach | Latency | Cost shape | Maintenance |
|---|---|---|---|
| Official Truth API (top-10 trending only) | milliseconds, push (as announced) | reportedly pitched at $100k/month | none, licensing agreement required |
| truthbrush / DIY scraping | poll interval (30s+) | free + your time | all yours |
| Pay-per-call APIs | poll interval | per request, compounds fast | none, but still polling |
| 1322 managed feed | ~hundreds of ms, push | flat monthly | none |
If you are a financial institution that only needs the top 10 trending accounts, evaluate the official Truth API when it becomes available on August 1, 2026. If you need historical research at zero cost, run truthbrush. If you need occasional lookups, use a per-call API. If you need to know the moment any tracked account posts, use a push feed, see the Truth Social monitoring API.
FAQ
Is there an official Truth Social API?
Yes, with limits. On July 16, 2026, Trump Media announced Truth API, its first data-licensing product: an institutional feed for financial-services firms, available from August 1, 2026. It pushes real-time posts from the platform's top 10 trending accounts within milliseconds, with an archive back to 2022, and has reportedly been pitched to trading firms at $100,000 per month. It is not public or self-serve and does not cover arbitrary accounts; for those, teams use independent services like 1322, from $250 per month.
Is monitoring Truth Social legal?
Reading publicly posted content is generally treated like reading the public web, but scraping can violate a site's terms of service and aggressive scraping can get IPs blocked. Using a managed service moves that operational risk off your infrastructure. This is not legal advice, check with a lawyer for your jurisdiction and use case.
How fast can Truth Social posts be detected?
Polling scrapers are limited by their poll interval, usually 30-60+ seconds. Managed detection layers like 1322 deliver posts over WebSocket typically within a few hundred milliseconds of publication.
Can I get retruths and quote chains?
With raw scraping you must resolve them yourself. 1322's feed includes the outer actor, the retruthed/quoted author, and nested quote chains in one event.
What does Truth Social monitoring cost?
Open-source scrapers are free plus your infrastructure and maintenance time. Pay-per-call scraper APIs charge per request. 1322's managed Truth Social feed is a flat monthly subscription, see 1322.io/pricing.
Monitor Truth Social in real time
Truths, retruths and quote chains over WebSocket, plus News and X in the same stream.