Logo
Waktaverse Games Docs
통계 API

전체 사용자 통계

대상 통계의 전체 사용자 값을 조회합니다.

GET
/api/game-link/stat-board

Authorization

AuthorizationRequiredBearer <token>

In: header

Query Parameters

idRequiredstring

통계 ID

curl -X GET "https://example.com/api/game-link/stat-board?id=minsu_clear" \
  -H "Authorization: Bearer <token>"

조회 성공시.

{
  "size": 1,
  "board": [
    {
      "user": {
        "img": "https://phinf.pstatic.net/contact/20230203_106/.../image.png",
        "id": 1,
        "name": "팬치"
      },
      "val": 610
    }
  ],
  "stat": {
    "name": "민수 클리어 수",
    "max": 1000
  },
  "me": 1
}