Explore our Marketplace to buy and sell APIs, services, and social media solutions. Connect with a vibrant community of developers, businesses, and creators!
| 类型值 | 体裁名称 | 说明 | 使用场景 |
|---|---|---|---|
| 1 | 1min以内视频 | 短视频 | 快速传播,高互动 |
| 2 | 1-3min视频 | 中短视频 | 平衡内容与时长 |
| 3 | 3-5min视频 | 中长视频 | 深度内容呈现 |
| 4 | 5min+视频 | 长视频 | 专业内容,深度分析 |
| 5 | 图文 | 图文作品 | 图片+文字形式 |
| 8 | 长图文 | 长图文作品 | 深度图文内容 |
new Date('2025-07-01').getTime() -> 1719763200000int(datetime(2025, 7, 1).timestamp() * 1000) -> 1719763200000| Type | Genre Name | Description | Use Case |
|---|---|---|---|
| 1 | <1min video | Short video | Fast spread, high engagement |
| 2 | 1-3min video | Medium-short video | Balance content & duration |
| 3 | 3-5min video | Medium-long video | Deep content presentation |
| 4 | 5min+ video | Long video | Professional content, deep analysis |
| 5 | Image post | Image post | Picture + text format |
| 8 | Long image post | Long image post | Deep image-text content |
new Date('2025-07-01').getTime() -> 1719763200000int(datetime(2025, 7, 1).timestamp() * 1000) -> 1719763200000{
"cookie": "Your_Cookie_Here",
"min_cursor": 1752336000000,
"max_cursor": 1760198399000,
"type_filters": [1, 2, 3, 4, 5, 8],
"need_long_article": true
}
{
"cookie": "Your_Cookie_Here",
"min_cursor": 1752336000000,
"max_cursor": 1760198399000,
"type_filters": [1, 2, 3, 4],
"need_long_article": false
}
{
"cookie": "Your_Cookie_Here",
"min_cursor": 1752336000000,
"max_cursor": 1760198399000,
"type_filters": [5, 8],
"need_long_article": true
}
Content-Disposition: attachment; filename="作品列表导出.xlsx"使用 cURL 下载:
curl -X POST "https://your-api.com/api/v1/douyin_creator_v2/fetch_item_list_download" -H "Authorization: Bearer YOUR_TOKEN" -H "Content-Type: application/json" -d '{
"cookie": "Your_Cookie_Here",
"min_cursor": 1752336000000,
"max_cursor": 1760198399000,
"type_filters": [1,2,3,4,5,8]
}' -o "作品列表导出.xlsx"
使用 Python requests:
import requests
response = requests.post(
"https://your-api.com/api/v1/douyin_creator_v2/fetch_item_list_download",
headers={"Authorization": "Bearer YOUR_TOKEN"},
json={
"cookie": "Your_Cookie_Here",
"min_cursor": 1752336000000,
"max_cursor": 1760198399000,
"type_filters": [1,2,3,4,5,8]
}
)
# 保存文件
with open("作品列表导出.xlsx", "wb") as f:
f.write(response.content)
使用 JavaScript (Axios):
const axios = require('axios');
const fs = require('fs');
axios.post('https://your-api.com/api/v1/douyin_creator_v2/fetch_item_list_download', {
cookie: 'Your_Cookie_Here',
min_cursor: 1752336000000,
max_cursor: 1760198399000,
type_filters: [1,2,3,4,5,8]
}, {
headers: { 'Authorization': 'Bearer YOUR_TOKEN' },
responseType: 'arraybuffer'
}).then(response => {
fs.writeFileSync('作品列表导出.xlsx', response.data);
});
Authorization: Bearer ********************{
"cookie": "Your_Cookie_Here",
"min_cursor": 1752336000000,
"max_cursor": 1760198399000,
"type_filters": [
2,
3,
4,
5,
1,
8
],
"need_long_article": true
}curl --location --request POST 'https://api.tikhub.io/api/v1/douyin/creator_v2/fetch_item_list_download' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"cookie": "Your_Cookie_Here",
"min_cursor": 1752336000000,
"max_cursor": 1760198399000,
"type_filters": [
2,
3,
4,
5,
1,
8
],
"need_long_article": true
}'null