Skip to content

Latest commit

 

History

History
156 lines (150 loc) · 8.34 KB

File metadata and controls

156 lines (150 loc) · 8.34 KB

Competitors

A Competitor is an Overwatch League team competiting in the current season.

Competitor IDs

Each Competitor has a unique ID should a user look up information for a specific team. Below is a list of team IDs:

Team ID
Atlanta Reign 7698
Boston Uprising 4402
Chengdu Hunters 7692
Dallas Fuel 4523
Florida Mayhem 4407
Guangzhou Charge 7699
Hangzhou Spark 7693
Houston Outlaws 4525
London Spitfire 4410
Los Angeles Gladiators 4406
Los Angleles Valiant 4405
New York Excelsior 4403
Paris Eternal 7694
Philadelphia Fusion 4524
San Francisco Shock 4404
Seoul Dynasty 4409
Shanghai Dragons 4408
Toronto Defiant 7695
Vancouver Titans 7696
Washington Justice 7697

Competitor Data Dictionary

See Team Data Dictionary

Attribute Type Description
id Int64 The unique integer identifier for the Overwatch League Team. Example:

"id": 4523
divisionId Int64 The unique integer identifier for the Team's Overwatch League Division. Example:

"divisionId": 80
handle String A String representation of an Overwatch League team's handle. Example:

"handle": "fuel.6990"
name String A String representation of an Overwatch League team's name. Example:

"name": "Boston Uprising"
abbreviatedName String A String representation of an Overwatch League team's 3 letter abbreviated name. Example:

"abbreviatedName": "ATL"
logo Logo Object A Logo object containing an Overwatch League team's logo in SVG and PNG formats.
hasFallback Boolean Indicates whether or not a team has media queries which specific browsers cannot handle, such as logo files and headshot files. Example:

"hasFallback": false
location String A String representation of an Overwatch League team's base location. Example:

"location": "Boston, MA"
players Array of Player Object A Player roster for a competing Overwatch League Team. Additionally, see Player object for more info.
website String A String representation of an Overwatch League team's website url. Example:

"website": "https://fuel.overwatchleague.com"
placement Int64 The current standing of an Overwatch League Team. Example:

"placement": 1
advantage Int64 An integer indicating the advantage an Overwatch League Team has over its competitors. Example:

"advantage": 0
records Records Object A Records object containing an Overwatch League team's league records. See Records object for more info.

Sample Competitor JSON

{
    "data": {
        "id": 4523,
        "divisionId": 80,
        "handle": "fuel.6990",
        "name": "Dallas Fuel",
        "abbreviatedName": "DAL",
        "logo": {
            "main": {
                "svg": "https://bnetcmsus-a.akamaihd.net/cms/template_resource/YX6JZ6FR89LU1507822882865.svg",
                "png": "https://bnetcmsus-a.akamaihd.net/cms/page_media/NO44N7DDJAPF1508792362936.png"
            },
            "mainName": {
                "svg": "https://bnetcmsus-a.akamaihd.net/cms/page_media/Q8TMKNUFIJL51519747890664.svg",
                "png": "https://bnetcmsus-a.akamaihd.net/cms/page_media/Q8TMKNUFIJL51519747890664.svg"
            },
            "altDark": {
                "svg": "https://bnetcmsus-a.akamaihd.net/cms/page_media/LLMV1UTBVHN11544055825034.svg",
                "png": "https://bnetcmsus-a.akamaihd.net/cms/page_media/YUUL7E0CSF591544055626557.png"
            }
        },
        "hasFallback": false,
        "location": "Dallas, TX",
        "players": [],
        "colors": {
            "primary": {
                "color": "#032340",
                "opacity": 1
            },
            "secondary": {
                "color": "#0072CE",
                "opacity": 1
            },
            "tertiary": {
                "color": "#9EA2A2",
                "opacity": 1
            }
        },
        "accounts": [
            {
                "id": 2268,
                "type": "TWITTER",
                "url": "https://twitter.com/DallasFuel"
            },
            {
                "id": 2424,
                "type": "DISCORD",
                "url": "https://discord.gg/dallasfuel"
            },
            {
                "id": 2372,
                "type": "INSTAGRAM",
                "url": "https://www.instagram.com/DallasFuel"
            },
            {
                "id": 2267,
                "type": "FACEBOOK",
                "url": "https://www.facebook.com/TheDallasFuel"
            },
            {
                "id": 2269,
                "type": "YOUTUBE_CHANNEL",
                "url": "https://www.youtube.com/channel/UCj4XSmDqIhRT4frKzRTMyrA"
            }
        ],
        "website": "https://fuel.overwatchleague.com",
        "placement": 13,
        "advantage": 0,
        "records": {
            "matchWin": 1,
            "matchLoss": 1,
            "matchDraw": 0,
            "matchBye": 0,
            "gameWin": 3,
            "gameLoss": 5,
            "gameTie": 0,
            "gamePointsFor": 0,
            "gamePointsAgainst": 0,
            "comparisons": [
                {
                    "key": "MATCH_DIFFERENTIAL",
                    "value": 0
                },
                {
                    "key": "MATCH_GAME_DIFFERENTIAL",
                    "value": -2
                },
                {
                    "key": "GAME_HEAD_TO_HEAD_DIFFERENTIAL",
                    "value": null
                },
                {
                    "key": "MATCH_HEAD_TO_HEAD_DIFFERENTIAL",
                    "value": null
                },
                {
                    "key": "ADVANTAGE",
                    "value": 0
                }
            ]
        }
    }
}