跳到主要内容
抖音 全部接口
搜索抖音达人 · 搜索

抖音星图达人搜索

按昵称或内容词搜索星图达人,并返回公开规模、表现与报价快照。

POST/v1/douyin/xingtu/creators/search

英文名称: Douyin Xingtu creator search · Creator · Search Search Xingtu creators by nickname or content query with bounded public filters.
douyin.xingtu.creators.search@v1

按次价格

¥0.05/ 次

完整或确认空结果收费;部分结果和失败不收费。

正在核验实时状态

在线试用

登录后用真实参数调用一次,结果和扣费会显示在这里。

安全验证

正在加载安全验证…

正在确认实时执行状态…

执行结果

// Result

请求参数

querystring必填

minLength: 1 · maxLength: 64

示例: "健身"

search_bystring可选

enum: "nickname" | "content"

示例: "nickname"

genderstring可选

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

followers_mininteger可选

minimum: 0 · maximum: 9007199254740991

followers_maxinteger可选

minimum: 0 · maximum: 9007199254740991

cursorstring可选

minLength: 1

请求 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
}

代码示例

安装 SDK:npm i @dataxapi/sdk 或 pip install dataxapi;把 API Key 放进环境变量 DATAXAPI_API_KEY。

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

返回示例

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"
  }
}
返回字段说明
codenumber
const: 200
request_idstring
messagestring
const: "success"
dataobject
pageobject
warningsarray
metaobject
返回 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
}

使用说明

适合

  • 需要按关键词发现可进一步评估的抖音商业达人候选。

不适合

  • 不用于承诺合作资格、锁定报价、推断私有受众或自动做投放决策。

已知限制

  • V1 只开放关键词、搜索方式、性别与粉丝区间,不透传不稳定的原始筛选表达式。
  • 报价和预期表现是调用时快照;短视频报价缺乏稳定字段时返回 null。
  • 旧版搜索 Endpoint 用官方默认参数真实返回 HTTP 400;V1 固定使用真实成功且标价更低的新版 Endpoint。

计费规则

¥0.05 / 次。完整或确认空结果收费;部分结果和失败不收费。

查看全部价格 →