Skip to main content
GET
https://yoinkit.ai/api/v1/openclaw
/
api
/
v1
/
openclaw
/
youtube
/
search
/
hashtag
YouTube Search by Hashtag
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": {}
}

Parameters

hashtag
string
required
The hashtag to search for (without the # symbol)
limit
integer
Maximum number of results to return (default: 10)

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/youtube/search/hashtag?hashtag=funny&limit=10" \
  -H "Authorization: Bearer YOUR_API_TOKEN"

Example Response

{
  "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"
  }
}