cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/douyin/app/fetch_video_statistics?aweme_ids=7448118827402972455%2C7644456381004664090' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/douyin/app/fetch_video_statistics',
params={"aweme_ids": "7448118827402972455,7644456381004664090"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"aweme_ids": "7448118827402972455,7644456381004664090"});
const response = await fetch(`https://api.keyapi.ai/v1/douyin/app/fetch_video_statistics?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {},
"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
根据aweme_id获取作品的统计数据(点赞数、下载数、播放数、分享数)
根据视频ID获取作品的统计数据,抖音大多数接口已经不再返回作品的播放数。
- 通过此接口可以获取到的统计有:
- 点赞数(digg_count)
- 下载数(download_count)
- 播放数(play_count)
- 分享数(share_count)
GET
/
v1
/
douyin
/
app
/
fetch_video_statistics
cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/douyin/app/fetch_video_statistics?aweme_ids=7448118827402972455%2C7644456381004664090' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/douyin/app/fetch_video_statistics',
params={"aweme_ids": "7448118827402972455,7644456381004664090"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"aweme_ids": "7448118827402972455,7644456381004664090"});
const response = await fetch(`https://api.keyapi.ai/v1/douyin/app/fetch_video_statistics?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {},
"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"
}🪙1 credit每次请求
Copy for AI
🤖 让 AI 帮你写调用代码
点击按钮复制一段结构化提示词,可直接交给 ChatGPT、Claude 或其他 AI 助手生成接口调用代码。

