Parameters
The Instagram username (without @). Either handle or user_id is required.
The Instagram user ID. Either handle or user_id is required.
Response
Whether the request was successful
Show User reels properties
Array of reel objects from the user’s profile
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"
}
}