获取用户搜索 V2/Fetch user search V2
[中文]#
用途:#
备注:#
返回的数据仅包含「用户信息」,不包括视频、话题、音乐等内容。
参数:#
请求体示例:#
payload = {
"keyword": "人工智能",
"cursor": 0
}
返回(部分常用字段,实际返回字段更多,一切以实际响应为准):#
has_more: 是否还有更多数据(1=有,0=无)
avatar_thumb.url_list: 小头像地址
avatar_medium.url_list: 中头像地址
avatar_larger.url_list: 大头像地址
live_status: 是否正在直播(0=否,1=是)
enterprise_verify_reason: 企业认证信息(若有)
versatile_display: 抖音号展示文案(例如"抖音号:xxx")
search_request_id: 搜索请求ID
[English]#
Purpose:#
Fetch a list of users from Douyin App based on search keywords.
Supports filtering by fan count and user type.
Notes:#
Only user information is returned. No videos, music, or hashtags.
Parameters:#
keyword: Search keyword, e.g., "AI"
cursor: Pagination cursor (0 for first page)
Request Body Example:#
payload = {
"keyword": "AI",
"cursor": 0
}
Response (common fields, actual response may contain more fields):#
cursor: Cursor for next page
has_more: Whether more data is available (1=Yes, 0=No)
user_list[]: List of usersgender: Gender (0=Unknown, 1=Male, 2=Female)
follower_count: Number of followers
avatar_thumb.url_list: List of thumbnail avatar URLs
avatar_medium.url_list: List of medium avatar URLs
avatar_larger.url_list: List of large avatar URLs
follow_status: Whether followed
live_status: Whether live
enterprise_verify_reason: Enterprise verification info (if any)
versatile_display: Display text (e.g., "Douyin ID: xxx")
now: Current server timestamp
search_request_id: Search request ID
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
or
Body Params application/jsonRequired
Request Code Samples
curl --location --request POST 'https://api.tikomni.com/api/u1/v1/douyin/search/fetch_user_search_v2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{}'
Modified at 2026-04-23 01:11:20