用户与达人抖音达人指标 · 对比
抖音达人互动与粉丝趋势
对比最多 5 位公开达人近 7 天或 30 天的涨粉与互动变化。
POST
/v1/douyin/creators/trends/compare英文名称: Douyin creator engagement and follower trends · Creator Metrics · Compare Compare follower and engagement changes for up to five creators over 7 or 30 days.douyin.creators.trends.compare@v1
在线试用
登录后用真实参数调用一次,结果和扣费会显示在这里。
安全验证
正在加载安全验证…
正在确认实时执行状态…
执行结果
// Result
请求参数
creator_idsarray必填minItems: 1 · maxItems: 5
示例:
["3100268042915212"]window_daysnumber必填示例:
7
请求 JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"creator_ids": {
"minItems": 1,
"maxItems": 5,
"type": "array",
"items": {
"type": "string",
"pattern": "^\\d{5,32}$"
}
},
"window_days": {
"anyOf": [
{
"type": "number",
"const": 7
},
{
"type": "number",
"const": 30
}
]
}
},
"required": [
"creator_ids",
"window_days"
],
"additionalProperties": false
}代码示例
安装 SDK:npm i @dataxapi/sdk 或 pip install dataxapi;把 API Key 放进环境变量 DATAXAPI_API_KEY。
curl -X POST https://api.dataxapi.com/v1/douyin/creators/trends/compare \
-H "Authorization: Bearer $DATAXAPI_API_KEY" \
-H "Idempotency-Key: $(uuidgen)" \
-H "Content-Type: application/json" \
-d '{"creator_ids":["3100268042915212"],"window_days":7}'import { ExactApiClient } from "@dataxapi/sdk";
const client = new ExactApiClient({
baseUrl: "https://api.dataxapi.com",
apiKey: process.env.DATAXAPI_API_KEY,
});
const result = await client.call("douyin_creators_trends_compare_v1", {
"creator_ids": [
"3100268042915212"
],
"window_days": 7
});
console.log(result.data);import os
from dataxapi import ExactApiClient
client = ExactApiClient("https://api.dataxapi.com", os.environ["DATAXAPI_API_KEY"])
result = client.call("douyin_creators_trends_compare_v1", {
"creator_ids": [
"3100268042915212",
],
"window_days": 7,
})
print(result["data"])[mcp_servers.dataxapi]
url = "https://api.dataxapi.com/mcp"
bearer_token_env_var = "DATAXAPI_API_KEY"返回示例
200 · application/json
{
"code": 200,
"request_id": "req_example_douyin_batch5_social",
"message": "success",
"data": {
"window_days": 7,
"items": [
{
"queried_creator_id": "3100268042915212",
"name": "Public creator",
"profile_url": "https://www.douyin.com/user/MS4wLjABAAAA-public",
"avatar_url": "https://ci.douyin.com/avatar",
"current": {
"followers": 450148,
"likes": 6337607,
"videos": 55
},
"period_total": {
"followers": 3994,
"likes": 64811,
"shares": 8605,
"comments": 242,
"videos": 1
},
"daily_average": {
"followers": 1032,
"likes": 9258,
"shares": 1230,
"comments": 34,
"videos": null
},
"change_vs_previous_period": {
"followers": -0.3424,
"likes": -0.3558,
"shares": -0.427,
"comments": 0.1524,
"videos": 0
}
}
]
},
"page": {
"next_cursor": null
},
"warnings": [],
"meta": {
"listing_id": "douyin.creators.trends.compare",
"version": "v1",
"catalog_release_id": "catalog-production-2026-09-19.b069be57",
"price_book_version": "pricebook-production-2026-09-19.4487e352",
"result_status": "complete",
"charged_amount": "0.05",
"balance_after": "49.95",
"currency": "CNY"
}
}返回字段说明
codenumber- const: 200
request_idstringmessagestring- const: "success"
dataobjectpageobjectwarningsarraymetaobject
返回 JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"code": {
"type": "number",
"const": 200
},
"request_id": {
"type": "string"
},
"message": {
"type": "string",
"const": "success"
},
"data": {
"type": "object",
"properties": {
"window_days": {
"anyOf": [
{
"type": "number",
"const": 7
},
{
"type": "number",
"const": 30
}
]
},
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"queried_creator_id": {
"type": "string"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"profile_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"avatar_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"current": {
"type": "object",
"properties": {
"followers": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"likes": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"videos": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
}
},
"required": [
"followers",
"likes",
"videos"
],
"additionalProperties": false
},
"period_total": {
"type": "object",
"properties": {
"followers": {
"anyOf": [
{
"type": "integer",
"minimum": -9007199254740991,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"likes": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"shares": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"comments": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"videos": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
}
},
"required": [
"followers",
"likes",
"shares",
"comments",
"videos"
],
"additionalProperties": false
},
"daily_average": {
"type": "object",
"properties": {
"followers": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"likes": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"shares": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"comments": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"videos": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"followers",
"likes",
"shares",
"comments",
"videos"
],
"additionalProperties": false
},
"change_vs_previous_period": {
"type": "object",
"properties": {
"followers": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"likes": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"shares": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"comments": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"videos": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"followers",
"likes",
"shares",
"comments",
"videos"
],
"additionalProperties": false
}
},
"required": [
"queried_creator_id",
"name",
"profile_url",
"avatar_url",
"current",
"period_total",
"daily_average",
"change_vs_previous_period"
],
"additionalProperties": false
}
}
},
"required": [
"window_days",
"items"
],
"additionalProperties": false
},
"page": {
"type": "object",
"properties": {
"next_cursor": {
"type": "null"
}
},
"required": [
"next_cursor"
],
"additionalProperties": false
},
"warnings": {
"type": "array",
"items": {
"type": "string"
}
},
"meta": {
"type": "object",
"properties": {
"listing_id": {
"type": "string",
"const": "douyin.creators.trends.compare"
},
"version": {
"type": "string",
"const": "v1"
},
"catalog_release_id": {
"type": "string",
"minLength": 1
},
"price_book_version": {
"type": "string",
"minLength": 1
},
"result_status": {
"type": "string",
"enum": [
"complete",
"empty",
"partial"
]
},
"charged_amount": {
"type": "string"
},
"balance_after": {
"type": "string"
},
"currency": {
"type": "string",
"const": "CNY"
}
},
"required": [
"listing_id",
"version",
"catalog_release_id",
"price_book_version",
"result_status",
"charged_amount",
"balance_after",
"currency"
],
"additionalProperties": false
}
},
"required": [
"code",
"request_id",
"message",
"data",
"page",
"warnings",
"meta"
],
"additionalProperties": false
}使用说明
适合
- 需要在同一窗口比较多个达人当前涨粉和互动表现。
不适合
- 不用于证明增长因果、预测未来表现或替代达人后台分析。
已知限制
- 一次最多比较 5 个互不重复的纯数字达人 UID,仅支持 7 天或 30 天窗口。
- V1 会把上游编码身份核对到全部请求 UID 并恢复请求顺序;数量、身份或唯一性不一致时失败关闭且不收费。
- 变化率是与前一同长度窗口的公开统计对比,不证明内容与涨粉之间存在因果。
计费规则
¥0.05 / 次。完整或确认空结果收费;部分结果和失败不收费。
查看全部价格 →