douyin/search/challenge-search-v1
Fetch hashtag/challenge search results from Douyin App. Returns related hashtag topics including name, view count, participants, and cover images.
Input
Idle
Example output — click Run to generate your own
API README
Fetch hashtag search V1
Purpose:
- Fetch hashtag/challenge search results from Douyin App.
- Returns related hashtag topics including name, view count, participants, and cover images.
Notes:
- Only hashtag type content is returned.
- Set
cursorto 0 andsearch_idto an empty string for the first request. - For pagination, use
cursorandsearch_idfrom the last response.
Parameters:
- keyword: Search keyword, e.g., "food"
- cursor: Pagination cursor (0 for first request)
- sort_type: Sorting method
0: Comprehensive1: Most likes2: Latest
- publish_time: Publish time filter
0: Unlimited1: Last day7: Last week180: Last half year
- filter_duration: Video duration filter
0: Unlimited0-1: Under 1 minute1-5: 1-5 minutes5-10000: Over 5 minutes
- content_type: Content type filter
0: Unlimited1: Video2: Image3: Article
- search_id: Search ID for pagination
Request Body Example:
payload = {
"keyword": "food",
"cursor": 0,
"sort_type": "0",
"publish_time": "0",
"filter_duration": "0",
"content_type": "0",
"search_id": ""
}
Response (common fields, actual response may contain more fields):
-
cursor: Cursor for next page -
has_more: Whether more results are available (1=Yes, 0=No) -
challenge_list[]: List of hashtagschallenge_info:cid: Challenge IDcha_name: Challenge name (e.g., "#FoodHunt")desc: Challenge descriptionschema: Deep link for Douyin Appshare_info:share_url: H5 shareable linkshare_title: Share titleshare_desc: Share description
view_count: Total view countuser_count: Total participant counthashtag_profile: Cover image URLchallenge_status: Challenge status (1=Normal, 0=Abnormal)
author:uid: Author's user IDnickname: Author's nicknamefollower_count: Follower countis_verified: Verified statusregion: Regionavatar_thumb.url_list: Thumbnail avatar URLsavatar_medium.url_list: Medium avatar URLsavatar_larger.url_list: Large avatar URLs
-
extra:now: Server timestampsearch_request_id: Unique search session ID
Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

