ListPlayerPrs
Lists the information and Power Ranking stats of specified players.
Request
Syntax
https://api.brawltools.com/v2/players/pr
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| playerIds | String | ✔️ | The esports ID of the player being searched. |
| bhIds | String | ✔️ | The Brawlhalla ID of the player being searched. |
| sggIds | String | ✔️ | The Start.gg ID of the player being searched. |
| cmIds | String | ✔️ | The Challengermode ID of the player being searched. |
| gameMode | Integer | ❌ | For 1v1 use 1, and for 2v2 use 2. |
Only one of the player ID types will be accepted. Using more than one will result in a 400 Response.
Response
Sample Response
{
"players": [
{
"player": {
"playerId": 146052,
"sggPlayerId": 2339938,
"cmPlayerId": "bf544dc0-9e67-4b27-b453-80099bf450cd",
"brawlhallaId": 110282750,
"name": "ECHO | Marckiemoo"
},
"pr": {
"top8": 11,
"top32": 14,
"gold": 4,
"silver": 3,
"bronze": 2,
"powerRanking": 1,
"region": "NA"
}
}
]
}
Response Elements
| Element | Type | Description |
|---|---|---|
| player | Object | Detailed information of the player. This is a Player object. |
| pr | Object | The player’s Power Ranking information. This is a PlayerPr object. |