cURL
curl --request GET \ --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/youtube/search/hashtag \ --header 'Authorization: Bearer <token>'
{ "success": true, "data": { "videos": [ {} ] }, "meta": {} }
Search for YouTube videos by hashtag
Show Hashtag search results
curl -X GET "https://yoinkit.ai/api/v1/openclaw/youtube/search/hashtag?hashtag=funny&limit=10" \ -H "Authorization: Bearer YOUR_API_TOKEN"
{ "success": true, "data": { "videos": [ { "type": "video", "id": "jXMISgQq9MM", "url": "https://www.youtube.com/watch?v=jXMISgQq9MM", "title": "Epic fails #shorts #funny #fails", "description": "", "thumbnail": "https://i.ytimg.com/vi/jXMISgQq9MM/hqdefault.jpg", "channel": { "id": "UCvUzWu1Whyw1FWuLl9GOo_g", "title": "FunnyClips" } } ] }, "meta": { "platform": "youtube", "endpoint": "search/hashtag", "credits_used": 1, "request_id": "req_abc123def456" } }