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

Parameters

handle
string
The Instagram username (without @). Either handle or user_id is required.
user_id
string
The Instagram user ID. Either handle or user_id is required.

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

Example Response

{
  "success": true,
  "data": {
    "items": [
      {
        "media": {
          "taken_at": 1736294201,
          "pk": "3540614075954356349",
          "id": "3540614075954356349_2700692569",
          "fbid": "17882057793200056",
          "device_timestamp": 1736293997172889,
          "caption_is_edited": false
        }
      }
    ]
  },
  "meta": {
    "platform": "instagram",
    "endpoint": "user/reels",
    "credits_used": 1,
    "request_id": "req_abc123def456"
  }
}