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

Parameters

handle
string
required
The Threads username/handle (e.g., “sportsillustrated”)

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/user/posts?handle=sportsillustrated" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "success": true,
    "posts": [
      {
        "id": "3536667222372268882_63496592589",
        "pk": "3536667222372268882",
        "code": "DEUxBnGRDtS",
        "user": {
          "pk": "63496592589",
          "username": "sportsillustrated",
          "profile_pic_url": "https://instagram.fagc3-1.fna.fbcdn.net/v/t51.2885-19/483433564_655589117415062_7541542786235693538_n.jpg",
          "is_verified": true,
          "has_onboarded_to_text_post_app": true
        },
        "caption": {
          "text": "Simone Biles is SI's 2024 Sportsperson of the Year\n\n(Link in bio for the full story)",
          "pk": "18298876294239445"
        },
        "text_post_app_info": {
          "reshare_count": 68,
          "direct_reply_count": 159,
          "repost_count": 217,
          "quote_count": 34,
          "reply_control": "everyone",
          "is_reply": false,
          "pinned_post_info": {
            "is_pinned_to_profile": true
          }
        },
        "image_versions2": {
          "candidates": [
            {
              "height": 1350,
              "width": 1080,
              "url": "https://scontent.cdninstagram.com/v/..."
            }
          ]
        }
      }
    ]
  },
  "meta": {
    "platform": "threads",
    "endpoint": "user-posts",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}