cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/douyin/app/fetch_brand_hot_search_list' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/douyin/app/fetch_brand_hot_search_list',
params={},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({});
const response = await fetch(`https://api.keyapi.ai/v1/douyin/app/fetch_brand_hot_search_list?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"status_code": 0,
"status_msg": "",
"banner_url": {
"uri": "daa7000a0f0d6a308320",
"url_list": [
"https://p3-sign.douyinpic.com/obj/daa7000a0f0d6a308320?x-expires=1787281200&x-signature=c9XIB1JBTqX8ygG5stbYWW%2Bu9Go%3D&from=3158387923",
"https://p26-sign.douyinpic.com/obj/daa7000a0f0d6a308320?x-expires=1787281200&x-signature=ncbZSMgSaW4t9BCnGd3R5mKSl1o%3D&from=3158387923",
"https://p5-ex-gddgtc-sign.douyinpic.com/obj/daa7000a0f0d6a308320?x-expires=1787281200&x-signature=ngo6%2B4ThtnwfCZYLDP1bCtWasDE%3D&from=3158387923"
]
},
"category_list": [
{
"name": "汽车",
"id": 10
},
{
"id": 11,
"name": "手机"
},
{
"id": 12,
"name": "美妆"
},
{
"id": 34,
"name": "奢侈品"
},
{
"id": 14,
"name": "食品饮料"
},
{
"id": 28,
"name": "家用电器"
},
{
"id": 16,
"name": "服饰鞋帽"
},
{
"id": 20,
"name": "母婴"
},
{
"id": 13,
"name": "日化"
},
{
"id": 999,
"name": "游戏"
},
{
"id": 27,
"name": "大健康"
},
{
"name": "餐饮",
"id": 32
},
{
"id": 21,
"name": "酒旅"
}
],
"extra": {
"fatal_item_ids": [],
"logid": "202608201149568418FC83FC4295FA7A45",
"now": 1787197796000
},
"log_pb": {
"impr_id": "202608201149568418FC83FC4295FA7A45"
}
},
"requestId": "2c59c78f-a0fc-4adc-8201-d801a05b8412"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}Douyin App API
获取抖音品牌热榜分类数据
获取抖音品牌热榜分类数据,无需传递任何参数
GET
/
v1
/
douyin
/
app
/
fetch_brand_hot_search_list
cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/douyin/app/fetch_brand_hot_search_list' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/douyin/app/fetch_brand_hot_search_list',
params={},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({});
const response = await fetch(`https://api.keyapi.ai/v1/douyin/app/fetch_brand_hot_search_list?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"status_code": 0,
"status_msg": "",
"banner_url": {
"uri": "daa7000a0f0d6a308320",
"url_list": [
"https://p3-sign.douyinpic.com/obj/daa7000a0f0d6a308320?x-expires=1787281200&x-signature=c9XIB1JBTqX8ygG5stbYWW%2Bu9Go%3D&from=3158387923",
"https://p26-sign.douyinpic.com/obj/daa7000a0f0d6a308320?x-expires=1787281200&x-signature=ncbZSMgSaW4t9BCnGd3R5mKSl1o%3D&from=3158387923",
"https://p5-ex-gddgtc-sign.douyinpic.com/obj/daa7000a0f0d6a308320?x-expires=1787281200&x-signature=ngo6%2B4ThtnwfCZYLDP1bCtWasDE%3D&from=3158387923"
]
},
"category_list": [
{
"name": "汽车",
"id": 10
},
{
"id": 11,
"name": "手机"
},
{
"id": 12,
"name": "美妆"
},
{
"id": 34,
"name": "奢侈品"
},
{
"id": 14,
"name": "食品饮料"
},
{
"id": 28,
"name": "家用电器"
},
{
"id": 16,
"name": "服饰鞋帽"
},
{
"id": 20,
"name": "母婴"
},
{
"id": 13,
"name": "日化"
},
{
"id": 999,
"name": "游戏"
},
{
"id": 27,
"name": "大健康"
},
{
"name": "餐饮",
"id": 32
},
{
"id": 21,
"name": "酒旅"
}
],
"extra": {
"fatal_item_ids": [],
"logid": "202608201149568418FC83FC4295FA7A45",
"now": 1787197796000
},
"log_pb": {
"impr_id": "202608201149568418FC83FC4295FA7A45"
}
},
"requestId": "2c59c78f-a0fc-4adc-8201-d801a05b8412"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}⌘I

