Install
openclaw skills install douyin-tiktok-trendsFetch and analyze current trending topics, hashtags, songs, and creators on Douyin/TikTok. Triggered when the user wants to know "what's trending on TikTok/Douyin right now", "hot topics", "trending hashtags", "content trends", or asks for TikTok trend analysis. Uses TikTok's official Creative Center as the primary data source.
openclaw skills install douyin-tiktok-trendsTikTok Creative Center — the official advertiser-facing trend dashboard:
https://ads.tiktok.com/business/creativecenter/https://ads.tiktok.com/business/creativecenter/inspiration/popular/hashtag/pc/en
→ Returns Top 20 trending hashtags with post counts. Data format: #hashtag · NMPosts
https://ads.tiktok.com/business/creativecenter/trends/home/pc/en
→ Returns top 5 trending songs with artist names and commercial-use badges.
https://ads.tiktok.com/business/creativecenter/hashtag/{hashtag-name}/pc/en
→ Returns: post counts, trend chart, audience demographics, related hashtags, regional popularity.
https://ads.tiktok.com/business/creativecenter/inspiration/popular/creator/pc/en
https://ads.tiktok.com/business/creativecenter/inspiration/popular/pc/en
Always start here — it gives the broadest view of what's hot:
web_fetch(url="https://ads.tiktok.com/business/creativecenter/inspiration/popular/hashtag/pc/en", maxChars=10000)
web_fetch(url="https://ads.tiktok.com/business/creativecenter/trends/home/pc/en", maxChars=10000)
Pick the top hashtags from Step 1 for deeper insights:
web_fetch(url="https://ads.tiktok.com/business/creativecenter/hashtag/{name}/pc/en", maxChars=5000)
Extract from raw HTML and format as:
## TikTok Trending — [Date]
### Top Hashtags
| Rank | Hashtag | Posts | Category |
|------|---------|-------|----------|
| 1 | #eidmubarak | 1M | Celebration |
...
### Trending Songs
| Rank | Song | Artist | Commercial? |
|------|------|--------|------------|
| 1 | Pyre (STEM synth) | Altitude Music / BMGPM | ✅ |
### Trending Creators
| Creator | Followers | Likes |
|---------|-----------|-------|
| Fernanda | 9M | 668M |
### Top Hashtag Deep Dives
**#[name]**
- Posts: N (last 7 days) / M (overall)
- Top regions: Country1, Country2, ...
- Audience: [age range]
- Related interests: [categories]
When user asks for simple format, output as:
Topic: [hashtag/song/topic name]
Heat: [post count or engagement number]
Trend: [↑ rising / → stable / 🆕 new entry]
Example:
#eidmubarak · 1M Posts · ↑ Rising (Ramadan season)
#marchmadness · 54K Posts · → Stable (Sports event)
#spiderman · 184K Posts · 🆕 New Entry (Movie release)
web_fetch works fine on TikTok Creative Center (unlike the main TikTok.com which requires JS rendering)