クリエイターランキング - フォロワー成長
概要
クリエイターのフォロワー増加ランキングデータを取得します。以下の機能をサポートします。
- フィルターパラメータの設定が可能
- カスタムソート順に対応
API エンドポイント
bash
POST /creator/v1/rank/topGrowthリクエストボディ
| フィールド | 型 | 必須 | 説明 |
|---|---|---|---|
filter | object | いいえ | フィルターパラメータ |
orderby | object | いいえ | ソートパラメータ |
page | integer | いいえ | デフォルト: 1 |
pagesize | integer | いいえ | デフォルト: 10 |
page*pagesize<= 500
pagesize範囲 [1, 100]
filter オプション値
| フィールド | 型 | 必須 | 説明 |
|---|---|---|---|
region | string | いいえ | 国/地域 |
category_id | integer | いいえ | クリエイターカテゴリ |
date_info | object | はい | 日付情報 |
region 範囲:
['US','GB','MX','ES','DE','IT','FR','PT','NL','BE','AT','PL','ID','VN','MY','TH','PH','BR','JP','SG']
orderby オプション値
| フィールド | 必須 | 説明 |
|---|---|---|
follower_inc_count | いいえ | フォロワー増加数(降順) |
リクエスト例
bash
curl 'https://openapi.fastmoss.com/creator/v1/rank/topGrowth' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer xxxxxxxxxx' \
--data '{
"filter": {
"region": "GB",
# "category_id": 14,
"date_info": {
"type": "day",
"value": "2026-03-15"
},
# "date_info": {
# "type": "week",
# "value": "2026-14"
# },
# "date_info": {
# "type": "month",
# "value": "2026-03"
# }
},
"orderby": [
{
"field": "follower_inc_count",
"order": "desc",
}
],
"page": 1,
"pagesize": 10
}'レスポンスボディ
data.total
結果の総数
data.list
| フィールド | 型 | 説明 |
|---|---|---|
uid | string | クリエイターID |
follower_inc_count | integer | フォロワー増加数 |
follower_inc_rate | string | フォロワー増加率 |
data.list.creator
| フィールド | 型 | 説明 |
|---|---|---|
uid | string | クリエイターID |
unique_id | string | クリエイターのユニークID |
nickname | string | ニックネーム |
avatar | string | クリエイターのアバターURL |
region | string | 国/地域 |
category | object | クリエイターカテゴリID |
follower_count | integer | クリエイターのフォロワー数 |
video_count | integer | 動画数 |
レスポンス例
json
{
"code": 0,
"data": {
"list": [
{
"creator": {
"uid": "226763996639432704",
"nickname": "Manchester City",
"unique_id": "mancity",
"avatar": "https://s.500fd.com/tt_author/e8ae23edc368a44adee44d1d109e2252~tplv-tiktokx-cropcenter:100:100.jpeg",
"region": "GB",
"category": {
"id": 11,
"name": "Sports, Fitness & Outdoors"
},
"follower_count": 34217186,
"video_count": 3093
},
"follower_count": 34217186, //deprecated
"follower_inc_count": 120707,
"follower_inc_rate": "0.35%",
"video_count": 3093, //deprecated
"follower_rate": "0.35%", //deprecated
"uid": "226763996639432704",
"nickname": "Manchester City", //deprecated
"unique_id": "mancity", //deprecated
"avatar": "https://s.500fd.com/tt_author/e8ae23edc368a44adee44d1d109e2252~tplv-tiktokx-cropcenter:100:100.jpeg", //deprecated
"region": "GB", //deprecated
"category": {
//deprecated
"id": 11,
"name": "Sports, Fitness & Outdoors"
}
}
],
"total": 500,
"date_type": "week",
"date_value": "2026-03"
},
"message": "",
"timestamp": 1776149206,
"request_id": "74d6dcbd-8890-1592-092a-bc477b697f0b"
}