Creator Rankings - Top E-commerce Creators
Introduction
Get the top e-commerce creators ranking
- Supports filter parameters
- Supports custom result sorting
API Endpoint
bash
POST /creator/v1/rank/topEcommerceRequest Body
| Field | Type | Required | Description |
|---|---|---|---|
filter | object | No | Filter parameters |
orderby | object | No | Sorting parameters |
page | integer | No | Page number, default: 1 |
pagesize | integer | No | Items per page, default: 10 |
filter Optional Values
| Field | Type | Required | Description |
|---|---|---|---|
region | string | No | Country/Region |
creator_category_id | integer | No | Creator category |
product_category_id | integer | No | Product category |
account_type | integer | No | Creator type 1:personal 2:shop |
ecommerce_type | integer | No | 1:Video 2:Live |
date_info | object | No | Date information |
regionrange:['US','GB','MX','ES','DE','IT','FR','ID','VN','MY','TH','PH','BR','JP','SG']
orderby Optional Values
| Field | Required | Description |
|---|---|---|
creator_usd_gmv | No | Total GMV (USD) (desc) |
video_usd_gmv | No | Video GMV (USD) (desc) |
live_usd_gmv | No | Live GMV (USD) (desc) |
When
ecommerce_typeis empty, default is descending bycreator_usd_gmv. Whenecommerce_type=1, default is descending byvideo_usd_gmv. Whenecommerce_type=2, default is descending bylive_usd_gmv. In other cases,orderbyis invalid.
Request Example
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
}'Response Body
data.total
- Type: integer
- Description: Total number of results
data.list
| Field | Type | Description |
|---|---|---|
uid | string | Creator ID |
follower_count | integer | Creator follower count |
product_count | integer | Number of products sold |
creator_gmv | float | Creator Total GMV |
creator_usd_gmv | float | Creator Total GMV (USD) |
video_count | integer | Video count |
video_gmv | float | Video Total GMV |
video_usd_gmv | float | Video Total GMV (USD) |
live_count | integer | Live count |
live_gmv | float | Live Total GMV |
live_usd_gmv | float | Live Total GMV (USD) |
data.list.creator
| Field | Type | Description |
|---|---|---|
uid | string | Creator ID |
unique_id | string | Creator unique ID |
nickname | string | Nickname |
avatar | string | Creator avatar URL |
region | string | Country/Region |
category | object | Creator category |
follower_count | integer | Creator follower count |
video_count | integer | Video count |
Response Example
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"
}