Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
truthsocial
/
user
/
posts
Truth Social User Posts
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/truthsocial/user/posts \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "success": true,
    "posts": [
      {}
    ]
  },
  "meta": {}
}

Parameters

handle
string
required
The Truth Social username/handle (e.g., “realDonaldTrump”)

Response

success
boolean
Whether the request was successful
data
object
meta
object
Request metadata including credits_used and request_id

Example Request

curl -X GET "https://yoinkit.ai/api/v1/openclaw/truthsocial/user/posts?handle=realDonaldTrump" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "success": true,
    "posts": [
      {
        "id": "114315232218538121",
        "text": "https://www.youtube.com/live/BK2YxPPRqlg?si=LvQtR-YoCJQd059_",
        "content": "<p><a href=\"https://www.youtube.com/live/BK2YxPPRqlg\">youtube.com/live/BK2YxPPRqlg</a></p>",
        "created_at": "2025-04-10T19:06:55.053Z",
        "uri": "https://truthsocial.com/@realDonaldTrump/114315232218538121",
        "url": "https://truthsocial.com/@realDonaldTrump/114315232218538121",
        "visibility": "public",
        "sensitive": false,
        "account": {
          "id": "107780257626128497",
          "username": "realDonaldTrump",
          "display_name": "Donald J. Trump",
          "avatar": "https://static-assets-1.truthsocial.com/tmtg:prime-ts-assets/accounts/avatars/107/780/257/626/128/497/original/454286ac07a6f6e6.jpeg",
          "followers_count": 9528800,
          "verified": true
        },
        "media_attachments": [],
        "card": {
          "url": "https://www.youtube.com/live/BK2YxPPRqlg",
          "title": "Trump holds Cabinet meeting after House passes budget bill",
          "description": "President Donald Trump holds a Cabinet meeting after Republicans narrowly passed his 'big, beautiful' budget bill.",
          "type": "video",
          "provider_name": "www.youtube.com"
        }
      }
    ]
  },
  "meta": {
    "platform": "truthsocial",
    "endpoint": "user-posts",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}