- MoreAPI接口说明
- 用户登录注册
- 自助充值
- 更新记录
- 用户
- 抖音API
- 获取视频详情POST
- 批量获取视频详情POST
- 获取视频详情 V3POST
- 获取视频详情V4POST
- 批量解析视频详情POST
- 获取视频涨粉数量POST
- 获取用户信息POST
- 获取用户信息 _V2POST
- 获取用户信息 _V3POST
- 获取用户信息 _V4POST
- 获取用户标签POST
- 通过UID获取用户信息POST
- 通过抖音号获取用户信息POST
- 获取用户主页发布POST
- 获取用户最新作品V2POST
- 获取用户主页作品分析数据POST
- 获取用户合集POST
- 获取合集信息POST
- 获取合集视频列表POST
- 搜索用户指定作品POST
- 用户喜欢的作品POST
- 获取视频一级评论POST
- 获取视频子评论POST
- 获取用户短剧集POST
- 获取短剧详细信息POST
- 获取短剧视频列表POST
- 获取同城视频POST
- 获取同城直播POST
- 综合搜索POST
- 综合搜索v2POST
- 搜索视频POST
- 搜索用户POST
- 搜索用户_v2POST
- 搜索用户V3POST
- 搜索音乐POST
- 获取 音乐详情POST
- 获取音乐相关视频POST
- 搜索直播用户POST
- 获取直播间信息与视频流直链POST
- 根据ID获取直播间信息POST
- 检查用户直播状 态POST
- 获取开放直播间用户列表POST
- 搜索话题POST
- 获取话题详情POST
- 获取话题视频POST
- 获取话题视频 _v2POST
- 获取视频弹幕POST
- 获取视频短连接POST
- 生成视频抖音码POST
- 搜索长尾关键词POST
- 热点讨论POST
- 用户橱窗销售信息POST
- 获取协议链接POST
- TikTok
- Lemon8
- 快手API
- 小红薯API
- 微博API
- 哔哩哔哩API
- 头条 | 西瓜 API
- 榜单API
- youtube
- KOL红薯、KOL抖音
- 创作者API
搜索长尾关键词
POST
http://api.moreapi.cn/api/douyin/search_sug
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Body 参数application/json
keyword
string
搜索关键词
proxy
可选
Any of
示例
{
"keyword": "datangg"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://api.moreapi.cn/api/douyin/search_sug' \
--header 'Content-Type: application/json' \
--data-raw '{
"keyword":"datangg"
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
msg
string
必需
data
object
必需
sug_list
array [object {5}]
必需
sug_virtual_list
null
必需
status_code
integer
必需
status_msg
string
必需
rid
string
必需
words_query_record
object
必需
extra
object
必需
log_pb
object
必需
time_cost
object
必需
words_lists
array[string]
必需
cache_conf
object
必需
示例
{
"code": 0,
"msg": "string",
"data": {
"sug_list": [
{
"pos": [
{
"begin": 0,
"end": 0
}
],
"content": "string",
"sug_type": "string",
"word_record": {
"group_id": "string",
"words_position": 0,
"words_content": "string",
"words_source": "string"
},
"extra_info": {
"client_server_extra": "string",
"poi_id": "string",
"poi_location_recall_log_id": "string",
"search_params": "string",
"rich_sug_avatar_uri": "string",
"rich_sug_cert_name": "string",
"rich_sug_match_type": "string",
"rich_sug_nickname": "string",
"rich_sug_sec_uid": "string",
"rich_sug_short_id": "string",
"rich_sug_type": "string",
"rich_sug_user_id": "string",
"rich_sug_user_type": "string",
"special_type": "string"
}
}
],
"sug_virtual_list": null,
"status_code": 0,
"status_msg": "string",
"rid": "string",
"words_query_record": {
"info": "string",
"words_source": "string",
"query_id": "string"
},
"extra": {
"now": 0,
"logid": "string",
"fatal_item_ids": [
"string"
],
"search_request_id": "string"
},
"log_pb": {
"impr_id": "string"
},
"time_cost": {
"stream_inner": "string",
"server_engine_cost": "string"
},
"words_lists": [
"string"
],
"cache_conf": {
"enable": true
}
}
}
修改于 2025-03-14 07:48:03