douyin/search/challenge-search-v2
Fetch hashtag/challenge search results from Douyin App using V2 API. Supports searching by keyword and returns detailed challenge information, including name, cover image, view count, and participant count.
Input
Idle
Example output — click Run to generate your own
API README
Fetch hashtag search V2
Purpose:
- Fetch hashtag/challenge search results from Douyin App using V2 API.
- Supports searching by keyword and returns detailed challenge information, including name, cover image, view count, and participant count.
Notes:
- This API focuses on searching challenges (hashtags), not including videos or live streams.
- Set
cursorto 0 andsearch_idto an empty string for the first request. For pagination, use the cursor and search_id from the last response.
Parameters:
- keyword: Search keyword, e.g., "game"
- 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": "game",
"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):
business_data(list of hashtag search results)data_id: Unique identifier for the resulttype: Data type (fixed2)data.challenge_info:cid: Challenge IDcha_name: Challenge namedesc: Challenge descriptionschema: Challenge detail schema link (aweme:// schema, used to deep link inside Douyin App)hashtag_profile: URL of the hashtag cover imageuser_count: Number of participantsview_count: Number of viewschallenge_status: Status (1 = active, others = abnormal)author: Creator infouid: User IDnickname: Nicknameavatar_thumb.url_list: Thumbnail avatar URLsis_verified: Whether the creator is verifiedfollower_count: Number of followers
share_info:share_url: Shareable URLshare_title: Title for sharingshare_desc: Description for sharing
Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

