Install
openclaw skills install douyin-quick-searchSearch Douyin (抖音) content by natural language keyword. Supports video search, trending topics, and video detail extraction. Uses web search + page scraping (no API key required).
openclaw skills install douyin-quick-searchSearch Douyin videos by natural language — "搜索一下海鲜视频" just works.
Search and retrieve Douyin (抖音) video content using natural language queries:
This skill uses two layers:
No API keys, cookies, or login required.
douyin skill)douyin_searchTrigger: User wants to search Douyin content by keyword.
Steps:
Extract keywords from the user's natural language request.
海鲜视频做菜猫咪seafood cookingRun web_search with the keyword targeting Douyin:
web_search(query="<keyword> site:douyin.com", count=10)
Also run a broader search for richer results:
web_search(query="抖音 <keyword> 视频", count=10)
Parse results — extract from search results:
https://www.douyin.com/video/<id>https://www.douyin.com/search/<keyword>Enrich — for each distinct video URL found, optionally use web_fetch
to extract more detail. If the page is behind CAPTCHA, fall back to
search result metadata only.
Format output as a clean list:
🔍 抖音搜索:海鲜视频
━━━━━━━━━━━━━━━━━━━━━
1. **盘点捞汁小海鲜** — 看哪位主播吃的最过瘾
🔗 https://www.douyin.com/search/捞汁小海鲜
2. **全网最火主播吃海鲜合集**
🔗 https://www.douyin.com/search/全网最火主播吃海鲜合集
...
douyin_trendingTrigger: User asks about Douyin trending/hot topics (抖音热搜/热门/趋势).
Steps:
Run web_search:
web_search(query="抖音热搜榜 today", count=10, freshness="day")
Parse and format the trending topics.
douyin_detailTrigger: User provides a specific Douyin video URL or wants info about one.
Steps:
web_fetch(url=<douyin_video_url>) to extract metadata.web_search(query="site:douyin.com <video_id>").Always include:
For searches with no results:
https://www.douyin.com/search/<keyword>海鲜 over 海鲜视频大全最新douyin script optimization skill for content creation workflows