Skip to main content

GET /webcast/hashtag_list

Get currently trending live stream hashtags from TikTok. Returns hashtag names, live viewer counts, and associated metadata. Response data: Each hashtag includes id, title (the hashtag text), user_count (total viewers across all streams using this hashtag), and related metadata. Results are sorted by popularity. Use cases: Discover trending topics for content strategy, build hashtag explorers, analyze live streaming trends over time, or filter the feed by popular hashtags. Pagination: Use the count parameter to control results per page (default: 20, max: 50). The endpoint uses TikTok’s internal trending algorithm, so results update frequently as trending topics shift.

Parameters

ParameterTypeRequiredDescription
countnumberNoNumber of results (default: 20, max: 50)

Response

{ "status_code": 0, "data": [{ "id": "...", "title": "#gaming", "user_count": 15000 }, ...] }

Examples

const res = await fetch('https://api.tik.tools/webcast/hashtag_list?count=10&apiKey=YOUR_KEY');
const { data } = await res.json();
data.forEach(tag => console.log(tag.title));