List posts from a Truth Social profile by handle or account id.
Endpoint
/v1/truthsocial/profiles/{handle}/posts
Path
Truth Social handle or account id.
Query
Opaque pagination cursor from a previous response. Omit for the first page.
When true, includes reply posts in the timeline. Adds 2 credits (4 total including the base lookup). Default: false (top-level posts only).
Maximum posts to return (1–20). Default: 20.
const response = await fetch( "https://api.socialfetch.dev/v1/truthsocial/profiles/realDonaldTrump/posts", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);