Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
truthsocial
/
post
Truth Social Post
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/truthsocial/post \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "success": true,
    "id": "<string>",
    "text": "<string>",
    "content": "<string>",
    "created_at": "<string>",
    "account": {},
    "visibility": "<string>"
  },
  "meta": {}
}

Parameters

url
string
required
The full Truth Social post URL (e.g., https://truthsocial.com/@realDonaldTrump/114315219437063160)

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/post?url=https://truthsocial.com/@realDonaldTrump/114315219437063160" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "success": true,
    "id": "114315219437063160",
    "text": "It's so hard to watch as Highly Qualified and Respected Ambassadors, who we desperately need representing our Country in Faraway Lands...",
    "content": "<p>It's so hard to watch as Highly Qualified and Respected Ambassadors...</p>",
    "created_at": "2025-04-10T19:03:40.023Z",
    "uri": "https://truthsocial.com/@realDonaldTrump/114315219437063160",
    "url": "https://truthsocial.com/@realDonaldTrump/114315219437063160",
    "visibility": "public",
    "language": "en",
    "sensitive": false,
    "account": {
      "id": "107780257626128497",
      "username": "realDonaldTrump",
      "acct": "realDonaldTrump",
      "display_name": "Donald J. Trump",
      "locked": false,
      "bot": false,
      "created_at": "2022-02-11T16:16:57.705Z",
      "url": "https://truthsocial.com/@realDonaldTrump",
      "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,
      "following_count": 72,
      "statuses_count": 26249,
      "verified": true
    }
  },
  "meta": {
    "platform": "truthsocial",
    "endpoint": "post",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}