Skip to main content

Character Leaderboard

Quick Usage
GET https://api.clarioncorp.net/v2/leaderboard/character

This endpoint is extremely customizable for fetching data from our local table. This means that you don't need authentication, and you can scan really fast. I intend to expand more on the parameters here at some point, but the basics can be found in the Quick Usage.

Also, tumbleweeds are entries that have EITHER:

  • Less than 10 games played
  • Less than 10 games won
  • Less than 10 games lost By default, entries matching any of these are hidden since there isn't enough data to compare fairly. You can re-enable them if you'd like.

If you need the list of characters matching their IDs, you can check out this page.

{
"lastUpdated": "3 days ago",
"sortKey": "winrate",
"sortDirection": "desc",
"region": "Global",
"data": [
{
"character": "CD_FlexibleBrawler", // You can view the list of characters above.
"gamemode": "NormalInitial", // Odyssey tags gamemodes suffixed with "Initial". Sorry.
"role": "Forward",
"games": 915,
"region": "Global",
"rankGroup": "Rookie",
"wins": 786,
"losses": 129,
"winrate": 85.9
},
{
"character": "CD_AngelicSupport", // You can view the list of characters above.
"gamemode": "NormalInitial", // Odyssey tags gamemodes suffixed with "Initial". Sorry.
"role": "Forward",
"games": 175,
"region": "Global",
"rankGroup": "Rookie",
"wins": 149,
"losses": 26,
"winrate": 85.1
},
// rest of entries excluded in example
]
}

All dates are in ISO-8601, and in the UTC timezone.