Creator Rankings - Follower Growth Rankings
Introduction
Retrieve data for the creator follower growth rankings, with the following features:
- Supports filtering parameters
- Supports custom result sorting
API Endpoint
bash
POST /creator/v1/rank/topGrowthRequest 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, e.g., ['US', 'GB', 'MX', 'ES', 'ID', 'VN', 'MY', 'TH', 'PH'] |
category_id | integer | No | Creator category |
date_info | object | No | Date info, e.g., {'type': 'day', 'value': '2025-02-01'} |
orderby Optional Values
| Field | Required | Description |
|---|---|---|
follower_inc_count | No | Follower growth (descending) |
Request Example
bash
curl 'https://openapi.test.fastmoss.com/creator/v1/rank/topGrowth?client_id=XXX×tamp=XXX&access_token=XXX&sign=XXX' \
--header 'Content-Type: application/json' \
{
"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": "follower_inc_count",
"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 |
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 |
follower_inc_count | integer | Follower growth |
follower_inc_rate | integer | Follower growth rate |
video_count | integer | Video count |
Response Example
json
{
"code":0,
"msg":"success",
"data":{
"total":500,
"list":[
{
"rank":1,
"uid":"123456",
"unique_id":"hello",
"nickname":"hello",
"avatar":"xxx",
"region":"US",
"category":[{"id":2,"name":"hello"}],
"follower_count":1111,
"follower_inc_count":1111,
"follower_inc_rate":2345,
"video_count":12,
}
]
}
}