cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/tiktok/covers/batch-download' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/tiktok/covers/batch-download',
params={},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const response = await fetch('https://api.keyapi.ai/v1/tiktok/covers/batch-download',
{
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
}
);
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"source_cover_url1": "dest_cover_url1",
"source_cover_url2": "dest_cover_url2",
"source_cover_url3": "dest_cover_url3"
},
"requestId": "9660d7b7-6183-4dc1-9a12-dd07b229f771"
}{
"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"
}TikTok 内容数据
获取视频下载地址
批量下载多个 TikTok 视频封面图片,适用于内容批处理和归档。
GET
/
v1
/
tiktok
/
covers
/
batch-download
cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/tiktok/covers/batch-download' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/tiktok/covers/batch-download',
params={},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const response = await fetch('https://api.keyapi.ai/v1/tiktok/covers/batch-download',
{
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
}
);
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"source_cover_url1": "dest_cover_url1",
"source_cover_url2": "dest_cover_url2",
"source_cover_url3": "dest_cover_url3"
},
"requestId": "9660d7b7-6183-4dc1-9a12-dd07b229f771"
}{
"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 助手生成接口调用代码。
⌘I

