Player Ranked Stats
Request
Section titled “Request”GET https://api.brawlhalla.com/player/[brawlhalla_id]/rankedThis request returns statistics on a player’s ranked statistics.
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
| brawlhalla_id | Integer | The player’s Brawlhalla ID. |
Response
Section titled “Response”{ "name": "Octavius", "brawlhalla_id": 4697805, "rating": 2143, "peak_rating": 2200, "tier": "Diamond", "wins": 607, "games": 1208, "region": "US-E", "global_rank": 0, "region_rank": 0, "legends": [ { "legend_id": 35, "legend_name_key": "mordex", "rating": 2124, "peak_rating": 2200, "tier": "Diamond", "wins": 607, "games": 1207 }, { "legend_id": 6, "legend_name_key": "lord vraxx", "rating": 750, "peak_rating": 0, "tier": "Tin 1", "wins": 0, "games": 0 } ], "2v2": [ { "brawlhalla_id_one": 4697805, "brawlhalla_id_two": 2467374, "rating": 1618, "peak_rating": 1705, "tier": "Gold 4", "wins": 41, "games": 87, "teamname": "Octavius+UpyriDensetsu", "region": 2, "global_rank": 0 } ], "rotating_ranked": { "name": "Octavius", "brawlhalla_id": 4697805, "rating": 1327, "peak_rating": 1330, "tier": "Silver 4", "wins": 11, "games": 14, "region": "US-E" }}Response Elements
Section titled “Response Elements”| Element | Type | Description |
|---|---|---|
| name | String | The name of the player. |
| brawlhalla_id | Integer | The Brawlhalla ID of the player. |
| rating | Integer | The current Elo rating of the player. |
| peak_rating | Integer | The highest Elo rating the player has achieved in the season. |
| tier | String | The current rating tier the player is in. |
| wins | Integer | The total number of ranked wins the player earned in the current season. |
| games | Integer | The total number of ranked games the player played in the current season. |
| region | String | The region the player plays in. |
| global_rank | Integer | The player’s ranking on the global leaderboards. This will return 0 unless the player is rank [Blank] or lower. |
| region_rank | Integer | The player’s ranking on the regional leaderboards. This will return 0 unless the player is rank [Blank] or lower. |
| legends | Object | An object containing an array of a player’s ranked legend data. This is a LegendRanked schema. |
| 2v2 | Object | An object containing a player’s ranked 2v2 data. This is a Team schema. |
| rotating_ranked | Object | An object containing a player’s rotating ranked data. This is a Rotating schema. |