Rank 정보 요청

GET http://{leaderboard-external-domain}/v1.0/leaderboard/rank

Headers

Name
Type
Description

Authorization*

string

Bearer {{web-access-token}}

Query Params

Name
Type
Description

season_id

int64

시즌 ID

channel_id

int64

meta 정보에 있는 채널 ID

page_id

int64

페이지 번호 (1부터 시작)

page_size

int64

페이지 크기(system_config 에 config_id 2번 value 사용 권장)

Response

{
    "return": 0,
    "message": "success",
    "value": {
        "total_rows": 5,
        "ranks": [
            {
                "rank_id": 1,
                "au_id": 26,
                "wins": 1,
                "losses": 5,
                "win_rate": 16.67,
                "rank_point": 96,
                "nick_name": "bboodd",
                "profile_thumbnail": "https://innofile.blob.core.windows.net/inno/dev/onchaingame/ragmon/asset/profile_user/img_thumbnail_profile_1.png",
                "profile_frame": "https://innofile.blob.core.windows.net/inno/dev/onchaingame/ragmon/asset/profile_user/img_frame_profile_1_yellow.png",
                "reward_quantity": 200000
            },
            {
                "rank_id": 2,
                "au_id": 80,
                "wins": 1,
                "losses": 0,
                "win_rate": 100,
                "rank_point": 50,
                "nick_name": "Guest3104817",
                "profile_thumbnail": "https://innofile.blob.core.windows.net/inno/dev/onchaingame/ragmon/asset/profile_user/img_thumbnail_profile_1.png",
                "profile_frame": "https://innofile.blob.core.windows.net/inno/dev/onchaingame/ragmon/asset/profile_user/img_frame_profile_1.png",
                "reward_quantity": 100000
            },
            {
                "rank_id": 3,
                "au_id": 76,
                "wins": 1,
                "losses": 0,
                "win_rate": 100,
                "rank_point": 25,
                "nick_name": "Guest9572183",
                "profile_thumbnail": "https://innofile.blob.core.windows.net/inno/dev/onchaingame/ragmon/asset/profile_user/img_thumbnail_profile_1.png",
                "profile_frame": "https://innofile.blob.core.windows.net/inno/dev/onchaingame/ragmon/asset/profile_user/img_frame_profile_1_blue.png",
                "reward_quantity": 100000
            },
            {
                "rank_id": 4,
                "au_id": 64,
                "wins": 0,
                "losses": 2,
                "win_rate": 0,
                "rank_point": 20,
                "nick_name": "testwon3",
                "profile_thumbnail": "https://innofile.blob.core.windows.net/inno/dev/onchaingame/ragmon/asset/profile_user/img_thumbnail_profile_1.png",
                "profile_frame": "https://innofile.blob.core.windows.net/inno/dev/onchaingame/ragmon/asset/profile_user/img_frame_profile_1.png",
                "reward_quantity": 100000
            },
            {
                "rank_id": 5,
                "au_id": 79,
                "wins": 0,
                "losses": 1,
                "win_rate": 0,
                "rank_point": 10,
                "nick_name": "Guest7235666",
                "profile_thumbnail": "https://innofile.blob.core.windows.net/inno/dev/onchaingame/ragmon/asset/profile_user/img_thumbnail_profile_1.png",
                "profile_frame": "https://innofile.blob.core.windows.net/inno/dev/onchaingame/ragmon/asset/profile_user/img_frame_profile_1.png",
                "reward_quantity": 100000
            }
        ]
    }
}
curl --location 'https://localhost:51161/v1.0/leaderboard/rank?season_id=1&channel_id=100005&page_id=1&page_size=10'

Last updated