douyin/search/live-search-v1
Fetch live stream search results from Douyin App. Returns information about live rooms including streamer profile, cover image, viewer count, and stream URLs.
Input
Idle
Example output — click Run to generate your own
API README
Fetch live search V1
Purpose:
- Fetch live stream search results from Douyin App.
- Returns information about live rooms including streamer profile, cover image, viewer count, and stream URLs.
Notes:
- Only live streaming content is returned.
- Set
cursorto 0 andsearch_idto an empty string for the first request. - Use the last response's
cursorandsearch_idfor pagination.
Parameters:
- keyword: Search keyword, e.g., "games"
- 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: Unlimited
- content_type: Content type (fixed for live stream)
- search_id: Search ID for pagination
Request Body Example:
payload = {
"keyword": "games",
"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):
cursor: Cursor for next pagehas_more: Whether there are more results (1=Yes, 0=No)data[]: List of live stream roomstype: Result type (fixed to 1)lives:aweme_id: Related content IDgroup_id: Group IDauthor:uid: Streamer's user IDnickname: Streamer's nicknameshort_id: Streamer's short IDavatar_thumb.url_list: Thumbnail avatar URLsavatar_medium.url_list: Medium avatar URLsavatar_larger.url_list: Large avatar URLsroom_id: Room IDroom_cover.url_list: Room cover image URLs
video:tags[]: Live tags (e.g., "Gaming", "Chatting")title: Tag titleurl.url_list: Tag icon URLs
rawdata: Raw live room data (as JSON string)title: Live titleuser_count: Current viewer countstream_url: Stream URLsflv_pull_url: FLV stream URLs by resolutionhls_pull_url: HLS stream URL (optional)
cover.url_list: Room cover imagesize: Resolution (e.g., 1920x1080)stats.total_user: Viewer count
extra:now: Current server timestamplogid: Request log IDsearch_request_id: Unique search session ID
Imported from a validated TikHub OpenAPI document. Pricing must be reviewed before enabling.

