Skip to content
All Douyin APIs
SearchDouyinCreator · Search

Douyin Xingtu creator search

Search Xingtu creators by nickname or content query with bounded public filters.

POST/v1/douyin/xingtu/creators/search

Chinese 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.

Current statusAvailableChecking live status
Checking live status

Try it

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

querystringrequired

minLength: 1 · maxLength: 64

Example: "健身"

search_bystringoptional

enum: "nickname" | "content"

Example: "nickname"

genderstringoptional

enum: "any" | "male" | "female"

followers_minintegeroptional

minimum: 0 · maximum: 9007199254740991

followers_maxintegeroptional

minimum: 0 · maximum: 9007199254740991

cursorstringoptional

minLength: 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"}'

Response example

200 · application/json
{
  "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_idstring
messagestring
const: "success"
dataobject
pageobject
warningsarray
metaobject
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 →