cURL
curl --request GET \ --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/instagram/search \ --header 'Authorization: Bearer <token>'
Search for reels by keyword. Uses Google Search to find reels. This is because IG puts search behind the login, and we only pull public data
dogs
curl -X GET "https://yoinkit.ai/api/v1/openclaw/instagram/search?query=dogs" \ -H "Authorization: Bearer YOUR_API_TOKEN"
{ "success": true, "data": { "items": [ { "pk": "...", "like_count": 123, "comment_count": 45, "play_count": 67890 } ] }, "meta": { "platform": "instagram", "endpoint": "search", "request_id": "req_abc123" } }
Response data is returned directly from the Yoinkit API.