Skip to main content

Esports Teams

Quick Usage
GET https://api.clarioncorp.net/v2/teams

With no parameters, this just returns a huge list of all of our registered teams and basic player data for them. If for whatever reason the linkedId is null, the player structure will not be present. This is because we do not have them cached in our system yet, or their id is wrong internally. Reach out if you think this is a problem, and we'll try our best to address it.

Parameters Explained

  • Tag
    • This system was built in the event of two seperate teams having the same tag.
    • Therefore, this returns an array— even though 99% of the time there will only be one entry.
  • Series
    • This is just talking about which tournaments they come from.
    • Currently we support 'EUSL', 'NASL', 'NASA', and 'NAST'.
  • Season
    • This is referring to the series' set season, not the game season.
[
{
"teamTag": "AH",
"teamName": "AiMi Haters",
"logo": "https://api.clarioncorp.net/assets/teams/AH.webp",
"series": "EUSL",
"season": "S1",
"players": [
{
"userId": "632ccddb4da41411b141a096",
"linkedId": "632ccddb4da41411b141a096",
"player": {
"username": "Alex2704",
"rating": 3799,
"tags": [],
"socialUrl": null
}
},
{
"userId": "6207ab8ebb65caa461faea38",
"linkedId": "6207ab8ebb65caa461faea38",
"player": {
"username": "Rekkosed",
"rating": 0,
"tags": [
"verified"
],
"socialUrl": "twitch.tv/rekkosed"
}
},
{
"userId": "6327e553377c60ac34fe79e8",
"linkedId": "6327e553377c60ac34fe79e8",
"player": {
"username": "Venomyami",
"rating": 0,
"tags": [],
"socialUrl": null
}
}
]
},
// Rest of entries removed for example
]