Skip to content
This Version 0 API endpoint is deprecated, and will hit EOL by the end of 2026.

Player Ranked Stats

GET https://api.brawlhalla.com/player/[brawlhalla_id]/ranked

This request returns statistics on a player’s ranked statistics.

ParameterTypeDescription
brawlhalla_idIntegerThe player’s Brawlhalla ID.
{
"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"
}
}
ElementTypeDescription
nameStringThe name of the player.
brawlhalla_idIntegerThe Brawlhalla ID of the player.
ratingIntegerThe current Elo rating of the player.
peak_ratingIntegerThe highest Elo rating the player has achieved in the season.
tierStringThe current rating tier the player is in.
winsIntegerThe total number of ranked wins the player earned in the current season.
gamesIntegerThe total number of ranked games the player played in the current season.
regionStringThe region the player plays in.
global_rankIntegerThe player’s ranking on the global leaderboards. This will return 0 unless the player is rank [Blank] or lower.
region_rankIntegerThe player’s ranking on the regional leaderboards. This will return 0 unless the player is rank [Blank] or lower.
legendsObjectAn object containing an array of a player’s ranked legend data. This is a LegendRanked schema.
2v2ObjectAn object containing a player’s ranked 2v2 data. This is a Team schema.
rotating_rankedObjectAn object containing a player’s rotating ranked data. This is a Rotating schema.