Skip to content

达人榜单-潜力带货达人榜

简介

获取潜力带货达人榜

  • 支持设置过滤参数
  • 支持设置结果排序方式

接口

bash
    POST /creator/v1/rank/topPotential

request body

字段类型必选描述
filterobject过滤参数
orderbyobject排序参数
pageinteger页码,默认值:1
pagesizeinteger每页条数,默认值:10

page * pagesize <= 1000

pagesize 范围 [1, 100]

filter可选值

字段类型必选描述
regionstring国家/地区
creator_category_idinteger达人分类
product_category_l1_idinteger商品一级分类
product_category_l2_idinteger商品二级分类
product_category_l3_idinteger商品三级分类
ecommerce_typeinteger1:视频带货 2:直播带货
follower_count_rangeobject粉丝数范围
follower_age_typeobject粉丝年龄分布 1:18-24,2:25-34,3:35+
follower_gender_typeobject粉丝性别分布 0:女,1:男
date_infoobject日期信息

region 范围: ['US','GB','MX','ES','DE','IT','FR','ID','VN','MY','TH','PH','BR','JP','SG']

orderby可选值

字段必选描述
potential_index潜力指数(降序)

request example

bash
curl 'https://openapi.fastmoss.com/creator/v1/rank/topPotential' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer xxxxxxxxxx' \
--data '{
    "filter": {
        "region": "US",
        "creator_category_id": 4,
        "product_category_l1_id": 14,
        # "date_info": {
        #     "type": "day",
        #     "value": "2026-03-01"
        # },
        # "date_info": {
        #     "type": "week",
        #     "value": "2026-08"
        # },
        "date_info": {
            "type": "month",
            "value": "2026-03"
        },
         "follower_count_range": {
            "min":500000,
            "max":1000000
         }
    },
     "orderby": [
      {
        "field": "potential_index",
        "order": "desc"
      }
    ],
    "page": 1,
    "pagesize": 10
}'

response body

data.total

- 类型:integer
- 描述:结果总条数

data.list

字段类型描述
uidstring达人 ID
follower_countinteger达人粉丝数
product_countinteger带货商品数
creator_gmvfloat达人总销售额
creator_usd_gmvfloat达人总销售额(美元)
video_countinteger视频数
video_gmvfloat视频总销售额
video_usd_gmvfloat视频总销售额(美元)
live_countinteger直播数
live_gmvfloat直播总销售额
live_usd_gmvfloat直播总销售额(美元)

data.list.creator

字段类型描述
uidstring达人 ID
unique_idstring达人唯一 ID
nicknamestring昵称
avatarstring达人头像 URL
regionstring国家/地区
categoryobject达人分类
follower_countinteger达人粉丝数
video_countinteger视频数
follower_gendersarray粉丝性别分布
follower_agesarray粉丝年龄分布

data.list.creator.follower_genders

字段类型描述
keystring性别
valuestring占比

data.list.creator.follower_ages

字段类型描述
keystring年龄
valuestring占比

data.list.sales_category_l3

字段类型描述
idstring商品三级分类id
namestring商品三级分类名称

response example

json
{
  "code": 0,
  "data": {
    "list": [
      {
        "creator": {
          "uid": "6787580688797713413",
          "nickname": "itzelsantana11",
          "unique_id": "itzesantana11",
          "avatar": "https://s.500fd.com/tt_author/97d47867357ad05a16a1c7f6a9199b86~tplv-tiktokx-cropcenter:100:100.jpeg",
          "region": "US",
          "category": { "id": 4, "name": "Beauty" },
          "follower_count": 930920,
          "video_count": 879,
          "follower_genders": [
            { "key": "female", "value": "0.6319" },
            { "key": "male", "value": "0.3681" }
          ],
          "follower_ages": [
            { "key": "35-44", "value": "0.3406" },
            { "key": "25-34", "value": "0.2848" },
            { "key": "45-54", "value": "0.1908" },
            { "key": "55+", "value": "0.0904" },
            { "key": "18-24", "value": "0.0812" }
          ]
        },
        "uid": "6787580688797713413",
        "video_count": 186,
        "ecommerce_type": 3,
        "potential_index": 83,
        "gmv": 244052.07,
        "usd_gmv": 244052.07,
        "units_sold": 6138,
        "avg_play_count": 77007,
        "live_units_sold": 931,
        "video_units_sold": 5207,
        "sales_category_l3": [
          {
            "id": 601554,
            "name": "Concealer & Foundation"
          },
          { "id": 601619, "name": "Serums & Essences" },
          { "id": 601534, "name": "Lipstick & Lip Gloss" },
          { "id": 700650, "name": "Wellness Supplements" },
          { "id": 601492, "name": "Body Creams & Lotions" }
        ]
      }
    ],
    "total": 17,
    "date_type": "month",
    "date_value": "2026-03"
  },
  "message": "",
  "timestamp": 1776186472,
  "request_id": "d1b9d7d6-3ffe-bb15-cc98-f2deeacb1061"
}