GetPlayerPr

Fetches a player’s Power Ranking information from their ID.

Request

Syntax

https://api.brawltools.com/v2/player/pr

Query Parameters

ParameterTypeRequiredDescription
playerIdsString✔️The ID(s) of the player(s) being searched
gameModeInteger✔️For 1v1 use 1, and for 2v2 use 2.

Response

Sample Response

{
  "earnings": 223799.17,
  "pr": {
    "top8": 44,
    "top32": 49,
    "gold": 23,
    "silver": 6,
    "bronze": 4,
    "powerRanking": 3,
    "region": "NA"
  }
}

Response Elements

This response body can contain the following fields in JSON.

ElementTypeDescription
earningsIntegerThe amount of money the player has earned in USD.
prObjectAn object containing Power Ranking information. This is a PlayerPr datatype.