menuhwang / pubg-analyzer

1 stars 1 forks source link

[Feat] Fetch RESTful API 구현 #80

Closed menuhwang closed 1 year ago

menuhwang commented 1 year ago

플레이어 조회

GET /api/fetch/player?shard={string}&nickname={string}

ResponseBody

{
        "status": 200,
        "success": true,
        "result": "PlayersResponse..."
}

매치 조회

GET /api/fetch/match?shard={string}&id={string}

ResponseBody

{
        "status": 200,
        "success": true,
        "result": "MatchResponse..."
}