douyin/search/experience-search
Fetch experience (knowledge/tutorial) content search results from Douyin App. Retrieves video results related to knowledge sharing, tutorials, or tips based on the input keyword.
Input
Idle
Example output — click Run to generate your own
API README
Fetch experience search
Purpose:
- Fetch experience (knowledge/tutorial) content search results from Douyin App.
- Retrieves video results related to knowledge sharing, tutorials, or tips based on the input keyword.
Notes:
- This API focuses on experience-related videos and does not include other content types.
- Set
cursorto 0 andsearch_idto an empty string for the first request; for pagination, use the previous cursor and search_id. - The response includes rich information such as video details, author profile, background music, hashtags, video URLs, and engagement statistics.
Parameters:
- keyword: Search keyword, e.g., "gaming guide"
- cursor: Pagination cursor (0 for first page)
- 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: Within 1 minute1-5: 1 to 5 minutes5-10000: More than 5 minutes
- content_type: Content type filter (usually fixed to video)
- search_id: Search ID for pagination
Request Body Example:
payload = {
"keyword": "gaming guide",
"cursor": 0,
"sort_type": 0,
"publish_time": 0,
"filter_duration": 0,
"content_type": 1,
"search_id": ""
}
Response (common fields, actual response may contain more fields):
- business_data: List of business data blocks
- data_id: Data block ID
- type: Data type (e.g., 999 for content list)
- data:
- height: Display height
- aweme_list: List of videos
- aweme_id: Video ID
- desc: Video description
- create_time: Creation timestamp
- author: Author profile
- uid: User ID
- nickname: User nickname
- avatar_thumb.url_list: Thumbnail avatar URLs
- is_verified: Whether the author is verified
- follower_count: Number of followers
- music: Background music information
- id_str: Music ID
- title: Music title
- author: Music author's name
- cha_list: Associated hashtags
- cha_name: Hashtag name
- video: Video playback info
- play_addr.url_list: List of video play URLs
- cover.url_list: List of video cover image URLs
- width: Video width
- height: Video height
- duration: Video duration in milliseconds
- statistics: Video engagement data
- digg_count: Number of likes
- comment_count: Number of comments
- share_count: Number of shares
- play_count: Number of plays
- status: Video status information
- is_delete: Whether the video was deleted
- is_private: Whether the video is private
- share_url: External share link of the video
Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

