curl --request POST \
--url https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cookie": "Your_Cookie_Here",
"start_time": 1758988800000,
"end_time": 1760198399000,
"count": 10,
"order_by": 1,
"fields": "metrics,review,visibility",
"need_cooperation": true,
"need_long_article": true
}
'import requests
url = "https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list"
payload = {
"cookie": "Your_Cookie_Here",
"start_time": 1758988800000,
"end_time": 1760198399000,
"count": 10,
"order_by": 1,
"fields": "metrics,review,visibility",
"need_cooperation": True,
"need_long_article": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
cookie: 'Your_Cookie_Here',
start_time: 1758988800000,
end_time: 1760198399000,
count: 10,
order_by: 1,
fields: 'metrics,review,visibility',
need_cooperation: true,
need_long_article: true
})
};
fetch('https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'cookie' => 'Your_Cookie_Here',
'start_time' => 1758988800000,
'end_time' => 1760198399000,
'count' => 10,
'order_by' => 1,
'fields' => 'metrics,review,visibility',
'need_cooperation' => true,
'need_long_article' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list"
payload := strings.NewReader("{\n \"cookie\": \"Your_Cookie_Here\",\n \"start_time\": 1758988800000,\n \"end_time\": 1760198399000,\n \"count\": 10,\n \"order_by\": 1,\n \"fields\": \"metrics,review,visibility\",\n \"need_cooperation\": true,\n \"need_long_article\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"cookie\": \"Your_Cookie_Here\",\n \"start_time\": 1758988800000,\n \"end_time\": 1760198399000,\n \"count\": 10,\n \"order_by\": 1,\n \"fields\": \"metrics,review,visibility\",\n \"need_cooperation\": true,\n \"need_long_article\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"cookie\": \"Your_Cookie_Here\",\n \"start_time\": 1758988800000,\n \"end_time\": 1760198399000,\n \"count\": 10,\n \"order_by\": 1,\n \"fields\": \"metrics,review,visibility\",\n \"need_cooperation\": true,\n \"need_long_article\": true\n}"
response = http.request(request)
puts response.read_body获取投稿作品列表
获取投稿作品列表
curl --request POST \
--url https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cookie": "Your_Cookie_Here",
"start_time": 1758988800000,
"end_time": 1760198399000,
"count": 10,
"order_by": 1,
"fields": "metrics,review,visibility",
"need_cooperation": true,
"need_long_article": true
}
'import requests
url = "https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list"
payload = {
"cookie": "Your_Cookie_Here",
"start_time": 1758988800000,
"end_time": 1760198399000,
"count": 10,
"order_by": 1,
"fields": "metrics,review,visibility",
"need_cooperation": True,
"need_long_article": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
cookie: 'Your_Cookie_Here',
start_time: 1758988800000,
end_time: 1760198399000,
count: 10,
order_by: 1,
fields: 'metrics,review,visibility',
need_cooperation: true,
need_long_article: true
})
};
fetch('https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'cookie' => 'Your_Cookie_Here',
'start_time' => 1758988800000,
'end_time' => 1760198399000,
'count' => 10,
'order_by' => 1,
'fields' => 'metrics,review,visibility',
'need_cooperation' => true,
'need_long_article' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list"
payload := strings.NewReader("{\n \"cookie\": \"Your_Cookie_Here\",\n \"start_time\": 1758988800000,\n \"end_time\": 1760198399000,\n \"count\": 10,\n \"order_by\": 1,\n \"fields\": \"metrics,review,visibility\",\n \"need_cooperation\": true,\n \"need_long_article\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"cookie\": \"Your_Cookie_Here\",\n \"start_time\": 1758988800000,\n \"end_time\": 1760198399000,\n \"count\": 10,\n \"order_by\": 1,\n \"fields\": \"metrics,review,visibility\",\n \"need_cooperation\": true,\n \"need_long_article\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"cookie\": \"Your_Cookie_Here\",\n \"start_time\": 1758988800000,\n \"end_time\": 1760198399000,\n \"count\": 10,\n \"order_by\": 1,\n \"fields\": \"metrics,review,visibility\",\n \"need_cooperation\": true,\n \"need_long_article\": true\n}"
response = http.request(request)
puts response.read_bodycode 为 200 时计费。
示例
curl -X POST "https://api.aisa.one/apis/v1/tikhub/douyin/creator_v2/fetch_item_list" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{}' # 请求体结构见下方 schema
授权
AIsa API key. Get yours at https://aisa.one
请求体
投稿作品列表请求参数/Item list request parameters
用户Cookie/User Cookie
"Your_Cookie_Here"
开始时间戳(毫秒)/Start time timestamp (milliseconds)
1758988800000
结束时间戳(毫秒)/End time timestamp (milliseconds)
1760198399000
每页数量/Count per page (最多100条)
10
排序方式/Order by (1-26): 1=发布时间↓(新到旧), 2=发布时间↑(旧到新), 3=播放量↓, 4=播放量↑, 5=点赞量↓, 6=点赞量↑, 7=评论量↓, 8=评论量↑, 9=分享量↓, 10=分享量↑, 11=收藏量↓, 12=收藏量↑, 13=2s跳出率↓, 14=2s跳出率↑, 15=5s完播率↓, 16=5s完播率↑, 17=完播率↓, 18=完播率↑, 19=封面点击率↓, 20=封面点击率↑, 21=平均播放时长↓, 22=平均播放时长↑, 23=主页访问量↓, 24=主页访问量↑, 25=粉丝增量↓, 26=粉丝增量↑
1
需要返回的字段/Fields to return
"metrics,review,visibility"
是否需要合作信息/Need cooperation info
true
是否包含长图文/Include long articles
true
分页游标/Pagination cursor (可选)
响应
Successful response. 以实际调用为准 / Response structure varies; refer to the actual API response.