Skip to content

クリエイターランキング - Eコマース

概要

トップEコマースクリエイターのランキングを取得します。

  • フィルターパラメータの設定が可能
  • カスタムソート順に対応

API エンドポイント

bash
    POST /creator/v1/rank/topEcommerce

リクエストボディ

フィールド必須説明
filterobjectいいえフィルターパラメータ
orderbyobjectいいえソートパラメータ
pageintegerいいえページ番号, デフォルト: 1
pagesizeintegerいいえ1ページあたりの件数, デフォルト: 10

page * pagesize <= 1000

pagesize 範囲 [1, 100]

filter オプション値

フィールド必須説明
regionstringいいえ国/地域
creator_category_idintegerいいえクリエイターカテゴリ
product_category_idintegerいいえ商品カテゴリ
account_typeintegerいいえクリエイタータイプ 1:個人 2:ショップ
ecommerce_typeintegerいいえ1:動画 2:ライブ
date_infoobjectはい日付情報

region 範囲: ['US','GB','MX','ES','DE','IT','FR','PT','NL','BE','AT','PL','ID','VN','MY','TH','PH','BR','JP','SG']

orderby オプション値

フィールド必須説明
creator_usd_gmvいいえ総GMV(USD)(降順)
video_usd_gmvいいえ動画GMV(USD)(降順)
live_usd_gmvいいえライブGMV(USD)(降順)

ecommerce_type が空の場合、デフォルトは creator_usd_gmv で降順ソート。 ecommerce_type=1 の場合、デフォルトは video_usd_gmv で降順ソート。 ecommerce_type=2 の場合、デフォルトは live_usd_gmv で降順ソート。 その他の場合、orderby は無効です。

リクエスト例

bash
curl 'https://openapi.fastmoss.com/creator/v1/rank/topEcommerce' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer xxxxxxxxxx' \
--data '{
    "filter": {
        "region": "US",
        "product_category": 1,
        "date_info": {
            "type": "day",
            "value": "2023-02-01"
        },
        # "date_info": {
        #     "type": "week",
        #     "value": "2023-18"
        # },
        # "date_info": {
        #     "type": "month",
        #     "value": "2023-02"
        # }
    },
     "orderby": [
      {
        "field": "total_gmv",
        "order": "desc",
      }
    ],
    "page": 1,
    "pagesize": 10
}'

レスポンスボディ

data.total

  • 型: integer
  • 説明: 結果の総数

data.list

フィールド説明
uidstringクリエイターID
follower_countintegerクリエイターのフォロワー数
product_countinteger販売商品数
creator_gmvfloatクリエイター総GMV
creator_usd_gmvfloatクリエイター総GMV(USD)
video_countinteger動画数
video_gmvfloat動画総GMV
video_usd_gmvfloat動画総GMV(USD)
live_countintegerライブ配信数
live_gmvfloatライブ総GMV
live_usd_gmvfloatライブ総GMV(USD)

data.list.creator

フィールド説明
uidstringクリエイターID
unique_idstringクリエイターのユニークID
nicknamestringニックネーム
avatarstringクリエイターのアバターURL
regionstring国/地域
categoryobjectクリエイターカテゴリ
follower_countintegerクリエイターのフォロワー数
video_countinteger動画数

レスポンス例

json
{
  "code": 0,
  "data": {
    "list": [
      {
        "creator": {
          "uid": "6795828506624754693",
          "nickname": "thebeautycrop",
          "unique_id": "thebeautycrop",
          "avatar": "https://s.500fd.com/tt_author/09c29664a10b2eeee9089b311a7cd8df~tplv-tiktokx-cropcenter:300:300.jpeg",
          "region": "GB",
          "category": {
            "id": 2,
            "name": "Shopping & Retail"
          },
          "follower_count": 238703,
          "video_count": 3123
        },
        "follower_count": 238703,
        "product_count": 96,
        "creator_gmv": 20310.4,
        "creator_usd_gmv": 25184.84,
        "video_count": 105,
        "video_gmv": 7632.68,
        "video_usd_gmv": 9464.46,
        "live_count": 11,
        "live_gmv": 12677.72,
        "live_usd_gmv": 15720.38,
        "uid": "6795828506624754693",
        "nickname": "thebeautycrop", //deprecated
        "unique_id": "thebeautycrop", //deprecated
        "avatar": "https://s.500fd.com/tt_author/09c29664a10b2eeee9089b311a7cd8df~tplv-tiktokx-cropcenter:300:300.jpeg", //deprecated
        "region": "GB", //deprecated
        "category": {
          "id": 2,
          "name": "Shopping & Retail"
        } //deprecated
      }
    ],
    "total": "256",
    "date_type": "week",
    "date_value": "2026-03"
  },
  "message": "",
  "timestamp": 1776165689,
  "request_id": "55dc7b93-227b-de9b-2a7e-6eb7f9259555"
}