Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
threads
/
post
Threads Post
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/threads/post \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "success": true,
    "post": {}
  },
  "meta": {}
}

Parameters

url
string
required
The full Threads post URL (e.g., https://threads.net/@username/post/DIU8naHS6q_)

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/threads/post?url=https://threads.net/@trendspider/post/DIU8naHS6q_" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "success": true,
    "post": {
      "id": "3608775792320555711_63069450921",
      "pk": "3608775792320555711",
      "code": "DIU8naHS6q_",
      "user": {
        "pk": "63069450921",
        "username": "trendspider",
        "profile_pic_url": "https://scontent-sjc3-1.cdninstagram.com/v/t51.2885-19/358000025_988841669212235_3183384987691331022_n.jpg",
        "is_verified": false,
        "has_onboarded_to_text_post_app": true
      },
      "caption": {
        "text": "NVDA = 36x P/E\n\nNvidia at $110 today carries the same premium as Nvidia at $15 in 2022.",
        "pk": "18109768954486098"
      },
      "text_post_app_info": {
        "reshare_count": 1,
        "direct_reply_count": 6,
        "repost_count": 1,
        "quote_count": 0,
        "reply_control": "everyone",
        "is_reply": false,
        "tag_header": {
          "display_name": "NVDA",
          "id": "18402789505032695"
        }
      },
      "image_versions2": {
        "candidates": [
          {
            "height": 790,
            "width": 640,
            "url": "https://scontent.cdninstagram.com/v/..."
          }
        ]
      }
    }
  },
  "meta": {
    "platform": "threads",
    "endpoint": "post",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}