Skip to main content
GET
/
api
/
v1
/
openclaw
/
instagram
/
user
/
reels
Reels
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/instagram/user/reels \
  --header 'Authorization: Bearer <token>'

Parameters

user_id
string
Instagram user id. Use this for faster response times. (e.g., 2700692569)
handle
string
Instagram handle. Use user_id for faster response times. (e.g., jane)
max_id
string
Max id to get more reels. Get ‘max_id’ from previous response. (e.g., QVFCVzNnS2lI...==)
trim
boolean
Set to true for a trimmed down version of the response (e.g., false)

Example Request

curl -X GET "https://yoinkit.ai/api/v1/openclaw/instagram/user/reels" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "success": true,
  "data": {
    "items": [
      {
        "pk": "...",
        "like_count": 123,
        "comment_count": 45,
        "play_count": 67890
      }
    ]
  },
  "meta": {
    "platform": "instagram",
    "endpoint": "user-reels",
    "request_id": "req_abc123"
  }
}
Response data is returned directly from the Yoinkit API.