Douyin Xingtu creator search
Search Xingtu creators by nickname or content query with bounded public filters.
/v1/douyin/xingtu/creators/searchChinese name: 抖音星图达人搜索 · 达人 · 搜索 按昵称或内容词搜索星图达人,并返回公开规模、表现与报价快照。douyin.xingtu.creators.search@v1
Price per call
¥0.05/ call
Complete and confirmed empty results are charged; partial results and failures are not.
Checking live statusTry it
This API is coming soon
We are running launch checks. Once live, you can try it right here at the price shown above; nothing is charged before then. You can already read the parameters and response example.
Available now on the same platform
- Douyin video search
- Douyin user search
- Douyin general search
- Douyin video detail
- Douyin video comments
- Douyin comment replies
- Douyin user profile
- Douyin user videos
- Douyin hot search
- Douyin rising trends
- Douyin low-follower viral ranking
- Douyin high-completion ranking
- Douyin mix detail
- Douyin mix videos
- Douyin batch video detail
- Douyin related videos
- Douyin music detail
- Douyin videos by music
- Douyin high-like-rate ranking
- Douyin high-follower-conversion ranking
- Douyin hashtag detail
- Douyin hashtag videos
- Douyin similar creators
- Douyin creator engagement and follower trends
- Douyin topic ranking
- Douyin hot search terms
- Douyin Xingtu creator batch info
- Douyin Xingtu creator audience
- Douyin Xingtu creator video performance
Sign in and run one real call. The result and charge appear right here.
Security check
Loading the security check…
Checking live execution status…
Execution result
// Result
Request parameters
querystringrequiredminLength: 1 · maxLength: 64
Example:
"健身"search_bystringoptionalenum: "nickname" | "content"
Example:
"nickname"genderstringoptionalenum: "any" | "male" | "female"
followers_minintegeroptionalminimum: 0 · maximum: 9007199254740991
followers_maxintegeroptionalminimum: 0 · maximum: 9007199254740991
cursorstringoptionalminLength: 1
Request JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"search_by": {
"type": "string",
"enum": [
"nickname",
"content"
]
},
"gender": {
"type": "string",
"enum": [
"any",
"male",
"female"
]
},
"followers_min": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"followers_max": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"cursor": {
"type": "string",
"minLength": 1
}
},
"required": [
"query"
],
"additionalProperties": false
}Code samples
Install the SDK with npm i @dataxapi/sdk or pip install dataxapi, and put your API key in the DATAXAPI_API_KEY environment variable.
curl -X POST https://api.dataxapi.com/v1/douyin/xingtu/creators/search \
-H "Authorization: Bearer $DATAXAPI_API_KEY" \
-H "Idempotency-Key: $(uuidgen)" \
-H "Content-Type: application/json" \
-d '{"query":"健身","search_by":"nickname"}'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_xingtu_creators_search_v1", {
"query": "健身",
"search_by": "nickname"
});
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_xingtu_creators_search_v1", {
"query": "健身",
"search_by": "nickname",
})
print(result["data"])[mcp_servers.dataxapi]
url = "https://api.dataxapi.com/mcp"
bearer_token_env_var = "DATAXAPI_API_KEY"Response example
{
"code": 200,
"request_id": "req_example_douyin_batch5_social",
"message": "success",
"data": {
"items": [
{
"id": "7029342444797820939",
"name": "健身华哥",
"avatar_url": "https://ci.douyin.com/avatar",
"city": "上海",
"gender": "unknown",
"followers": 6971304,
"expected_plays": 3594522,
"interaction_rate": 0.0225,
"completion_rate": 0.0813,
"followers_gained_30d": 36599,
"pricing_cny": {
"short_video": null,
"medium_video": 80000,
"long_video": 300000
}
}
],
"total_count": 742
},
"page": {
"next_cursor": "cursor_example"
},
"warnings": [],
"meta": {
"listing_id": "douyin.xingtu.creators.search",
"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"
}
}Response fields
codenumber- const: 200
request_idstringmessagestring- const: "success"
dataobjectpageobjectwarningsarraymetaobject
Response 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": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"avatar_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"city": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"gender": {
"type": "string",
"enum": [
"male",
"female",
"unknown"
]
},
"followers": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"expected_plays": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"interaction_rate": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"completion_rate": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"followers_gained_30d": {
"anyOf": [
{
"type": "integer",
"minimum": -9007199254740991,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
},
"pricing_cny": {
"type": "object",
"properties": {
"short_video": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"medium_video": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
},
"long_video": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
]
}
},
"required": [
"short_video",
"medium_video",
"long_video"
],
"additionalProperties": false
}
},
"required": [
"id",
"name",
"avatar_url",
"city",
"gender",
"followers",
"expected_plays",
"interaction_rate",
"completion_rate",
"followers_gained_30d",
"pricing_cny"
],
"additionalProperties": false
}
},
"total_count": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
{
"type": "null"
}
]
}
},
"required": [
"items",
"total_count"
],
"additionalProperties": false
},
"page": {
"type": "object",
"properties": {
"next_cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"next_cursor"
],
"additionalProperties": false
},
"warnings": {
"type": "array",
"items": {
"type": "string"
}
},
"meta": {
"type": "object",
"properties": {
"listing_id": {
"type": "string",
"const": "douyin.xingtu.creators.search"
},
"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
}Usage notes
Good for
- Use it to discover commercial creator candidates for further evaluation.
Not for
- Do not treat a result as guaranteed eligibility, pricing, audience truth, or media advice.
Known limitations
- V1 exposes only stable named filters.
- Prices and expected performance are point-in-time snapshots.
- Short-video price is null when no stable field is available.
Billing
¥0.05 per call. Complete and confirmed empty results are charged; partial results and failures are not.
See all pricing →