Profile
1 credit/v1/truthsocial/profileGet Truth Social user profile.
handle
Fetch public Truth Social data as structured JSON with one SocialCrawl API key. Same Post, Comment, and Author schema as every other platform. Reads are priced in credits.
3 active endpoints
3 live read endpoints for public Truth Social data. Profiles, user posts, and single posts. Data API only.
/v1/truthsocial/profileGet Truth Social user profile.
handle
/v1/truthsocial/user/postsList Truth Social user posts.
handle, user_id, next_max_id, trim
/v1/truthsocial/postGet Truth Social post details.
url
Returns a Truth Social account's public profile: display name, bio, follower and following counts, truth count, and profile image URL.
Use it when you have a handle and want the account snapshot before pulling its posts.
1 credit
handle · Truth Social username without the @ symbol
$ curl https://www.socialcrawl.dev/v1/truthsocial/profile?handle=realDonaldTrump \
-H "x-api-key: sc_YOUR_API_KEY"// Running this live needs your own API key. Hit "Try it" to see an example responseTruth Social is a normal SocialCrawl social surface. You call GET /v1/truthsocial/… with an API key, spend credits on live misses, and get a single JSON envelope back. No second SDK.
Send your key in the x-api-key header. The same key works across the SocialCrawl catalog.
Routes are GET. Pass handles, urls, queries, and cursors as query strings. We validate formats before charging.
Live misses debit the route tier. Cache hits cost 0. Empty or hard failures refund.
Every response is the same shape: success, data, credits_used, credits_remaining, request_id, cached.
Most products resolve an account, page content, then deepen only the posts that matter.
GET /v1/truthsocial/profileAuthor-shaped profile
Resolve the handle or id once.
GET /v1/truthsocial/user/postsPostList of recent public items
Page with cursor or after when the route supports it.
GET /v1/truthsocial/postFull Post for one URL or id
List rows are not enough when you need the full record.
GET /v1/truthsocial/postCommentList when the platform exposes it
Expand only when a thread matters.
GET /v1/truthsocial/profile
?handle=realDonaldTrump
Host: www.socialcrawl.dev
x-api-key: sc_your_api_key_here{
"success": true,
"data": { "/* Author | Post | PostList | CommentList | … */": true },
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_…",
"cached": false
}Field names match the rest of SocialCrawl where archetypes align.
id, username, display_name, avatar_url, bio, followers, url, ext
items[].post with id, url, content, engagement, author, published_at, ext
items[] with author, content.text, engagement, published_at when comments ship
search hits, media metadata, or transcripts depending on route
Same request lifecycle as every other /v1 platform endpoint.
Next.js catch-all routes into the Hono social API. We mint a request_id, authenticate the key, then enforce rate limit and concurrency.
Registry lookup finds the route. Required params run first. Invalid input returns 400 with no charge. Valid calls debit before upstream work.
A deterministic cache key is built from platform + resource + params. Hit: credits_used = 0. Miss: upstream fetch with retries and circuit breaker.
Upstream JSON is mapped to Author / Post / PostList / CommentList (or route archetype), validated, wrapped in the success envelope, and logged for billing audit.
Billing rules that matter in production
Truth Social is public-read data on SocialCrawl. We normalize it into the shared schema so your code does not learn a second OAuth flow.
Public Truth Social surfaces exposed by the registry. Read-only for research, monitoring, and product jobs.
Social-read upstreams behind one gateway. Prism composites combine legs when a fat route is registered.
Unified JSON envelope: success, data, credits_used, request_id, cached. Shared Author / Post / Comment leaves where archetypes align.
No write endpoints and no private inbox. Disabled routes stay out of the active count. Prefer registry docs for the live inventory.
The jobs this API is most often used for.
Political and public-figure narrative monitoring
Callers concentrate on profile, content lists, search, and deepen paths on Truth Social. Structured Truth Social JSON on the shared schema with one SocialCrawl API key.
Detail reads are typically a few seconds on live miss. Search and fat composites are slower paths.
The jobs Truth Social data is most often used for. Each one is a full recipe with the endpoint chain and pricing.
Common ways teams put this data to work, and the stack each one tends to run.
Poll profiles and feeds on Truth Social. Alert when engagement velocity jumps.
Search and expand posts for brand, product, and competitor language on Truth Social.
Wire resolve to list to detail into pipelines. Cache hits keep recurring runs cheap.
Live misses spend credits by tier. Cache hits are free. Empty or hard failures refund.
curl "https://www.socialcrawl.dev/v1/truthsocial/profile?handle=realDonaldTrump" \
-H "x-api-key: sc_your_api_key_here"curl "https://www.socialcrawl.dev/v1/truthsocial/user/posts?handle=example" \
-H "x-api-key: sc_your_api_key_here"Same key as the rest of the catalog
Every endpoint returns structured JSON in a unified envelope. Computed fields such as engagement rate and content category are included only where the endpoint supports them and the required source inputs are present.
Same Truth Social data, two very different paths. Auth, rate limits, schema, and cost, side by side.
| Feature | SocialCrawl | Official Truth API (Trump Media) |
|---|---|---|
| Who it serves | Developers who need public Truth Social data in their apps | Financial institutions licensing a market-data feed for trading systems |
| Getting access | Self-serve: sign up and send one GET request with an x-api-key | Enterprise licensing conversation with Trump Media, launched August 1, 2026 |
| Pricing | 1 credit per request; 100 free credits on signup, no card | Not published self-serve; licensing reportedly pitched at up to $100k per month |
| Data coverage | Any public profile, user post timeline, and post detail on Truth Social | A curated real-time feed of market-moving posts from top accounts |
| Response format | Unified JSON shared across 51 platforms | Market-data feed formats aimed at financial data pipelines |
| Use cases | Research, monitoring, dashboards, sentiment, app features | Algorithmic trading signals on a licensed subset of accounts |
Who it serves
Getting access
Pricing
Data coverage
Response format
Use cases
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usAsk AI about SocialCrawl