Skip to main content
GET
/
api
/
v1
/
openclaw
/
youtube
/
search
/
hashtag
Search by Hashtag
curl --request GET \
  --url https://yoinkit.ai/api/v1/openclaw/api/v1/openclaw/youtube/search/hashtag \
  --header 'Authorization: Bearer <token>'

Parameters

hashtag
string
required
Hashtag to search for (e.g., funny)
continuationToken
string
Continuation token to get more videos. Get ‘continuationToken’ from previous response. (e.g., 4qmFsgKrCBIYVUNkRkpXVWE0M3NtUm00SXBIQnB)
type
string
Search for all types of content or only shorts

Example Request

curl -X GET "https://yoinkit.ai/api/v1/openclaw/youtube/search/hashtag?hashtag=funny" \
  -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",
        "thumbnail": "...",
        "channel": {
          "id": "...",
          "title": "ZZang Funny"
        },
        "viewCountInt": 22668056,
        "publishedTimeText": "4 weeks ago",
        "lengthText": "1:00",
        "lengthSeconds": 60
      }
    ],
    "continuationToken": "4qmFsgLtBRIJRkVoYX...."
  },
  "meta": {
    "platform": "youtube",
    "endpoint": "search-hashtag",
    "request_id": "req_abc123"
  }
}
Response data is returned directly from the Yoinkit API.