Download OpenAPI specification:Download
Whether you're looking to build an official Pandascore integration for your service, or you just want to build something awesome, we can help you get started.
The API works over the HTTPS protocol, and is accessed from the api.pandascore.co
domain.
null
values instead of being omitted.Clicking on a query parameter like filter
or search
will show you the available options:
You can also click on a response to see the detailed response schema:
The PandaScore API allows you to access data about eSports events by using a certain structure detailed below.
Leagues
Leagues are the top level events. They don't have a date and represent a regular competition. A League is composed of one or several series.
Some League of Legends leagues are: EU LCS, NA LCS, LCK, etc.
Some Dota 2 leagues are: ESL One, GESC, The International, PGL, etc.
Series
A Serie represents an occurrence of a league event.
The EU LCS league has two series per year: spring 2017, summer 2017, spring 2016, summer 2016 etc.
Some Dota2 Series examples would be: Changsha Major, Open Bucharest, Frankfurt, i-League Invitational etc.
Tournaments
Tournaments groups all the matches of a serie under "stages" and "groups".
The tournaments of the EU LCS of summer 2017 are: Group A, Group B, Playoffs, etc.
Some Dota 2 tournaments are: Group A, Group B, Playoffs, etc.
Matches
Finally we have matches which have two players or teams (depending on the played videogame) and several games (the rounds of the match).
Matches of the group A in the EU LCS of summer 2017 are: G2 vs FNC, MSF vs NIP, etc.
Matches of the group A in the ESL One, Genting tournamnet are: Lower Round 1, Quarterfinal, Upper Final, etc.
Please note that some matches may be listed as "TBD vs TBD" if the matchup is not announced yet, for example the date of the Final match is known but the quarterfinal is still being played.
The API currently supports the JSON format by default.
Other formats may be added depending on user needs.
The Pandascore API paginates all resources on the index method.
Requests that return multiple items will be paginated to 50 items by default. You can specify further pages with the page[number]
parameter. You can also set a custom page size (up to 100) with the page[size]
parameter.
The Link
HTTP response header contains pagination data with first
, previous
, next
and last
raw page links when available, under the format
Link: <https://api.pandascore.co/{Resource}?page=X+1>; rel="next", <https://api.pandascore.co/{Resource}?page=X-1>; rel="prev", <https://api.pandascore.co/{Resource}?page=1>; rel="first", <https://api.pandascore.co/{Resource}?page=X+n>; rel="last"
There is also:
X-Page
header field, which contains the current page.X-Per-Page
header field, which contains the current pagination length.X-Total
header field, which contains the total count of items across all pages.The filter
query parameter can be used to filter a collection by one or several fields for one or several values. The filter
parameter takes the field to filter as a key, and the values to filter as the value. Multiples values must be comma-separated (,
).
For example, the following is a request for all the champions with a name matching Twitch or Brand exactly, but only with 21 armor:
GET /lol/champions?filter[name]=Brand,Twitch&filter[armor]=21&token=YOUR_ACCESS_TOKEN
The range
parameter is a hash that allows filtering fields by an interval.
Only values between the given two comma-separated bounds will be returned. The bounds are inclusive.
For example, the following is a request for all the champions with hp
within 500 and 1000:
GET /lol/champions?range[hp]=500,1000&token=YOUR_ACCESS_TOKEN
The search
parameter is a bit like the filter
parameter, but it will return all results where the values contain the given parameter.
Note: this only works on strings.
Searching with integer values is not supported and filter
or range
parameters may be better suited for your needs here.
For example, to get all the champions with a name containing "twi"
:
$ curl -sg -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' 'https://api.pandascore.co/lol/champions?search[name]=twi' | jq -S '.[].name'
"Twitch"
"Twisted Fate"
All index endpoints support multiple sort fields with comma-separation (,
); the fields are applied in the order specified.
The sort order for each field is ascending unless it is prefixed with a minus (U+002D HYPHEN-MINUS, “-“), in which case it is descending.
For example, GET /lol/champions?sort=attackdamage,-name&token=YOUR_ACCESS_TOKEN
will return all the champions sorted by attack damage.
Any champions with the same attack damage will then be sorted by their names in descending alphabetical order.
Depending on your current plan, you will have a different rate limit. Your plan and your current request count are available on your dashboard.
With the free plan, you have a limit of 1000 requests per hour, others plans have a limit of 4000 requests per hour. The number of remaining requests is available in the X-Rate-Limit-Remaining
response header.
Your API key is included in all the examples on this page, so you can test any example right away. Only you can see this value.
The authentication on the Pandascore API works with access tokens.
All developers need to create an account before getting started, in order to get an access token. The access token should not be shared.
Your token can be found and regenerated from your dashboard.
The access token can be passed in the URL with the token
query string parameter, or in the Authorization: Bearer
header field.
Get a single Overwatch game by ID
ow_game_id required | integer (OwGameID) >= 1 An Overwatch game ID |
/ow/games/1758
{- "begin_at": "2018-07-21T23:13:02Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-21T23:31:03Z",
- "finished": true,
- "forfeit": false,
- "id": 1758,
- "length": 1081,
- "map": {
- "game_mode": "Escort",
- "id": 371,
- "name": "Junkertown",
- "slug": "junkertown",
}, - "match": {
- "begin_at": "2018-07-21T23:13:02Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2018-07-22T01:40:47Z",
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": "2018-07-21T23:13:02Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-21T23:31:03Z",
- "finished": true,
- "forfeit": false,
- "id": 1758,
- "length": 1081,
- "match_id": 51833,
- "position": 1,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1545,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-07-21T23:39:16Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-21T23:55:14Z",
- "finished": true,
- "forfeit": false,
- "id": 1759,
- "length": 958,
- "match_id": 51833,
- "position": 2,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1548,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-07-22T00:16:52Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-22T00:27:00Z",
- "finished": true,
- "forfeit": false,
- "id": 1760,
- "length": 608,
- "match_id": 51833,
- "position": 3,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1545,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-07-22T00:34:07Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-22T00:48:32Z",
- "finished": true,
- "forfeit": false,
- "id": 1761,
- "length": 865,
- "match_id": 51833,
- "position": 4,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1548,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-07-22T00:55:47Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-22T01:15:45Z",
- "finished": true,
- "forfeit": false,
- "id": 1762,
- "length": 1198,
- "match_id": 51833,
- "position": 5,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1545,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 51833,
- "league": {
- "id": 4135,
- "modified_at": "2020-02-03T11:05:52Z",
- "name": "League",
- "slug": "overwatch-league",
}, - "league_id": 4135,
- "live": {
- "opens_at": "2018-07-21T22:58:02Z",
- "supported": true,
- "url": "wss://live.dev.pandascore.co/matches/51833"
}, - "match_type": "best_of",
- "modified_at": "2019-06-03T14:50:17Z",
- "name": "Semifinal Match 2: PHI vs NYE",
- "number_of_games": 5,
- "opponents": [
- {
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "type": "Team"
}
], - "original_scheduled_at": "2018-07-21T23:13:02Z",
- "rescheduled": false,
- "results": [
- {
- "score": 3,
- "team_id": 1545
}, - {
- "score": 2,
- "team_id": 1548
}
], - "scheduled_at": "2018-07-21T23:00:00Z",
- "serie": {
- "begin_at": "2017-12-07T00:00:00Z",
- "description": null,
- "end_at": "2018-07-28T21:40:00Z",
- "full_name": "Season 1 2018",
- "id": 1500,
- "league_id": 4135,
- "modified_at": "2019-06-12T17:06:17Z",
- "name": "",
- "season": "1",
- "slug": "overwatch-league-1-2018",
- "tier": null,
- "winner_id": 1555,
- "winner_type": "Team",
- "year": 2018
}, - "serie_id": 1500,
- "slug": "new-york-excelsior-2018-07-22",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2018-07-12T00:00:00Z",
- "end_at": "2018-07-28T22:03:00Z",
- "id": 1459,
- "league_id": 4135,
- "live_supported": true,
- "modified_at": "2019-05-24T01:01:29Z",
- "name": "Playoffs",
- "prizepool": "1700000 United States Dollar",
- "serie_id": 1500,
- "slug": "overwatch-league-2018-1-2018-playoffs-grand-finals",
- "winner_id": 1555,
- "winner_type": "Team"
}, - "tournament_id": 1459,
- "videogame": {
- "id": 14,
- "name": "Overwatch",
- "slug": "ow"
}, - "videogame_version": null,
- "winner": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "winner_id": 1545
}, - "match_id": 51833,
- "position": 1,
- "rounds": [
- {
- "round": 1,
- "teams": [
- {
- "players": [
- {
- "deaths": 3,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 53,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 3,
- "id": 520,
- "kills": 1,
- "name": "Zenyatta",
- "real_name": "Tekhartha Zenyatta",
- "resurrections": 0,
- "role": "support",
- "slug": "zenyatta",
- "time_played": 125,
- "time_with_ult_up": 46,
- "ultimates": 1
}, - {
- "avg_time_to_charge_ultimate": 108,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 1,
- "id": 512,
- "kills": 2,
- "name": "Roadhog",
- "real_name": "Mako Rutledge",
- "resurrections": 0,
- "role": "tank",
- "slug": "roadhog",
- "time_played": 303,
- "time_with_ult_up": 97,
- "ultimates": 1
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 1,
- "id": 503,
- "kills": 0,
- "name": "Bastion",
- "real_name": "SST Laboratories Siege Automaton E54",
- "resurrections": 0,
- "role": "defense",
- "slug": "bastion",
- "time_played": 9,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 3,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-04-17",
- "first_name": "Isaac",
- "hometown": "Boston, United Kingdom",
- "id": 8499,
- "last_name": "Charles",
- "name": "Boombox",
- "nationality": "GB",
- "role": "Support",
- "slug": "boombox"
}, - "player_id": 8499,
- "resurrections": 0,
- "ultimate": 2
}, - {
- "deaths": 7,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 121,
- "deaths": 6,
- "destructions": 0,
- "difficulty": 2,
- "id": 508,
- "kills": 5,
- "name": "Widowmaker",
- "real_name": "Amélie Lacroix",
- "resurrections": 0,
- "role": "defense",
- "slug": "widowmaker",
- "time_played": 302,
- "time_with_ult_up": 21,
- "ultimates": 2
}, - {
- "avg_time_to_charge_ultimate": 57,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 502,
- "kills": 9,
- "name": "Tracer",
- "real_name": "Lena Oxton",
- "resurrections": 0,
- "role": "offense",
- "slug": "tracer",
- "time_played": 135,
- "time_with_ult_up": 0,
- "ultimates": 2
}
], - "kills": 14,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-10-14",
- "first_name": "Jae-hyeok",
- "hometown": "Daejeon",
- "id": 8500,
- "last_name": "Lee",
- "name": "Carpe",
- "nationality": "KR",
- "role": "Damage",
- "slug": "carpe"
}, - "player_id": 8500,
- "resurrections": 0,
- "ultimate": 4
}, - {
- "deaths": 6,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 75,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 3,
- "id": 504,
- "kills": 5,
- "name": "Hanzo",
- "real_name": "Hanzo Shimada",
- "resurrections": 0,
- "role": "defense",
- "slug": "hanzo",
- "time_played": 299,
- "time_with_ult_up": 51,
- "ultimates": 3
}, - {
- "avg_time_to_charge_ultimate": 72,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 3,
- "id": 496,
- "kills": 0,
- "name": "Genji",
- "real_name": "Genji Shimada",
- "resurrections": 0,
- "role": "offense",
- "slug": "genji",
- "time_played": 138,
- "time_with_ult_up": 0,
- "ultimates": 1
}
], - "kills": 5,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-05-10",
- "first_name": "Josue ",
- "hometown": "Netenya",
- "id": 8503,
- "last_name": "Corona",
- "name": "Eqo",
- "nationality": "IL",
- "role": "Damage",
- "slug": "eqo"
}, - "player_id": 8503,
- "resurrections": 0,
- "ultimate": 4
}, - {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 79,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 1,
- "id": 517,
- "kills": 0,
- "name": "Mercy",
- "real_name": "Angela Ziegler",
- "resurrections": 3,
- "role": "support",
- "slug": "mercy",
- "time_played": 437,
- "time_with_ult_up": 35,
- "ultimates": 5
}
], - "kills": 0,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1992,
- "birthday": "1992-02-12",
- "first_name": "Alberto",
- "hometown": "El Puerto de Santa María, Spain",
- "id": 8505,
- "last_name": "González",
- "name": "neptuNo",
- "nationality": "ES",
- "role": "Support",
- "slug": "neptuno"
}, - "player_id": 8505,
- "resurrections": 3,
- "ultimate": 5
}, - {
- "deaths": 0,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 2,
- "id": 509,
- "kills": 2,
- "name": "D.Va",
- "real_name": "Hana Song",
- "resurrections": 0,
- "role": "tank",
- "slug": "dva",
- "time_played": 437,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 2,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-06-21",
- "first_name": "Gael",
- "hometown": "Nîmes",
- "id": 8508,
- "last_name": "Gouzerch",
- "name": "Poko",
- "nationality": "FR",
- "role": "Tank",
- "slug": "poko-gael-gouzerch"
}, - "player_id": 8508,
- "resurrections": 0,
- "ultimate": 0
}, - {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 78,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 513,
- "kills": 3,
- "name": "Winston",
- "real_name": "Winston",
- "resurrections": 0,
- "role": "tank",
- "slug": "winston",
- "time_played": 124,
- "time_with_ult_up": 35,
- "ultimates": 1
}, - {
- "avg_time_to_charge_ultimate": 115,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 2,
- "id": 510,
- "kills": 3,
- "name": "Orisa",
- "real_name": "Orisa",
- "resurrections": 0,
- "role": "tank",
- "slug": "orisa",
- "time_played": 313,
- "time_with_ult_up": 45,
- "ultimates": 2
}
], - "kills": 6,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-01-15",
- "first_name": "Su-min",
- "hometown": "Gwangju",
- "id": 8509,
- "last_name": "Kim",
- "name": "SADO",
- "nationality": "KR",
- "role": "Tank",
- "slug": "sado"
}, - "player_id": 8509,
- "resurrections": 0,
- "ultimate": 3
}
], - "team": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}
}, - {
- "players": [
- {
- "deaths": 3,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 2,
- "id": 509,
- "kills": 3,
- "name": "D.Va",
- "real_name": "Hana Song",
- "resurrections": 0,
- "role": "tank",
- "slug": "dva",
- "time_played": 437,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 3,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-06-25",
- "first_name": "Tae-Hong",
- "hometown": "Busan",
- "id": 8531,
- "last_name": "Kim",
- "name": "MekO",
- "nationality": "KR",
- "role": "Tank",
- "slug": "meko"
}, - "player_id": 8531,
- "resurrections": 0,
- "ultimate": 0
}, - {
- "deaths": 7,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 85,
- "deaths": 6,
- "destructions": 0,
- "difficulty": 2,
- "id": 508,
- "kills": 9,
- "name": "Widowmaker",
- "real_name": "Amélie Lacroix",
- "resurrections": 0,
- "role": "defense",
- "slug": "widowmaker",
- "time_played": 399,
- "time_with_ult_up": 37,
- "ultimates": 4
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 497,
- "kills": 0,
- "name": "McCree",
- "real_name": "Jesse McCree",
- "resurrections": 0,
- "role": "offense",
- "slug": "mccree",
- "time_played": 38,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 9,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-08-15",
- "first_name": "Do-hyeon",
- "hometown": "Seoul",
- "id": 8532,
- "last_name": "Kim",
- "name": "Pine",
- "nationality": "KR",
- "role": "offense",
- "slug": "pine"
}, - "player_id": 8532,
- "resurrections": 0,
- "ultimate": 4
}, - {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 3,
- "id": 520,
- "kills": 1,
- "name": "Zenyatta",
- "real_name": "Tekhartha Zenyatta",
- "resurrections": 0,
- "role": "support",
- "slug": "zenyatta",
- "time_played": 52,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": 68,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 1,
- "id": 512,
- "kills": 4,
- "name": "Roadhog",
- "real_name": "Mako Rutledge",
- "resurrections": 0,
- "role": "tank",
- "slug": "roadhog",
- "time_played": 385,
- "time_with_ult_up": 217,
- "ultimates": 2
}
], - "kills": 5,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-12-20",
- "first_name": "Sung-hyeon",
- "hometown": "Osan",
- "id": 8534,
- "last_name": "Bang",
- "name": "JJoNak",
- "nationality": "KR",
- "role": "Support",
- "slug": "jjonak"
}, - "player_id": 8534,
- "resurrections": 0,
- "ultimate": 2
}, - {
- "deaths": 7,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 513,
- "kills": 0,
- "name": "Winston",
- "real_name": "Winston",
- "resurrections": 0,
- "role": "tank",
- "slug": "winston",
- "time_played": 32,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": 147,
- "deaths": 6,
- "destructions": 0,
- "difficulty": 2,
- "id": 510,
- "kills": 2,
- "name": "Orisa",
- "real_name": "Orisa",
- "resurrections": 0,
- "role": "tank",
- "slug": "orisa",
- "time_played": 405,
- "time_with_ult_up": 84,
- "ultimates": 2
}
], - "kills": 2,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-04-12",
- "first_name": "Dong-gyu",
- "hometown": "Busan",
- "id": 8535,
- "last_name": "Kim",
- "name": "Mano",
- "nationality": "KR",
- "role": "Tank",
- "slug": "mano"
}, - "player_id": 8535,
- "resurrections": 0,
- "ultimate": 2
}, - {
- "deaths": 5,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 1,
- "id": 521,
- "kills": 0,
- "name": "Brigitte",
- "real_name": "Brigitte Lindholm",
- "resurrections": 0,
- "role": "support",
- "slug": "brigitte",
- "time_played": 39,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": 83,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 505,
- "kills": 2,
- "name": "Junkrat",
- "real_name": "Jamison Fawkes",
- "resurrections": 0,
- "role": "defense",
- "slug": "junkrat",
- "time_played": 117,
- "time_with_ult_up": 1,
- "ultimates": 1
}, - {
- "avg_time_to_charge_ultimate": 92,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 3,
- "id": 504,
- "kills": 3,
- "name": "Hanzo",
- "real_name": "Hanzo Shimada",
- "resurrections": 0,
- "role": "defense",
- "slug": "hanzo",
- "time_played": 281,
- "time_with_ult_up": 25,
- "ultimates": 2
}
], - "kills": 5,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-06-12",
- "first_name": "Hae-seong",
- "hometown": "Anyang",
- "id": 8536,
- "last_name": "Kim",
- "name": "Libero",
- "nationality": "KR",
- "role": "Damage",
- "slug": "libero"
}, - "player_id": 8536,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 106,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 1,
- "id": 517,
- "kills": 0,
- "name": "Mercy",
- "real_name": "Angela Ziegler",
- "resurrections": 1,
- "role": "support",
- "slug": "mercy",
- "time_played": 437,
- "time_with_ult_up": 36,
- "ultimates": 3
}
], - "kills": 0,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-01-11",
- "first_name": "Yeonjoon",
- "hometown": "Seoul",
- "id": 8537,
- "last_name": "Hong",
- "name": "ArK",
- "nationality": "KR",
- "role": "Support",
- "slug": "ark-yeon-jun-hong"
}, - "player_id": 8537,
- "resurrections": 1,
- "ultimate": 3
}
], - "team": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}
}
]
}, - {
- "round": 2,
- "teams": [
- {
- "players": [
- {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 116,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 1,
- "id": 512,
- "kills": 2,
- "name": "Roadhog",
- "real_name": "Mako Rutledge",
- "resurrections": 0,
- "role": "tank",
- "slug": "roadhog",
- "time_played": 482,
- "time_with_ult_up": 82,
- "ultimates": 3
}
], - "kills": 2,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-04-17",
- "first_name": "Isaac",
- "hometown": "Boston, United Kingdom",
- "id": 8499,
- "last_name": "Charles",
- "name": "Boombox",
- "nationality": "GB",
- "role": "Support",
- "slug": "boombox"
}, - "player_id": 8499,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 6,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 113,
- "deaths": 6,
- "destructions": 0,
- "difficulty": 2,
- "id": 508,
- "kills": 5,
- "name": "Widowmaker",
- "real_name": "Amélie Lacroix",
- "resurrections": 0,
- "role": "defense",
- "slug": "widowmaker",
- "time_played": 482,
- "time_with_ult_up": 111,
- "ultimates": 3
}
], - "kills": 5,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-10-14",
- "first_name": "Jae-hyeok",
- "hometown": "Daejeon",
- "id": 8500,
- "last_name": "Lee",
- "name": "Carpe",
- "nationality": "KR",
- "role": "Damage",
- "slug": "carpe"
}, - "player_id": 8500,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 7,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 2,
- "id": 505,
- "kills": 0,
- "name": "Junkrat",
- "real_name": "Jamison Fawkes",
- "resurrections": 0,
- "role": "defense",
- "slug": "junkrat",
- "time_played": 7,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": 96,
- "deaths": 7,
- "destructions": 0,
- "difficulty": 3,
- "id": 504,
- "kills": 5,
- "name": "Hanzo",
- "real_name": "Hanzo Shimada",
- "resurrections": 0,
- "role": "defense",
- "slug": "hanzo",
- "time_played": 475,
- "time_with_ult_up": 24,
- "ultimates": 4
}
], - "kills": 5,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-05-10",
- "first_name": "Josue ",
- "hometown": "Netenya",
- "id": 8503,
- "last_name": "Corona",
- "name": "Eqo",
- "nationality": "IL",
- "role": "Damage",
- "slug": "eqo"
}, - "player_id": 8503,
- "resurrections": 0,
- "ultimate": 4
}, - {
- "deaths": 5,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 83,
- "deaths": 5,
- "destructions": 0,
- "difficulty": 1,
- "id": 517,
- "kills": 0,
- "name": "Mercy",
- "real_name": "Angela Ziegler",
- "resurrections": 4,
- "role": "support",
- "slug": "mercy",
- "time_played": 482,
- "time_with_ult_up": 140,
- "ultimates": 4
}
], - "kills": 0,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1992,
- "birthday": "1992-02-12",
- "first_name": "Alberto",
- "hometown": "El Puerto de Santa María, Spain",
- "id": 8505,
- "last_name": "González",
- "name": "neptuNo",
- "nationality": "ES",
- "role": "Support",
- "slug": "neptuno"
}, - "player_id": 8505,
- "resurrections": 4,
- "ultimate": 4
}, - {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 2,
- "id": 509,
- "kills": 5,
- "name": "D.Va",
- "real_name": "Hana Song",
- "resurrections": 0,
- "role": "tank",
- "slug": "dva",
- "time_played": 482,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 5,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-06-21",
- "first_name": "Gael",
- "hometown": "Nîmes",
- "id": 8508,
- "last_name": "Gouzerch",
- "name": "Poko",
- "nationality": "FR",
- "role": "Tank",
- "slug": "poko-gael-gouzerch"
}, - "player_id": 8508,
- "resurrections": 0,
- "ultimate": 0
}, - {
- "deaths": 6,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 126,
- "deaths": 6,
- "destructions": 0,
- "difficulty": 2,
- "id": 510,
- "kills": 1,
- "name": "Orisa",
- "real_name": "Orisa",
- "resurrections": 0,
- "role": "tank",
- "slug": "orisa",
- "time_played": 482,
- "time_with_ult_up": 40,
- "ultimates": 3
}
], - "kills": 1,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-01-15",
- "first_name": "Su-min",
- "hometown": "Gwangju",
- "id": 8509,
- "last_name": "Kim",
- "name": "SADO",
- "nationality": "KR",
- "role": "Tank",
- "slug": "sado"
}, - "player_id": 8509,
- "resurrections": 0,
- "ultimate": 3
}
], - "team": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}
}, - {
- "players": [
- {
- "deaths": 1,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 509,
- "kills": 3,
- "name": "D.Va",
- "real_name": "Hana Song",
- "resurrections": 0,
- "role": "tank",
- "slug": "dva",
- "time_played": 482,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 3,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-06-25",
- "first_name": "Tae-Hong",
- "hometown": "Busan",
- "id": 8531,
- "last_name": "Kim",
- "name": "MekO",
- "nationality": "KR",
- "role": "Tank",
- "slug": "meko"
}, - "player_id": 8531,
- "resurrections": 0,
- "ultimate": 0
}, - {
- "deaths": 5,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 109,
- "deaths": 5,
- "destructions": 0,
- "difficulty": 2,
- "id": 508,
- "kills": 11,
- "name": "Widowmaker",
- "real_name": "Amélie Lacroix",
- "resurrections": 0,
- "role": "defense",
- "slug": "widowmaker",
- "time_played": 482,
- "time_with_ult_up": 12,
- "ultimates": 3
}
], - "kills": 11,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-08-15",
- "first_name": "Do-hyeon",
- "hometown": "Seoul",
- "id": 8532,
- "last_name": "Kim",
- "name": "Pine",
- "nationality": "KR",
- "role": "offense",
- "slug": "pine"
}, - "player_id": 8532,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 3,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 103,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 1,
- "id": 512,
- "kills": 11,
- "name": "Roadhog",
- "real_name": "Mako Rutledge",
- "resurrections": 0,
- "role": "tank",
- "slug": "roadhog",
- "time_played": 482,
- "time_with_ult_up": 68,
- "ultimates": 3
}
], - "kills": 11,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-12-20",
- "first_name": "Sung-hyeon",
- "hometown": "Osan",
- "id": 8534,
- "last_name": "Bang",
- "name": "JJoNak",
- "nationality": "KR",
- "role": "Support",
- "slug": "jjonak"
}, - "player_id": 8534,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 3,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 137,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 2,
- "id": 510,
- "kills": 4,
- "name": "Orisa",
- "real_name": "Orisa",
- "resurrections": 0,
- "role": "tank",
- "slug": "orisa",
- "time_played": 482,
- "time_with_ult_up": 56,
- "ultimates": 3
}
], - "kills": 4,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-04-12",
- "first_name": "Dong-gyu",
- "hometown": "Busan",
- "id": 8535,
- "last_name": "Kim",
- "name": "Mano",
- "nationality": "KR",
- "role": "Tank",
- "slug": "mano"
}, - "player_id": 8535,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 5,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 57,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 3,
- "id": 504,
- "kills": 3,
- "name": "Hanzo",
- "real_name": "Hanzo Shimada",
- "resurrections": 0,
- "role": "defense",
- "slug": "hanzo",
- "time_played": 464,
- "time_with_ult_up": 177,
- "ultimates": 4
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 502,
- "kills": 0,
- "name": "Tracer",
- "real_name": "Lena Oxton",
- "resurrections": 0,
- "role": "offense",
- "slug": "tracer",
- "time_played": 18,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 3,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-06-12",
- "first_name": "Hae-seong",
- "hometown": "Anyang",
- "id": 8536,
- "last_name": "Kim",
- "name": "Libero",
- "nationality": "KR",
- "role": "Damage",
- "slug": "libero"
}, - "player_id": 8536,
- "resurrections": 0,
- "ultimate": 4
}, - {
- "deaths": 1,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 84,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 1,
- "id": 517,
- "kills": 0,
- "name": "Mercy",
- "real_name": "Angela Ziegler",
- "resurrections": 4,
- "role": "support",
- "slug": "mercy",
- "time_played": 482,
- "time_with_ult_up": 151,
- "ultimates": 3
}
], - "kills": 0,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-01-11",
- "first_name": "Yeonjoon",
- "hometown": "Seoul",
- "id": 8537,
- "last_name": "Hong",
- "name": "ArK",
- "nationality": "KR",
- "role": "Support",
- "slug": "ark-yeon-jun-hong"
}, - "player_id": 8537,
- "resurrections": 4,
- "ultimate": 3
}
], - "team": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}
}
]
}
], - "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1545,
- "type": "Team"
}, - "winner_type": "Team"
}
List games for a given Overwatch match
required | MatchID (integer) or MatchSlug (string) (MatchIDOrSlug) A match ID or slug |
object (filter_over_OwGames) Example: filter[forfeit]=false Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_OwGames) Example: range[position]=2,4 Options to select results within ranges | |
object (search_over_OwGames) Example: search[status]=finished Options to search results | |
sort | Array of any (sort_over_OwGames) non-empty Items Enum: "begin_at" "-begin_at" "complete" "-complete" "end_at" "-end_at" "finished" "-finished" "forfeit" "-forfeit" "id" "-id" "length" "-length" "match_id" "-match_id" "position" "-position" "status" "-status" "video_url" "-video_url" "winner_type" "-winner_type" Example: sort=-length Options to sort results |
/ow/matches/51833/games?page[size]=1
[- {
- "begin_at": "2018-07-22T00:55:47Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-22T01:15:45Z",
- "finished": true,
- "forfeit": false,
- "id": 1762,
- "length": 1198,
- "map": {
- "game_mode": "Escort",
- "id": 370,
- "name": "Dorado",
- "slug": "dorado",
}, - "match": {
- "begin_at": "2018-07-21T23:13:02Z",
- "detailed_stats": true,
- "draw": false,
- "end_at": "2018-07-22T01:40:47Z",
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": "2018-07-21T23:13:02Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-21T23:31:03Z",
- "finished": true,
- "forfeit": false,
- "id": 1758,
- "length": 1081,
- "match_id": 51833,
- "position": 1,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1545,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-07-21T23:39:16Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-21T23:55:14Z",
- "finished": true,
- "forfeit": false,
- "id": 1759,
- "length": 958,
- "match_id": 51833,
- "position": 2,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1548,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-07-22T00:16:52Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-22T00:27:00Z",
- "finished": true,
- "forfeit": false,
- "id": 1760,
- "length": 608,
- "match_id": 51833,
- "position": 3,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1545,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-07-22T00:34:07Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-22T00:48:32Z",
- "finished": true,
- "forfeit": false,
- "id": 1761,
- "length": 865,
- "match_id": 51833,
- "position": 4,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1548,
- "type": "Team"
}, - "winner_type": "Team"
}, - {
- "begin_at": "2018-07-22T00:55:47Z",
- "complete": false,
- "detailed_stats": true,
- "end_at": "2018-07-22T01:15:45Z",
- "finished": true,
- "forfeit": false,
- "id": 1762,
- "length": 1198,
- "match_id": 51833,
- "position": 5,
- "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1545,
- "type": "Team"
}, - "winner_type": "Team"
}
], - "id": 51833,
- "league": {
- "id": 4135,
- "modified_at": "2020-02-03T11:05:52Z",
- "name": "League",
- "slug": "overwatch-league",
}, - "league_id": 4135,
- "live": {
- "opens_at": "2018-07-21T22:58:02Z",
- "supported": true,
- "url": "wss://live.dev.pandascore.co/matches/51833"
}, - "match_type": "best_of",
- "modified_at": "2019-06-03T14:50:17Z",
- "name": "Semifinal Match 2: PHI vs NYE",
- "number_of_games": 5,
- "opponents": [
- {
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "type": "Team"
}, - {
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "type": "Team"
}
], - "original_scheduled_at": "2018-07-21T23:13:02Z",
- "rescheduled": false,
- "results": [
- {
- "score": 3,
- "team_id": 1545
}, - {
- "score": 2,
- "team_id": 1548
}
], - "scheduled_at": "2018-07-21T23:00:00Z",
- "serie": {
- "begin_at": "2017-12-07T00:00:00Z",
- "description": null,
- "end_at": "2018-07-28T21:40:00Z",
- "full_name": "Season 1 2018",
- "id": 1500,
- "league_id": 4135,
- "modified_at": "2019-06-12T17:06:17Z",
- "name": "",
- "season": "1",
- "slug": "overwatch-league-1-2018",
- "tier": null,
- "winner_id": 1555,
- "winner_type": "Team",
- "year": 2018
}, - "serie_id": 1500,
- "slug": "new-york-excelsior-2018-07-22",
- "status": "finished",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2018-07-12T00:00:00Z",
- "end_at": "2018-07-28T22:03:00Z",
- "id": 1459,
- "league_id": 4135,
- "live_supported": true,
- "modified_at": "2019-05-24T01:01:29Z",
- "name": "Playoffs",
- "prizepool": "1700000 United States Dollar",
- "serie_id": 1500,
- "slug": "overwatch-league-2018-1-2018-playoffs-grand-finals",
- "winner_id": 1555,
- "winner_type": "Team"
}, - "tournament_id": 1459,
- "videogame": {
- "id": 14,
- "name": "Overwatch",
- "slug": "ow"
}, - "videogame_version": null,
- "winner": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "winner_id": 1545
}, - "match_id": 51833,
- "position": 5,
- "rounds": [
- {
- "round": 1,
- "teams": [
- {
- "players": [
- {
- "deaths": 2,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 151,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 3,
- "id": 520,
- "kills": 4,
- "name": "Zenyatta",
- "real_name": "Tekhartha Zenyatta",
- "resurrections": 0,
- "role": "support",
- "slug": "zenyatta",
- "time_played": 508,
- "time_with_ult_up": 33,
- "ultimates": 3
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 2,
- "id": 518,
- "kills": 0,
- "name": "Moira",
- "real_name": "Moira O’Deorain",
- "resurrections": 0,
- "role": "support",
- "slug": "moira",
- "time_played": 8,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 3,
- "id": 514,
- "kills": 0,
- "name": "Zarya",
- "real_name": "Aleksandra Zaryanova",
- "resurrections": 0,
- "role": "tank",
- "slug": "zarya",
- "time_played": 12,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 4,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-04-17",
- "first_name": "Isaac",
- "hometown": "Boston, United Kingdom",
- "id": 8499,
- "last_name": "Charles",
- "name": "Boombox",
- "nationality": "GB",
- "role": "Support",
- "slug": "boombox"
}, - "player_id": 8499,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 1,
- "id": 521,
- "kills": 0,
- "name": "Brigitte",
- "real_name": "Brigitte Lindholm",
- "resurrections": 0,
- "role": "support",
- "slug": "brigitte",
- "time_played": 74,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": 73,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 2,
- "id": 508,
- "kills": 4,
- "name": "Widowmaker",
- "real_name": "Amélie Lacroix",
- "resurrections": 0,
- "role": "defense",
- "slug": "widowmaker",
- "time_played": 454,
- "time_with_ult_up": 0,
- "ultimates": 3
}
], - "kills": 4,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-10-14",
- "first_name": "Jae-hyeok",
- "hometown": "Daejeon",
- "id": 8500,
- "last_name": "Lee",
- "name": "Carpe",
- "nationality": "KR",
- "role": "Damage",
- "slug": "carpe"
}, - "player_id": 8500,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 115,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 3,
- "id": 504,
- "kills": 6,
- "name": "Hanzo",
- "real_name": "Hanzo Shimada",
- "resurrections": 0,
- "role": "defense",
- "slug": "hanzo",
- "time_played": 528,
- "time_with_ult_up": 40,
- "ultimates": 4
}
], - "kills": 6,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-05-10",
- "first_name": "Josue ",
- "hometown": "Netenya",
- "id": 8503,
- "last_name": "Corona",
- "name": "Eqo",
- "nationality": "IL",
- "role": "Damage",
- "slug": "eqo"
}, - "player_id": 8503,
- "resurrections": 0,
- "ultimate": 4
}, - {
- "deaths": 2,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 139,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 1,
- "id": 517,
- "kills": 2,
- "name": "Mercy",
- "real_name": "Angela Ziegler",
- "resurrections": 3,
- "role": "support",
- "slug": "mercy",
- "time_played": 528,
- "time_with_ult_up": 70,
- "ultimates": 3
}
], - "kills": 2,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1992,
- "birthday": "1992-02-12",
- "first_name": "Alberto",
- "hometown": "El Puerto de Santa María, Spain",
- "id": 8505,
- "last_name": "González",
- "name": "neptuNo",
- "nationality": "ES",
- "role": "Support",
- "slug": "neptuno"
}, - "player_id": 8505,
- "resurrections": 3,
- "ultimate": 3
}, - {
- "deaths": 0,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 3,
- "id": 514,
- "kills": 0,
- "name": "Zarya",
- "real_name": "Aleksandra Zaryanova",
- "resurrections": 0,
- "role": "tank",
- "slug": "zarya",
- "time_played": 222,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 2,
- "id": 509,
- "kills": 8,
- "name": "D.Va",
- "real_name": "Hana Song",
- "resurrections": 0,
- "role": "tank",
- "slug": "dva",
- "time_played": 306,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 8,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-06-21",
- "first_name": "Gael",
- "hometown": "Nîmes",
- "id": 8508,
- "last_name": "Gouzerch",
- "name": "Poko",
- "nationality": "FR",
- "role": "Tank",
- "slug": "poko-gael-gouzerch"
}, - "player_id": 8508,
- "resurrections": 0,
- "ultimate": 0
}, - {
- "deaths": 3,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 59,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 2,
- "id": 513,
- "kills": 2,
- "name": "Winston",
- "real_name": "Winston",
- "resurrections": 0,
- "role": "tank",
- "slug": "winston",
- "time_played": 306,
- "time_with_ult_up": 120,
- "ultimates": 3
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 1,
- "id": 511,
- "kills": 0,
- "name": "Reinhardt",
- "real_name": "Reinhardt Wilhelm",
- "resurrections": 0,
- "role": "tank",
- "slug": "reinhardt",
- "time_played": 222,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 2,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-01-15",
- "first_name": "Su-min",
- "hometown": "Gwangju",
- "id": 8509,
- "last_name": "Kim",
- "name": "SADO",
- "nationality": "KR",
- "role": "Tank",
- "slug": "sado"
}, - "player_id": 8509,
- "resurrections": 0,
- "ultimate": 3
}
], - "team": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}
}, - {
- "players": [
- {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 1,
- "id": 521,
- "kills": 0,
- "name": "Brigitte",
- "real_name": "Brigitte Lindholm",
- "resurrections": 0,
- "role": "support",
- "slug": "brigitte",
- "time_played": 71,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 3,
- "id": 504,
- "kills": 0,
- "name": "Hanzo",
- "real_name": "Hanzo Shimada",
- "resurrections": 0,
- "role": "defense",
- "slug": "hanzo",
- "time_played": 222,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": 46,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 2,
- "id": 502,
- "kills": 3,
- "name": "Tracer",
- "real_name": "Lena Oxton",
- "resurrections": 0,
- "role": "offense",
- "slug": "tracer",
- "time_played": 235,
- "time_with_ult_up": 61,
- "ultimates": 2
}
], - "kills": 3,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-12-23",
- "first_name": "Jong-ryeol",
- "hometown": "Yangju",
- "id": 8530,
- "last_name": "Park",
- "name": "Saebyeolbe",
- "nationality": "KR",
- "role": "Damage",
- "slug": "saebyeolbe"
}, - "player_id": 8530,
- "resurrections": 0,
- "ultimate": 2
}, - {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 2,
- "id": 509,
- "kills": 2,
- "name": "D.Va",
- "real_name": "Hana Song",
- "resurrections": 0,
- "role": "tank",
- "slug": "dva",
- "time_played": 528,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 2,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-06-25",
- "first_name": "Tae-Hong",
- "hometown": "Busan",
- "id": 8531,
- "last_name": "Kim",
- "name": "MekO",
- "nationality": "KR",
- "role": "Tank",
- "slug": "meko"
}, - "player_id": 8531,
- "resurrections": 0,
- "ultimate": 0
}, - {
- "deaths": 5,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 181,
- "deaths": 5,
- "destructions": 0,
- "difficulty": 2,
- "id": 508,
- "kills": 3,
- "name": "Widowmaker",
- "real_name": "Amélie Lacroix",
- "resurrections": 0,
- "role": "defense",
- "slug": "widowmaker",
- "time_played": 509,
- "time_with_ult_up": 17,
- "ultimates": 2
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 2,
- "id": 505,
- "kills": 0,
- "name": "Junkrat",
- "real_name": "Jamison Fawkes",
- "resurrections": 0,
- "role": "defense",
- "slug": "junkrat",
- "time_played": 19,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 3,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-08-15",
- "first_name": "Do-hyeon",
- "hometown": "Seoul",
- "id": 8532,
- "last_name": "Kim",
- "name": "Pine",
- "nationality": "KR",
- "role": "offense",
- "slug": "pine"
}, - "player_id": 8532,
- "resurrections": 0,
- "ultimate": 2
}, - {
- "deaths": 5,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 71,
- "deaths": 5,
- "destructions": 0,
- "difficulty": 3,
- "id": 520,
- "kills": 5,
- "name": "Zenyatta",
- "real_name": "Tekhartha Zenyatta",
- "resurrections": 0,
- "role": "support",
- "slug": "zenyatta",
- "time_played": 306,
- "time_with_ult_up": 60,
- "ultimates": 3
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 1,
- "id": 512,
- "kills": 0,
- "name": "Roadhog",
- "real_name": "Mako Rutledge",
- "resurrections": 0,
- "role": "tank",
- "slug": "roadhog",
- "time_played": 222,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 5,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-12-20",
- "first_name": "Sung-hyeon",
- "hometown": "Osan",
- "id": 8534,
- "last_name": "Bang",
- "name": "JJoNak",
- "nationality": "KR",
- "role": "Support",
- "slug": "jjonak"
}, - "player_id": 8534,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 5,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 134,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 2,
- "id": 513,
- "kills": 1,
- "name": "Winston",
- "real_name": "Winston",
- "resurrections": 0,
- "role": "tank",
- "slug": "winston",
- "time_played": 247,
- "time_with_ult_up": 56,
- "ultimates": 1
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 1,
- "id": 511,
- "kills": 0,
- "name": "Reinhardt",
- "real_name": "Reinhardt Wilhelm",
- "resurrections": 0,
- "role": "tank",
- "slug": "reinhardt",
- "time_played": 59,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 2,
- "id": 510,
- "kills": 0,
- "name": "Orisa",
- "real_name": "Orisa",
- "resurrections": 0,
- "role": "tank",
- "slug": "orisa",
- "time_played": 222,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 1,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-04-12",
- "first_name": "Dong-gyu",
- "hometown": "Busan",
- "id": 8535,
- "last_name": "Kim",
- "name": "Mano",
- "nationality": "KR",
- "role": "Tank",
- "slug": "mano"
}, - "player_id": 8535,
- "resurrections": 0,
- "ultimate": 1
}, - {
- "deaths": 3,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 162,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 1,
- "id": 517,
- "kills": 1,
- "name": "Mercy",
- "real_name": "Angela Ziegler",
- "resurrections": 3,
- "role": "support",
- "slug": "mercy",
- "time_played": 528,
- "time_with_ult_up": 17,
- "ultimates": 3
}
], - "kills": 1,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-01-11",
- "first_name": "Yeonjoon",
- "hometown": "Seoul",
- "id": 8537,
- "last_name": "Hong",
- "name": "ArK",
- "nationality": "KR",
- "role": "Support",
- "slug": "ark-yeon-jun-hong"
}, - "player_id": 8537,
- "resurrections": 3,
- "ultimate": 3
}
], - "team": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}
}
]
}, - {
- "round": 2,
- "teams": [
- {
- "players": [
- {
- "deaths": 5,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 117,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 3,
- "id": 520,
- "kills": 2,
- "name": "Zenyatta",
- "real_name": "Tekhartha Zenyatta",
- "resurrections": 0,
- "role": "support",
- "slug": "zenyatta",
- "time_played": 345,
- "time_with_ult_up": 72,
- "ultimates": 2
}, - {
- "avg_time_to_charge_ultimate": 67,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 2,
- "id": 518,
- "kills": 2,
- "name": "Moira",
- "real_name": "Moira O’Deorain",
- "resurrections": 0,
- "role": "support",
- "slug": "moira",
- "time_played": 81,
- "time_with_ult_up": 0,
- "ultimates": 1
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 1,
- "id": 512,
- "kills": 1,
- "name": "Roadhog",
- "real_name": "Mako Rutledge",
- "resurrections": 0,
- "role": "tank",
- "slug": "roadhog",
- "time_played": 82,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 5,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-04-17",
- "first_name": "Isaac",
- "hometown": "Boston, United Kingdom",
- "id": 8499,
- "last_name": "Charles",
- "name": "Boombox",
- "nationality": "GB",
- "role": "Support",
- "slug": "boombox"
}, - "player_id": 8499,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 7,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 96,
- "deaths": 7,
- "destructions": 0,
- "difficulty": 2,
- "id": 508,
- "kills": 6,
- "name": "Widowmaker",
- "real_name": "Amélie Lacroix",
- "resurrections": 0,
- "role": "defense",
- "slug": "widowmaker",
- "time_played": 508,
- "time_with_ult_up": 0,
- "ultimates": 5
}
], - "kills": 6,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-10-14",
- "first_name": "Jae-hyeok",
- "hometown": "Daejeon",
- "id": 8500,
- "last_name": "Lee",
- "name": "Carpe",
- "nationality": "KR",
- "role": "Damage",
- "slug": "carpe"
}, - "player_id": 8500,
- "resurrections": 0,
- "ultimate": 5
}, - {
- "deaths": 6,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 97,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 1,
- "id": 521,
- "kills": 3,
- "name": "Brigitte",
- "real_name": "Brigitte Lindholm",
- "resurrections": 0,
- "role": "support",
- "slug": "brigitte",
- "time_played": 263,
- "time_with_ult_up": 69,
- "ultimates": 1
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 3,
- "id": 514,
- "kills": 0,
- "name": "Zarya",
- "real_name": "Aleksandra Zaryanova",
- "resurrections": 0,
- "role": "tank",
- "slug": "zarya",
- "time_played": 8,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 3,
- "id": 504,
- "kills": 0,
- "name": "Hanzo",
- "real_name": "Hanzo Shimada",
- "resurrections": 0,
- "role": "defense",
- "slug": "hanzo",
- "time_played": 89,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": 89,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 1,
- "id": 498,
- "kills": 3,
- "name": "Pharah",
- "real_name": "Fareeha Amari",
- "resurrections": 0,
- "role": "offense",
- "slug": "pharah",
- "time_played": 148,
- "time_with_ult_up": 39,
- "ultimates": 1
}
], - "kills": 6,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-05-10",
- "first_name": "Josue ",
- "hometown": "Netenya",
- "id": 8503,
- "last_name": "Corona",
- "name": "Eqo",
- "nationality": "IL",
- "role": "Damage",
- "slug": "eqo"
}, - "player_id": 8503,
- "resurrections": 0,
- "ultimate": 2
}, - {
- "deaths": 7,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 71,
- "deaths": 7,
- "destructions": 0,
- "difficulty": 1,
- "id": 517,
- "kills": 0,
- "name": "Mercy",
- "real_name": "Angela Ziegler",
- "resurrections": 3,
- "role": "support",
- "slug": "mercy",
- "time_played": 508,
- "time_with_ult_up": 303,
- "ultimates": 1
}
], - "kills": 0,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1992,
- "birthday": "1992-02-12",
- "first_name": "Alberto",
- "hometown": "El Puerto de Santa María, Spain",
- "id": 8505,
- "last_name": "González",
- "name": "neptuNo",
- "nationality": "ES",
- "role": "Support",
- "slug": "neptuno"
}, - "player_id": 8505,
- "resurrections": 3,
- "ultimate": 1
}, - {
- "deaths": 1,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 509,
- "kills": 6,
- "name": "D.Va",
- "real_name": "Hana Song",
- "resurrections": 0,
- "role": "tank",
- "slug": "dva",
- "time_played": 508,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 6,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-06-21",
- "first_name": "Gael",
- "hometown": "Nîmes",
- "id": 8508,
- "last_name": "Gouzerch",
- "name": "Poko",
- "nationality": "FR",
- "role": "Tank",
- "slug": "poko-gael-gouzerch"
}, - "player_id": 8508,
- "resurrections": 0,
- "ultimate": 0
}, - {
- "deaths": 3,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 105,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 2,
- "id": 513,
- "kills": 4,
- "name": "Winston",
- "real_name": "Winston",
- "resurrections": 0,
- "role": "tank",
- "slug": "winston",
- "time_played": 423,
- "time_with_ult_up": 73,
- "ultimates": 3
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 510,
- "kills": 0,
- "name": "Orisa",
- "real_name": "Orisa",
- "resurrections": 0,
- "role": "tank",
- "slug": "orisa",
- "time_played": 85,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 4,
- "opponent": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-01-15",
- "first_name": "Su-min",
- "hometown": "Gwangju",
- "id": 8509,
- "last_name": "Kim",
- "name": "SADO",
- "nationality": "KR",
- "role": "Tank",
- "slug": "sado"
}, - "player_id": 8509,
- "resurrections": 0,
- "ultimate": 3
}
], - "team": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}
}, - {
- "players": [
- {
- "deaths": 5,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 114,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 1,
- "id": 521,
- "kills": 2,
- "name": "Brigitte",
- "real_name": "Brigitte Lindholm",
- "resurrections": 0,
- "role": "support",
- "slug": "brigitte",
- "time_played": 317,
- "time_with_ult_up": 54,
- "ultimates": 2
}, - {
- "avg_time_to_charge_ultimate": 80,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 502,
- "kills": 6,
- "name": "Tracer",
- "real_name": "Lena Oxton",
- "resurrections": 0,
- "role": "offense",
- "slug": "tracer",
- "time_played": 191,
- "time_with_ult_up": 35,
- "ultimates": 1
}
], - "kills": 8,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1995,
- "birthday": "1995-12-23",
- "first_name": "Jong-ryeol",
- "hometown": "Yangju",
- "id": 8530,
- "last_name": "Park",
- "name": "Saebyeolbe",
- "nationality": "KR",
- "role": "Damage",
- "slug": "saebyeolbe"
}, - "player_id": 8530,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 4,
- "destructions": 0,
- "difficulty": 2,
- "id": 509,
- "kills": 5,
- "name": "D.Va",
- "real_name": "Hana Song",
- "resurrections": 0,
- "role": "tank",
- "slug": "dva",
- "time_played": 508,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 5,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-06-25",
- "first_name": "Tae-Hong",
- "hometown": "Busan",
- "id": 8531,
- "last_name": "Kim",
- "name": "MekO",
- "nationality": "KR",
- "role": "Tank",
- "slug": "meko"
}, - "player_id": 8531,
- "resurrections": 0,
- "ultimate": 0
}, - {
- "deaths": 6,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 3,
- "id": 514,
- "kills": 0,
- "name": "Zarya",
- "real_name": "Aleksandra Zaryanova",
- "resurrections": 0,
- "role": "tank",
- "slug": "zarya",
- "time_played": 103,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": 73,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 2,
- "id": 508,
- "kills": 4,
- "name": "Widowmaker",
- "real_name": "Amélie Lacroix",
- "resurrections": 0,
- "role": "defense",
- "slug": "widowmaker",
- "time_played": 244,
- "time_with_ult_up": 2,
- "ultimates": 3
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 3,
- "id": 504,
- "kills": 0,
- "name": "Hanzo",
- "real_name": "Hanzo Shimada",
- "resurrections": 0,
- "role": "defense",
- "slug": "hanzo",
- "time_played": 65,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": 75,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 3,
- "id": 496,
- "kills": 2,
- "name": "Genji",
- "real_name": "Genji Shimada",
- "resurrections": 0,
- "role": "offense",
- "slug": "genji",
- "time_played": 96,
- "time_with_ult_up": 0,
- "ultimates": 1
}
], - "kills": 6,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1997,
- "birthday": "1997-08-15",
- "first_name": "Do-hyeon",
- "hometown": "Seoul",
- "id": 8532,
- "last_name": "Kim",
- "name": "Pine",
- "nationality": "KR",
- "role": "offense",
- "slug": "pine"
}, - "player_id": 8532,
- "resurrections": 0,
- "ultimate": 4
}, - {
- "deaths": 5,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 95,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 3,
- "id": 520,
- "kills": 2,
- "name": "Zenyatta",
- "real_name": "Tekhartha Zenyatta",
- "resurrections": 0,
- "role": "support",
- "slug": "zenyatta",
- "time_played": 282,
- "time_with_ult_up": 50,
- "ultimates": 2
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 2,
- "id": 518,
- "kills": 0,
- "name": "Moira",
- "real_name": "Moira O’Deorain",
- "resurrections": 0,
- "role": "support",
- "slug": "moira",
- "time_played": 63,
- "time_with_ult_up": 0,
- "ultimates": 0
}, - {
- "avg_time_to_charge_ultimate": 82,
- "deaths": 0,
- "destructions": 0,
- "difficulty": 3,
- "id": 515,
- "kills": 0,
- "name": "Ana",
- "real_name": "Ana Amari",
- "resurrections": 0,
- "role": "support",
- "slug": "ana",
- "time_played": 136,
- "time_with_ult_up": 32,
- "ultimates": 1
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 1,
- "id": 500,
- "kills": 0,
- "name": "Soldier: 76",
- "real_name": "Unknown",
- "resurrections": 0,
- "role": "offense",
- "slug": "soldier-76",
- "time_played": 27,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 2,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1999,
- "birthday": "1999-12-20",
- "first_name": "Sung-hyeon",
- "hometown": "Osan",
- "id": 8534,
- "last_name": "Bang",
- "name": "JJoNak",
- "nationality": "KR",
- "role": "Support",
- "slug": "jjonak"
}, - "player_id": 8534,
- "resurrections": 0,
- "ultimate": 3
}, - {
- "deaths": 4,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 88,
- "deaths": 3,
- "destructions": 0,
- "difficulty": 2,
- "id": 513,
- "kills": 7,
- "name": "Winston",
- "real_name": "Winston",
- "resurrections": 0,
- "role": "tank",
- "slug": "winston",
- "time_played": 450,
- "time_with_ult_up": 202,
- "ultimates": 2
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 1,
- "id": 511,
- "kills": 0,
- "name": "Reinhardt",
- "real_name": "Reinhardt Wilhelm",
- "resurrections": 0,
- "role": "tank",
- "slug": "reinhardt",
- "time_played": 58,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 7,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1996,
- "birthday": "1996-04-12",
- "first_name": "Dong-gyu",
- "hometown": "Busan",
- "id": 8535,
- "last_name": "Kim",
- "name": "Mano",
- "nationality": "KR",
- "role": "Tank",
- "slug": "mano"
}, - "player_id": 8535,
- "resurrections": 0,
- "ultimate": 2
}, - {
- "deaths": 3,
- "destructions": 0,
- "heroes": [
- {
- "avg_time_to_charge_ultimate": 122,
- "deaths": 1,
- "destructions": 0,
- "difficulty": 1,
- "id": 517,
- "kills": 1,
- "name": "Mercy",
- "real_name": "Angela Ziegler",
- "resurrections": 1,
- "role": "support",
- "slug": "mercy",
- "time_played": 416,
- "time_with_ult_up": 71,
- "ultimates": 2
}, - {
- "avg_time_to_charge_ultimate": null,
- "deaths": 2,
- "destructions": 0,
- "difficulty": 2,
- "id": 516,
- "kills": 0,
- "name": "Lúcio",
- "real_name": "Lúcio Correia dos Santos",
- "resurrections": 0,
- "role": "support",
- "slug": "lucio",
- "time_played": 92,
- "time_with_ult_up": 0,
- "ultimates": 0
}
], - "kills": 1,
- "opponent": {
- "acronym": "PHI",
- "id": 1545,
- "location": "US",
- "modified_at": "2020-11-24T08:00:33Z",
- "name": "Philadelphia Fusion",
- "slug": "philadelphia-fusion"
}, - "player": {
- "birth_year": 1998,
- "birthday": "1998-01-11",
- "first_name": "Yeonjoon",
- "hometown": "Seoul",
- "id": 8537,
- "last_name": "Hong",
- "name": "ArK",
- "nationality": "KR",
- "role": "Support",
- "slug": "ark-yeon-jun-hong"
}, - "player_id": 8537,
- "resurrections": 1,
- "ultimate": 2
}
], - "team": {
- "acronym": "NYE",
- "id": 1548,
- "location": "US",
- "modified_at": "2020-12-15T03:01:04Z",
- "name": "New York Excelsior",
- "slug": "new-york-excelsior"
}
}
]
}
], - "status": "finished",
- "video_url": null,
- "winner": {
- "id": 1545,
- "type": "Team"
}, - "winner_type": "Team"
}
]
List heroes
object (filter_over_OwHeroes) Example: filter[role]=defense,support Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_OwHeroes) Example: range[slug]=baptiste,moira Options to select results within ranges | |
object (search_over_OwHeroes) Example: search[name]=bap Options to search results | |
sort | Array of any (sort_over_OwHeroes) non-empty Items Enum: "difficulty" "-difficulty" "id" "-id" "name" "-name" "real_name" "-real_name" "role" "-role" "slug" "-slug" Example: sort=role&sort=name Options to sort results |
/ow/heroes?page[size]=1
[- {
- "difficulty": 2,
- "id": 637,
- "name": "Echo",
- "real_name": "Echo",
- "role": "damage",
- "slug": "echo"
}
]
Get a single hero by ID or by slug
required | OwHeroID (integer) or OwHeroSlug (string) (OwHeroIDOrSlug) A hero ID or slug |
/ow/heroes/634
{- "difficulty": 3,
- "id": 634,
- "name": "Baptiste",
- "real_name": "Jean-Baptiste Augustin",
- "role": "support",
- "slug": "baptiste"
}
List Overwatch leagues
object (filter_over_OwLeagues) Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_OwLeagues) Example: range[modified_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_OwLeagues) Example: search[name]=Contenders Options to search results | |
sort | Array of any (sort_over_OwLeagues) non-empty Items Enum: "id" "-id" "modified_at" "-modified_at" "name" "-name" "slug" "-slug" "url" "-url" Example: sort=name&sort=-modified_at Options to sort results |
/ow/leagues?page[size]=1
[- {
- "id": 4238,
- "modified_at": "2019-10-06T21:09:10Z",
- "name": "Contenders: The Gauntlet",
- "series": [
- {
- "begin_at": "2019-10-09T02:00:00Z",
- "description": null,
- "end_at": "2019-10-13T06:37:00Z",
- "full_name": "2019",
- "id": 1835,
- "league_id": 4238,
- "modified_at": "2019-10-13T09:04:15Z",
- "name": "",
- "season": null,
- "slug": "ow-the-gauntlet-2019",
- "tier": null,
- "winner_id": 13713,
- "winner_type": "Team",
- "year": 2019
}
], - "slug": "ow-the-gauntlet",
- "videogame": {
- "current_version": null,
- "id": 14,
- "name": "Overwatch",
- "slug": "ow"
}
}
]
List maps
object (filter_over_OwMaps) Example: filter[game_mode]=Control,Assault Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_OwMaps) Example: range[name]=Hollywood,Volskaya Options to select results within ranges | |
object (search_over_OwMaps) Example: search[name]=row Options to search results | |
sort | Array of any (sort_over_OwMaps) non-empty Items Enum: "game_mode" "-game_mode" "id" "-id" "name" "-name" "slug" "-slug" Example: sort=game_mode&sort=name Options to sort results |
/ow/maps?page[size]=1
[- {
- "game_mode": "Escort",
- "id": 643,
- "name": "Havana",
- "slug": "havana",
}
]
Get a single map by ID or by slug
required | OwMapID (integer) or OwMapSlug (string) (OwMapIDOrSlug) A map ID or slug |
/ow/maps/rialto
{- "game_mode": "Escort",
- "id": 610,
- "name": "Rialto",
- "slug": "rialto",
}
List matches for the Overwatch videogame
object (filter_over_OwMatches) Example: filter[detailed_stats]=true Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_OwMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_OwMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_OwMatches) non-empty Items Enum: "begin_at" "-begin_at" "detailed_stats" "-detailed_stats" "draw" "-draw" "end_at" "-end_at" "forfeit" "-forfeit" "id" "-id" "match_type" "-match_type" "modified_at" "-modified_at" "name" "-name" "number_of_games" "-number_of_games" "scheduled_at" "-scheduled_at" "slug" "-slug" "status" "-status" "tournament_id" "-tournament_id" "winner_id" "-winner_id" Example: sort=tournament_id&sort=scheduled_at Options to sort results |
/ow/matches?page[size]=1
[- {
- "begin_at": "2020-12-18T22:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10138,
- "length": null,
- "match_id": 577388,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10139,
- "length": null,
- "match_id": 577388,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10140,
- "length": null,
- "match_id": 577388,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10141,
- "length": null,
- "match_id": 577388,
- "position": 4,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10142,
- "length": null,
- "match_id": 577388,
- "position": 5,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10143,
- "length": null,
- "match_id": 577388,
- "position": 6,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10144,
- "length": null,
- "match_id": 577388,
- "position": 7,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}
], - "id": 577388,
- "league": {
- "id": 4238,
- "modified_at": "2019-10-06T21:09:10Z",
- "name": "Contenders: The Gauntlet",
- "slug": "ow-the-gauntlet",
}, - "league_id": 4238,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "first_to",
- "modified_at": "2020-12-12T08:40:32Z",
- "name": "Losers Round 4: TBD vs TBD",
- "number_of_games": 3,
- "official_stream_url": null,
- "opponents": [ ],
- "original_scheduled_at": "2020-12-18T22:00:00Z",
- "rescheduled": false,
- "results": [ ],
- "scheduled_at": "2020-12-18T22:00:00Z",
- "serie": {
- "begin_at": "2020-12-10T22:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North America 2020",
- "id": 3182,
- "league_id": 4238,
- "modified_at": "2020-12-10T08:29:38Z",
- "name": "North America",
- "season": null,
- "slug": "ow-the-gauntlet-north-america-2020",
- "tier": "b",
- "winner_id": null,
- "winner_type": null,
- "year": 2020
}, - "serie_id": 3182,
- "slug": "2020-12-18-0288778b-1bf7-4990-a6e2-335f0c3ed19b",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2020-12-10T22:00:00Z",
- "end_at": null,
- "id": 5206,
- "league_id": 4238,
- "live_supported": false,
- "modified_at": "2020-12-11T12:09:28Z",
- "name": "Knockout Stage",
- "prizepool": null,
- "serie_id": 3182,
- "slug": "ow-the-gauntlet-north-america-2020-knockout-stage",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5206,
- "videogame": {
- "id": 14,
- "name": "Overwatch",
- "slug": "ow"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List past Overwatch matches
object (filter_over_OwMatches) Example: filter[detailed_stats]=true Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_OwMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_OwMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_OwMatches) non-empty Items Enum: "begin_at" "-begin_at" "detailed_stats" "-detailed_stats" "draw" "-draw" "end_at" "-end_at" "forfeit" "-forfeit" "id" "-id" "match_type" "-match_type" "modified_at" "-modified_at" "name" "-name" "number_of_games" "-number_of_games" "scheduled_at" "-scheduled_at" "slug" "-slug" "status" "-status" "tournament_id" "-tournament_id" "winner_id" "-winner_id" Example: sort=tournament_id&sort=scheduled_at Options to sort results |
/ow/matches?page[size]=1
[- {
- "begin_at": "2020-12-18T22:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10138,
- "length": null,
- "match_id": 577388,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10139,
- "length": null,
- "match_id": 577388,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10140,
- "length": null,
- "match_id": 577388,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10141,
- "length": null,
- "match_id": 577388,
- "position": 4,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10142,
- "length": null,
- "match_id": 577388,
- "position": 5,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10143,
- "length": null,
- "match_id": 577388,
- "position": 6,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10144,
- "length": null,
- "match_id": 577388,
- "position": 7,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}
], - "id": 577388,
- "league": {
- "id": 4238,
- "modified_at": "2019-10-06T21:09:10Z",
- "name": "Contenders: The Gauntlet",
- "slug": "ow-the-gauntlet",
}, - "league_id": 4238,
- "live": {
- "opens_at": null,
- "supported": false,
- "url": null
}, - "live_embed_url": null,
- "match_type": "first_to",
- "modified_at": "2020-12-12T08:40:32Z",
- "name": "Losers Round 4: TBD vs TBD",
- "number_of_games": 3,
- "official_stream_url": null,
- "opponents": [ ],
- "original_scheduled_at": "2020-12-18T22:00:00Z",
- "rescheduled": false,
- "results": [ ],
- "scheduled_at": "2020-12-18T22:00:00Z",
- "serie": {
- "begin_at": "2020-12-10T22:00:00Z",
- "description": null,
- "end_at": null,
- "full_name": "North America 2020",
- "id": 3182,
- "league_id": 4238,
- "modified_at": "2020-12-10T08:29:38Z",
- "name": "North America",
- "season": null,
- "slug": "ow-the-gauntlet-north-america-2020",
- "tier": "b",
- "winner_id": null,
- "winner_type": null,
- "year": 2020
}, - "serie_id": 3182,
- "slug": "2020-12-18-0288778b-1bf7-4990-a6e2-335f0c3ed19b",
- "status": "not_started",
- "streams": {
- "english": {
- "embed_url": null,
- "raw_url": null
}, - "official": {
- "embed_url": null,
- "raw_url": null
}, - "russian": {
- "embed_url": null,
- "raw_url": null
}
}, - "tournament": {
- "begin_at": "2020-12-10T22:00:00Z",
- "end_at": null,
- "id": 5206,
- "league_id": 4238,
- "live_supported": false,
- "modified_at": "2020-12-11T12:09:28Z",
- "name": "Knockout Stage",
- "prizepool": null,
- "serie_id": 3182,
- "slug": "ow-the-gauntlet-north-america-2020-knockout-stage",
- "winner_id": null,
- "winner_type": "Team"
}, - "tournament_id": 5206,
- "videogame": {
- "id": 14,
- "name": "Overwatch",
- "slug": "ow"
}, - "videogame_version": null,
- "winner": null,
- "winner_id": null
}
]
List running Overwatch matches
object (filter_over_OwMatches) Example: filter[detailed_stats]=true Options to filter results. String fields are case sensitive | |
integer or object Pagination in the form of | |
per_page | integer [ 1 .. 100 ] Default: 50 Example: per_page=5 Equivalent to |
object (range_over_OwMatches) Example: range[begin_at]=2019-04-08T17:00:00Z,2019-10-08T22:00:00Z Options to select results within ranges | |
object (search_over_OwMatches) Example: search[name]=Finals Options to search results | |
sort | Array of any (sort_over_OwMatches) non-empty Items Enum: "begin_at" "-begin_at" "detailed_stats" "-detailed_stats" "draw" "-draw" "end_at" "-end_at" "forfeit" "-forfeit" "id" "-id" "match_type" "-match_type" "modified_at" "-modified_at" "name" "-name" "number_of_games" "-number_of_games" "scheduled_at" "-scheduled_at" "slug" "-slug" "status" "-status" "tournament_id" "-tournament_id" "winner_id" "-winner_id" Example: sort=tournament_id&sort=scheduled_at Options to sort results |
/ow/matches?page[size]=1
[- {
- "begin_at": "2020-12-18T22:00:00Z",
- "detailed_stats": false,
- "draw": false,
- "end_at": null,
- "forfeit": false,
- "game_advantage": null,
- "games": [
- {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10138,
- "length": null,
- "match_id": 577388,
- "position": 1,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10139,
- "length": null,
- "match_id": 577388,
- "position": 2,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10140,
- "length": null,
- "match_id": 577388,
- "position": 3,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10141,
- "length": null,
- "match_id": 577388,
- "position": 4,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10142,
- "length": null,
- "match_id": 577388,
- "position": 5,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10143,
- "length": null,
- "match_id": 577388,
- "position": 6,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}, - {
- "begin_at": null,
- "complete": false,
- "detailed_stats": false,
- "end_at": null,
- "finished": false,
- "forfeit": false,
- "id": 10144,
- "length": null,
- "match_id": 577388,
- "position": 7,
- "status": "not_started",
- "video_url": null,
- "winner": {
- "id": null,
- "type": null
}, - "winner_type": null
}
], - "id": 577388,