Creator Ranking - Blue V Growth List
Introduction
Get the Blue V verified creators growth ranking
- Supports filter parameters
- Supports custom sorting
API Endpoint
bash
POST /creator/v1/rank/topBlueVGrowthRequest Body
| Field | Type | Required | Description |
|---|---|---|---|
filter | object | No | Filter parameters |
orderby | object | No | Sorting parameters |
page | integer | No | Default: 1 |
pagesize | integer | No | Default: 10 |
Filter Options
| Field | Type | Required | Description |
|---|---|---|---|
region | string | No | Country/Region ['US','GB','MX','ES','ID','VN','MY','TH','PH'] |
category_id | integer | No | Creator category |
date_info | object | No | Date information: {"type":"day","value":"2025-02-01"} |
Orderby Options
| Field | Required | Description |
|---|---|---|
follower_inc_count | No | Follower growth count (descending) |
request example
bash
curl 'https://openapi.test.fastmoss.com/creator/v1/rank/topBlueVGrowth?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
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 ID |
follower_count | integer | Total followers |
follower_inc_count | integer | Follower growth count |
digg_inc_count | integer | Like growth 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,
"digg_inc_rate":2345,
}
]
}
}