EveryData platform API

Truth Social API

Read a Truth Social profile, posts from a known account, replies written by that account, one Truth, or the platform's trending content sample. Truths, ReTruths, replies, and profile website links are different objects.

The `replies` action takes an author `username`; it does not take a Truth URL and export every comment below that Truth. Use `post` with a full Truth URL for one item, and inspect `is_reply` and `is_repost` before classifying returned posts.

Endpoint
POST /api/v1/social
Capabilities
5
Per 1,000
$1.389

Available capabilities

Compare the Truth Social actions by required input, returned data, and price. Use the action identifier exactly as shown in your request.

ActionRequiredOptionalDeliveryLimitPer 1,000Response fields
profile

Profiles

Retrieve public profile details from Truth Social. Accepts these parameters: username. Returns these fields: created_at, is_verified, avatar_url, and display_name.

usernameSync delivery$1.39 per 1,000 requestsuser_id · username · display_name · bio · url · external_url · location · follower_count · following_count · post_count · is_verified · is_private · avatar_url · header_url · created_at · platform
user_posts

Posts by user

Retrieve public posts from Truth Social. Accepts these parameters: username. Returns these fields: text, reply_to_id, is_reply, and like_count.

usernameSync deliveryCatalog values: defaultLimit=20, maxLimit=100. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count.$1.39 per 1,000 requestsid · url · text · language · reply_count · repost_count · like_count · author_username · author_name · author_id · author_follower_count · author_verified · reply_to_id · reply_to_account_id · is_reply · is_repost · posted_at · media · hashtags · platform
replies

Replies

Retrieve public replies from Truth Social. Accepts these parameters: username. Returns these fields: author_id, repost_count, author_follower_count, and language.

usernameSync deliveryCatalog values: defaultLimit=20, maxLimit=100. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count.$1.39 per 1,000 requestsid · url · text · language · reply_count · repost_count · like_count · author_username · author_name · author_id · author_follower_count · author_verified · reply_to_id · reply_to_account_id · is_reply · is_repost · posted_at · media · hashtags · platform
post

Post details

Retrieve a public post from Truth Social. Accepts these parameters: url, post_url, and id. Returns these fields: repost_count, author_id, reply_to_id, and media.

urlid, post_urlSync delivery$1.39 per 1,000 requestsid · url · text · language · reply_count · repost_count · like_count · author_username · author_name · author_id · author_follower_count · author_verified · reply_to_id · reply_to_account_id · is_reply · is_repost · posted_at · media · hashtags · platform
trending

Trending

Retrieve current trends from Truth Social. Requires no parameters. Returns these fields: is_reply, repost_count, reply_count, and language.

Sync deliveryCatalog values: defaultLimit=20, maxLimit=100. A limit can control pages or per-parent expansion for some actions, so it is not always a final row count.$1.39 per 1,000 requestsid · url · text · language · reply_count · repost_count · like_count · author_username · author_name · author_id · author_follower_count · author_verified · reply_to_id · reply_to_account_id · is_reply · is_repost · posted_at · media · hashtags · platform

What does each Truth Social action accept?

Each answer below pairs one callable action with its real inputs. Parameter meanings and allowed values are action-specific; a familiar name does not carry the same meaning across every platform.

Official sources are linked only to clarify the platform term beside them. They do not imply platform authorization or endorsement, and they do not add official-site features to the EveryInfra API contract.

What do the Truth Social profile parameters mean?

Retrieve public profile details from Truth Social. Accepts these parameters: username. Returns these fields: created_at, is_verified, avatar_url, and display_name.

usernameRequired
A Truth Social account handle, with or without @; this is not a display name or profile URL.
Truth Social: Account Handles, Display Names, and Profile Website FieldsOfficial terminology distinguishes handle/username, display name, and profile Website links. This reference explains identity fields only; the presence of usernames, verification badges, or web pages does not verify real-world entity identity or private access permissions.Checked

What do the Truth Social user_posts parameters mean?

Retrieve public posts from Truth Social. Accepts these parameters: username. Returns these fields: text, reply_to_id, is_reply, and like_count.

usernameRequired
The known Truth Social author whose posts should be read; this is not a topic keyword.
Truth Social: Truth and ReTruth Represent Distinct ActionsOfficial documentation defines Truth as published content, ReTruth as reposting, and QuoteTruth as quote-reposting with added commentary. This gateway does not guarantee a distinct QuoteTruth structural field and does not treat all returned items as original content.Checked

What do the Truth Social replies parameters mean?

Retrieve public replies from Truth Social. Accepts these parameters: username. Returns these fields: author_id, repost_count, author_follower_count, and language.

usernameRequired
The author whose own replies should be listed. It does not identify a post's full comment thread.
Truth Details Comment UI vs. Author Reply ListsOfficial Truth Social documentation shows that post comments are viewed under Truth Details. However, the `replies` action accepts an author `username` as its request target. Reading comments for a single post is functionally distinct from querying an author's reply history and must not be treated as equivalent.Checked

What do the Truth Social post parameters mean?

Retrieve a public post from Truth Social. Accepts these parameters: url, post_url, and id. Returns these fields: repost_count, author_id, reply_to_id, and media.

urlRequired
Full post URL, recommended to include the @author path to locate both the author and the post simultaneously. Do not pass short links that omit the author identifier.
Truth Social: Single Truths, Media Attachments, and Comment AccessOfficial Truth Social documentation distinguishes published Truth content from the comment interface beneath single-post details. Referencing this object structure only clarifies resource boundaries; it does not grant comment exporting, posting, deleting, or arbitrary attachment support.Checked
idOptional
Compatibility input for the post ID. When used alone, it cannot reliably infer the author. Prefer using the full url without relying on a default author fallback.
post_urlOptional
Compatibility input for the post URL. It has lower precedence than url and does not remove the public required field status.

What do the Truth Social trending parameters mean?

Retrieve current trends from Truth Social. Requires no parameters. Returns these fields: is_reply, repost_count, reply_count, and language.

This action has no business parameters. Send only the platform and action identifiers.

How to use the Truth Social API

  1. 01Read the public catalog and choose a platform action.
  2. 02Send the platform, action, and required parameters to POST /api/v1/social.
  3. 03Handle a synchronous result or poll the returned job ID when the selected action is asynchronous.
  4. 04Store the structured response fields needed by your application.
truth_social_profile.sh
curl -X POST https://api.everyinfra.com/api/v1/social \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"truth_social","action":"profile","params":{"username":"<username>"}}'

Truth Social API questions

What can I retrieve with the Truth Social API?

Set platform to truth_social. The current catalog lists profiles, posts by user, replies, post details, and trending. These action names identify different Truth Social objects or views; they are not interchangeable search modes.

Which input starts a Truth Social `profile` request?

A Truth Social account handle, with or without @; this is not a display name or profile URL. Send it as username inside params.

Which fields can Truth Social `profile` return?

Its declared schema includes user_id, username, display_name, and bio. A declared field can still be absent from an individual source record, and every other action has its own field list.

Does every Truth Social action return immediately?

No assumption is needed: this page labels each action's delivery mode. The current catalog contains sync delivery; poll a returned job ID only for an action labeled asynchronous.