From 285ec1074aeb896b16e0bf95bf41190941d6c660 Mon Sep 17 00:00:00 2001 From: Julian Arndt Date: Wed, 7 Oct 2020 22:14:13 +0200 Subject: [PATCH] Add api football files updater --- .../apifootball/APIFootballConnector.java | 76 - .../jeyp91/apifootball/APIFootballMatch.java | 12 + .../apifootball/APIFootballUpdater.java | 158 + .../java/de/jeyp91/tippliga/TLWMatch.java | 20 +- .../jeyp91/tippliga/TLWMatchdaysUpdater.java | 2 +- .../jeyp91/tippliga/TippligaSQLConnector.java | 5 +- .../API-Football/matches_league_2664.json | 140 +- .../API-Football/matches_league_2743.json | 1252 +- .../API-Football/matches_league_2755.json | 40 +- .../API-Football/matches_league_2790.json | 14447 ++++++++++++++++ .../API-Football/matches_league_2795.json | 426 +- .../2021/API-Football/rounds_2790.json | 45 + src/main/resources/2021/Tippliga.json | 170 +- .../resources/Team_ID_TLW_APIF_config.json | 10 + .../apifootball/APIFootballUpdaterTest.java | 20 + .../tippliga/TLWMatchdayUpdaterTest.java | 11 +- .../TLWMatchesUpdaterFootballTest.java | 10 +- .../jeyp91/tippliga/TLWTeamsUpdaterTest.java | 12 +- 18 files changed, 15808 insertions(+), 1048 deletions(-) create mode 100644 src/main/java/de/jeyp91/apifootball/APIFootballUpdater.java create mode 100644 src/main/resources/2021/API-Football/matches_league_2790.json create mode 100644 src/main/resources/2021/API-Football/rounds_2790.json create mode 100644 src/test/java/de/jeyp91/apifootball/APIFootballUpdaterTest.java diff --git a/src/main/java/de/jeyp91/apifootball/APIFootballConnector.java b/src/main/java/de/jeyp91/apifootball/APIFootballConnector.java index 0f6a07c..1085287 100644 --- a/src/main/java/de/jeyp91/apifootball/APIFootballConnector.java +++ b/src/main/java/de/jeyp91/apifootball/APIFootballConnector.java @@ -91,80 +91,4 @@ public class APIFootballConnector { return object; } - - private JSONArray getDataAsJSONArray(String requestUrl) { - - String rawData = getRawData(requestUrl); - JSONParser parser = new JSONParser(); - JSONArray data = null; - try { - data = (JSONArray) parser.parse(rawData); - } catch (ParseException e) { - /* TODO */ - e.printStackTrace(); - } - return data; - } - - private JSONObject getDataAsJSONObject(String requestUrl) { - - String rawData = getRawData(requestUrl); - JSONParser parser = new JSONParser(); - JSONObject data = null; - try { - data = (JSONObject) parser.parse(rawData); - } catch (ParseException e) { - /* TODO */ - e.printStackTrace(); - } - return data; - } - - String getRawData(String requestUrl) { - - HttpClient client = HttpClientBuilder.create().build(); - HttpGet request = new HttpGet(requestUrl); - - // add request header - request.addHeader("Content-Type", "application/json"); - - HttpResponse response = null; - try { - response = client.execute(request); - } catch (ClientProtocolException e) { - /* TODO */ - e.printStackTrace(); - } catch (IOException e) { - /* TODO */ - e.printStackTrace(); - } - - - BufferedReader rd = null; - try { - rd = new BufferedReader( - new InputStreamReader(response.getEntity().getContent()) - ); - } catch (IOException e) { - /* TODO */ - e.printStackTrace(); - } - - StringBuilder result = new StringBuilder(); - String line = ""; - while (true) { - try { - line = rd.readLine(); - } catch (IOException e) { - /* TODO */ - e.printStackTrace(); - } - - // Stop reading if last line was found. - if (line == null) break; - - result.append(line); - } - return result.toString(); - } } \ No newline at end of file diff --git a/src/main/java/de/jeyp91/apifootball/APIFootballMatch.java b/src/main/java/de/jeyp91/apifootball/APIFootballMatch.java index 650cc44..ee7d579 100644 --- a/src/main/java/de/jeyp91/apifootball/APIFootballMatch.java +++ b/src/main/java/de/jeyp91/apifootball/APIFootballMatch.java @@ -17,6 +17,8 @@ public class APIFootballMatch extends BaseMatch { private int matchId; private int leagueId; private String matchStatus; + private String teamNameHome; + private String teamNameGuest; public APIFootballMatch(JSONObject json, int season) { this.season = season; @@ -25,6 +27,8 @@ public class APIFootballMatch extends BaseMatch { this.leagueId = Integer.parseInt(json.get("league_id").toString()); this.teamIdHome = Integer.parseInt(((JSONObject) json.get("homeTeam")).get("team_id").toString()); this.teamIdGuest = Integer.parseInt(((JSONObject) json.get("awayTeam")).get("team_id").toString()); + this.teamNameHome = ((JSONObject) json.get("homeTeam")).get("team_name").toString(); + this.teamNameGuest = ((JSONObject) json.get("awayTeam")).get("team_name").toString(); this.goalsHome = getNumberOrNull(json.get("goalsHomeTeam")); this.goalsGuest = getNumberOrNull(json.get("goalsAwayTeam")); this.matchday = getMatchdayFromRoundString(json.get("round").toString(), this.leagueId); @@ -73,4 +77,12 @@ public class APIFootballMatch extends BaseMatch { private Integer getNumberOrNull(Object object) { return object != null ? Integer.parseInt(object.toString()) : null; } + + public String getTeamNameHome() { + return this.teamNameHome; + } + + public String getTeamNameGuest() { + return this.teamNameGuest; + } } diff --git a/src/main/java/de/jeyp91/apifootball/APIFootballUpdater.java b/src/main/java/de/jeyp91/apifootball/APIFootballUpdater.java new file mode 100644 index 0000000..060cb68 --- /dev/null +++ b/src/main/java/de/jeyp91/apifootball/APIFootballUpdater.java @@ -0,0 +1,158 @@ +package de.jeyp91.apifootball; + +import com.google.common.io.Resources; +import org.apache.http.HttpResponse; +import org.apache.http.client.ClientProtocolException; +import org.apache.http.client.HttpClient; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.impl.client.HttpClientBuilder; +import org.json.simple.JSONArray; +import org.json.simple.JSONObject; +import org.json.simple.parser.JSONParser; +import org.json.simple.parser.ParseException; + +import java.io.BufferedReader; +import java.io.FileWriter; +import java.io.IOException; +import java.io.InputStreamReader; +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.util.HashSet; + +public class APIFootballUpdater { + + private int season; + + public APIFootballUpdater(int season) { + this.season = season; + } + + public void updateFixtures(int league) throws IOException { + String apiFootballUrl = "https://v2.api-football.com/fixtures/league/" + league + "?timezone=Europe/Berlin"; + String content = getRawData(apiFootballUrl); + String resourcePath = this.season + "/API-Football/matches_league_" + league + ".json"; + writeStringToFile(content, resourcePath); + } + + public void updateAllFixtures(String configPath) throws IOException { + HashSet leagues = getAllLeaguesFromLeagueConfig(configPath); + for (Integer league : leagues) { + updateFixtures(league); + } + } + + private HashSet getAllLeaguesFromLeagueConfig(String configPath) { + + HashSet leagues = new HashSet<>(); + + JSONParser jsonParser = new JSONParser(); + URL url = Resources.getResource(season + "\\" + configPath); + String jsonConfig = null; + JSONObject configObject = null; + try { + jsonConfig = Resources.toString(url, StandardCharsets.UTF_8); + configObject = (JSONObject) jsonParser.parse(jsonConfig); + } catch (IOException | ParseException e) { + e.printStackTrace(); + } + + JSONArray matchdayConfigs = (JSONArray) configObject.get("matchdayConfig"); + for (Object matchdayConfig : matchdayConfigs) { + JSONArray matchesConfig = (JSONArray) ((JSONObject) matchdayConfig).get("matchesConfig"); + for (Object matchConfig : matchesConfig) { + if (((JSONObject) matchConfig).containsKey("matchesLeague")) { + int league = Integer.parseInt(((JSONObject) matchConfig).get("matchesLeague").toString()); + leagues.add(league); + } + if (((JSONObject) matchConfig).containsKey("matchLeague")) { + int league = Integer.parseInt(((JSONObject) matchConfig).get("matchLeague").toString()); + leagues.add(league); + } + } + } + return leagues; + } + + private void writeStringToFile(String content, String resourcePath) throws IOException { + URL url = Resources.getResource(resourcePath); + FileWriter myWriter = new FileWriter(url.getPath()); + myWriter.write(content); + myWriter.close(); + } + + private JSONArray getDataAsJSONArray(String requestUrl) { + + String rawData = getRawData(requestUrl); + JSONParser parser = new JSONParser(); + JSONArray data = null; + try { + data = (JSONArray) parser.parse(rawData); + } catch (ParseException e) { + /* TODO */ + e.printStackTrace(); + } + return data; + } + + private JSONObject getDataAsJSONObject(String requestUrl) { + + String rawData = getRawData(requestUrl); + JSONParser parser = new JSONParser(); + JSONObject data = null; + try { + data = (JSONObject) parser.parse(rawData); + } catch (ParseException e) { + /* TODO */ + e.printStackTrace(); + } + return data; + } + + String getRawData(String requestUrl) { + + HttpClient client = HttpClientBuilder.create().build(); + HttpGet request = new HttpGet(requestUrl); + + // add request header + request.addHeader("X-RapidAPI-Key", "a607e6a7437d9d52f3ac73e0b2704d0b"); + + HttpResponse response = null; + try { + response = client.execute(request); + } catch (ClientProtocolException e) { + /* TODO */ + e.printStackTrace(); + } catch (IOException e) { + /* TODO */ + e.printStackTrace(); + } + + + BufferedReader rd = null; + try { + rd = new BufferedReader( + new InputStreamReader(response.getEntity().getContent()) + ); + } catch (IOException e) { + /* TODO */ + e.printStackTrace(); + } + + StringBuilder result = new StringBuilder(); + String line = ""; + while (true) { + try { + line = rd.readLine(); + } catch (IOException e) { + /* TODO */ + e.printStackTrace(); + } + + // Stop reading if last line was found. + if (line == null) break; + + result.append(line); + } + return result.toString(); + } +} diff --git a/src/main/java/de/jeyp91/tippliga/TLWMatch.java b/src/main/java/de/jeyp91/tippliga/TLWMatch.java index 4655330..230cfbb 100644 --- a/src/main/java/de/jeyp91/tippliga/TLWMatch.java +++ b/src/main/java/de/jeyp91/tippliga/TLWMatch.java @@ -110,8 +110,8 @@ public class TLWMatch extends BaseMatch{ this.league = league; this.matchday = matchday; this.matchNo = matchNo; - this.teamIdHome = TeamIDMatcher.getTippligaIdFromApiFootballId(apiFootballMatch.getTeamIdHome()); - this.teamIdGuest = TeamIDMatcher.getTippligaIdFromApiFootballId(apiFootballMatch.getTeamIdGuest()); + this.teamIdHome = this.getTeamIdHomeFromApiFootballMatch(apiFootballMatch); + this.teamIdGuest = this.getTeamIdGuestFromApiFootballMatch(apiFootballMatch); this.goalsHome = apiFootballMatch.getGoalsHome(); this.goalsGuest = apiFootballMatch.getGoalsGuest(); this.matchDatetime = apiFootballMatch.getMatchDateTime().replace("T", " ").substring(0, 19); @@ -270,4 +270,20 @@ public class TLWMatch extends BaseMatch{ this.goalsGuest = apiFootballMatch.getGoalsGuest(); this.matchDatetime = apiFootballMatch.getMatchDateTime().replace("T", " ").substring(0, 19); } + + private Integer getTeamIdHomeFromApiFootballMatch(APIFootballMatch match) { + Integer id = TeamIDMatcher.getTippligaIdFromApiFootballId(match.getTeamIdHome()); + if(id == null) { + System.out.println("Could not find id " + match.getTeamIdHome() + " for " + match.getTeamNameHome()); + } + return id; + } + + private Integer getTeamIdGuestFromApiFootballMatch(APIFootballMatch match) { + Integer id = TeamIDMatcher.getTippligaIdFromApiFootballId(match.getTeamIdGuest()); + if(id == null) { + System.out.println("Could not find id " + match.getTeamIdGuest() + " for " + match.getTeamNameGuest()); + } + return id; + } } \ No newline at end of file diff --git a/src/main/java/de/jeyp91/tippliga/TLWMatchdaysUpdater.java b/src/main/java/de/jeyp91/tippliga/TLWMatchdaysUpdater.java index d6550e4..ae5e9d9 100644 --- a/src/main/java/de/jeyp91/tippliga/TLWMatchdaysUpdater.java +++ b/src/main/java/de/jeyp91/tippliga/TLWMatchdaysUpdater.java @@ -53,7 +53,7 @@ public class TLWMatchdaysUpdater { if(earliestDate.after(now)) { - String updateStart = "UPDATE phpbb_footb_matches SET "; + String updateStart = "UPDATE phpbb_footb_matchdays SET "; String condition = "WHERE season = " + matchdayOriginal.getSeason() + " " + "AND league = " + matchdayOriginal.getLeague() + " " + "AND matchday = " + matchdayOriginal.getMatchday() + ";\n"; diff --git a/src/main/java/de/jeyp91/tippliga/TippligaSQLConnector.java b/src/main/java/de/jeyp91/tippliga/TippligaSQLConnector.java index 7fc7b3c..5212230 100644 --- a/src/main/java/de/jeyp91/tippliga/TippligaSQLConnector.java +++ b/src/main/java/de/jeyp91/tippliga/TippligaSQLConnector.java @@ -24,9 +24,10 @@ public class TippligaSQLConnector { } public TippligaSQLConnector() { - String jdbcUrl = "jdbc:mysql://localhost/d0144ddb?user=root&password=&useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC"; + String jdbcUrlLocalhost = "jdbc:mysql://localhost/d0144ddb?user=root&password=&useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC"; + String jdbcUrlProd = "jdbc:mysql://dd16124.kasserver.com/d0144ddb?user=d0144ddb&password=TippligaWuerzb_1&useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC"; try { - con = DriverManager.getConnection(jdbcUrl); + con = DriverManager.getConnection(jdbcUrlProd); } catch (SQLException e) { /* TODO */ e.printStackTrace(); diff --git a/src/main/resources/2021/API-Football/matches_league_2664.json b/src/main/resources/2021/API-Football/matches_league_2664.json index 4d13f8d..5084f69 100644 --- a/src/main/resources/2021/API-Football/matches_league_2664.json +++ b/src/main/resources/2021/API-Football/matches_league_2664.json @@ -2027,14 +2027,14 @@ }, "event_date": "2020-10-04T13:00:00+02:00", "event_timestamp": 1601809200, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601809200, + "secondHalfStart": 1601812800, "round": "Regular Season - 6", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "Stade de la Mosson", - "referee": "B. Millot", + "referee": "Benoit Millot, France", "homeTeam": { "team_id": 82, "team_name": "Montpellier", @@ -2045,11 +2045,11 @@ "team_name": "Nimes", "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 0, + "goalsAwayTeam": 1, "score": { - "halftime": null, - "fulltime": null, + "halftime": "0-0", + "fulltime": "0-1", "extratime": null, "penalty": null } @@ -2065,14 +2065,14 @@ }, "event_date": "2020-10-04T15:00:00+02:00", "event_timestamp": 1601816400, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601816400, + "secondHalfStart": 1601820000, "round": "Regular Season - 6", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "Stade Francis-Le Blé", - "referee": "J. Hamel", + "referee": "Johan Hamel, France", "homeTeam": { "team_id": 106, "team_name": "Stade Brestois 29", @@ -2083,11 +2083,11 @@ "team_name": "Monaco", "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 1, + "goalsAwayTeam": 0, "score": { - "halftime": null, - "fulltime": null, + "halftime": "1-0", + "fulltime": "1-0", "extratime": null, "penalty": null } @@ -2103,14 +2103,14 @@ }, "event_date": "2020-10-04T15:00:00+02:00", "event_timestamp": 1601816400, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601816400, + "secondHalfStart": 1601820000, "round": "Regular Season - 6", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "Stade Matmut-Atlantique", - "referee": "A. Gautier", + "referee": "Antony Gautier, France", "homeTeam": { "team_id": 78, "team_name": "Bordeaux", @@ -2121,11 +2121,11 @@ "team_name": "Dijon", "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 3, + "goalsAwayTeam": 0, "score": { - "halftime": null, - "fulltime": null, + "halftime": "2-0", + "fulltime": "3-0", "extratime": null, "penalty": null } @@ -2141,14 +2141,14 @@ }, "event_date": "2020-10-04T15:00:00+02:00", "event_timestamp": 1601816400, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601816400, + "secondHalfStart": 1601820000, "round": "Regular Season - 6", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "Stade Saint-Symphorien", - "referee": "J. Miguelgorry", + "referee": "Jerome Miguelgorry, France", "homeTeam": { "team_id": 112, "team_name": "Metz", @@ -2159,11 +2159,11 @@ "team_name": "Lorient", "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 3, + "goalsAwayTeam": 1, "score": { - "halftime": null, - "fulltime": null, + "halftime": "1-1", + "fulltime": "3-1", "extratime": null, "penalty": null } @@ -2179,14 +2179,14 @@ }, "event_date": "2020-10-04T15:00:00+02:00", "event_timestamp": 1601816400, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601816400, + "secondHalfStart": 1601820000, "round": "Regular Season - 6", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "Stade de la Meinau", - "referee": "M. Lesage", + "referee": "Mikael Lesage, France", "homeTeam": { "team_id": 95, "team_name": "Strasbourg", @@ -2197,11 +2197,11 @@ "team_name": "Lille", "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 0, + "goalsAwayTeam": 3, "score": { - "halftime": null, - "fulltime": null, + "halftime": "0-1", + "fulltime": "0-3", "extratime": null, "penalty": null } @@ -2217,14 +2217,14 @@ }, "event_date": "2020-10-04T17:00:00+02:00", "event_timestamp": 1601823600, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601823600, + "secondHalfStart": 1601827200, "round": "Regular Season - 6", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "Roazhon Park", - "referee": "F. Batta", + "referee": "Florent Batta, France", "homeTeam": { "team_id": 94, "team_name": "Rennes", @@ -2235,11 +2235,11 @@ "team_name": "Reims", "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 2, + "goalsAwayTeam": 2, "score": { - "halftime": null, - "fulltime": null, + "halftime": "2-1", + "fulltime": "2-2", "extratime": null, "penalty": null } @@ -2255,14 +2255,14 @@ }, "event_date": "2020-10-04T21:00:00+02:00", "event_timestamp": 1601838000, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601838000, + "secondHalfStart": 1601841600, "round": "Regular Season - 6", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "Groupama Stadium", - "referee": "S. Frappart", + "referee": "Stephanie Frappart, France", "homeTeam": { "team_id": 80, "team_name": "Lyon", @@ -2273,11 +2273,11 @@ "team_name": "Marseille", "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 1, + "goalsAwayTeam": 1, "score": { - "halftime": null, - "fulltime": null, + "halftime": "1-1", + "fulltime": "1-1", "extratime": null, "penalty": null } diff --git a/src/main/resources/2021/API-Football/matches_league_2743.json b/src/main/resources/2021/API-Football/matches_league_2743.json index ff89c19..f3c88ff 100644 --- a/src/main/resources/2021/API-Football/matches_league_2743.json +++ b/src/main/resources/2021/API-Football/matches_league_2743.json @@ -704,7 +704,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "BWT-Stadion am Hardtwald", - "referee": "Sven Waschitzki, Germany", + "referee": "S. Waschitzki", "homeTeam": { "team_id": 189, "team_name": "SV Sandhausen", @@ -742,7 +742,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "Vonovia Ruhrstadion", - "referee": "Alexander Sather, Germany", + "referee": "A. Sather", "homeTeam": { "team_id": 176, "team_name": "VfL BOCHUM", @@ -780,7 +780,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "Jahnstadion Regensburg", - "referee": "Lasse Koslowski, Germany", + "referee": "L. Koslowski", "homeTeam": { "team_id": 177, "team_name": "Jahn Regensburg", @@ -818,7 +818,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "Voith-Arena", - "referee": "Timo Gerach, Germany", + "referee": "T. Gerach", "homeTeam": { "team_id": 180, "team_name": "FC Heidenheim", @@ -856,7 +856,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "HDI-Arena", - "referee": "Daniel Siebert, Germany", + "referee": "D. Siebert", "homeTeam": { "team_id": 166, "team_name": "Hannover 96", @@ -887,14 +887,14 @@ }, "event_date": "2020-10-04T13:30:00+02:00", "event_timestamp": 1601811000, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601811000, + "secondHalfStart": 1601814600, "round": "Regular Season - 3", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "Holstein-Stadion", - "referee": null, + "referee": "P. Ittrich", "homeTeam": { "team_id": 191, "team_name": "Holstein Kiel", @@ -905,11 +905,11 @@ "team_name": "Fortuna Dusseldorf", "logo": "https:\/\/media.api-sports.io\/football\/teams\/158.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, "score": { - "halftime": null, - "fulltime": null, + "halftime": "1-0", + "fulltime": "2-1", "extratime": null, "penalty": null } @@ -925,14 +925,14 @@ }, "event_date": "2020-10-04T13:30:00+02:00", "event_timestamp": 1601811000, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601811000, + "secondHalfStart": 1601814600, "round": "Regular Season - 3", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "flyeralarm-Arena", - "referee": null, + "referee": "M. Bacher", "homeTeam": { "team_id": 784, "team_name": "FC Wurzburger Kickers", @@ -943,11 +943,11 @@ "team_name": "SpVgg Greuther Furth", "logo": "https:\/\/media.api-sports.io\/football\/teams\/178.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 2, + "goalsAwayTeam": 2, "score": { - "halftime": null, - "fulltime": null, + "halftime": "1-1", + "fulltime": "2-2", "extratime": null, "penalty": null } @@ -1001,14 +1001,14 @@ }, "event_date": "2020-10-05T20:30:00+02:00", "event_timestamp": 1601922600, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601922600, + "secondHalfStart": 1601926200, "round": "Regular Season - 3", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Second Half", + "statusShort": "2H", + "elapsed": 87, "venue": "Max-Morlock-Stadion", - "referee": null, + "referee": "Sören Storks, Germany", "homeTeam": { "team_id": 171, "team_name": "FC Nurnberg", @@ -1019,10 +1019,10 @@ "team_name": "SV Darmstadt 98", "logo": "https:\/\/media.api-sports.io\/football\/teams\/181.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 2, + "goalsAwayTeam": 2, "score": { - "halftime": null, + "halftime": "1-0", "fulltime": null, "extratime": null, "penalty": null @@ -1370,272 +1370,6 @@ "penalty": null } }, - { - "fixture_id": 585099, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-25T02:00:00+02:00", - "event_timestamp": 1603584000, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 5", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Voith-Arena", - "referee": null, - "homeTeam": { - "team_id": 180, - "team_name": "FC Heidenheim", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/180.png" - }, - "awayTeam": { - "team_id": 1324, - "team_name": "VfL Osnabruck", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/1324.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, - { - "fixture_id": 585100, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-25T02:00:00+02:00", - "event_timestamp": 1603584000, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 5", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Volksparkstadion", - "referee": null, - "homeTeam": { - "team_id": 175, - "team_name": "Hamburger SV", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/175.png" - }, - "awayTeam": { - "team_id": 784, - "team_name": "FC Wurzburger Kickers", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/784.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, - { - "fixture_id": 585101, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-25T02:00:00+02:00", - "event_timestamp": 1603584000, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 5", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Merck-Stadion am Böllenfalltor", - "referee": null, - "homeTeam": { - "team_id": 181, - "team_name": "SV Darmstadt 98", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/181.png" - }, - "awayTeam": { - "team_id": 186, - "team_name": "FC St. Pauli", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/186.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, - { - "fixture_id": 585102, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-25T02:00:00+02:00", - "event_timestamp": 1603584000, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 5", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "HDI-Arena", - "referee": null, - "homeTeam": { - "team_id": 166, - "team_name": "Hannover 96", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/166.png" - }, - "awayTeam": { - "team_id": 158, - "team_name": "Fortuna Dusseldorf", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/158.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, - { - "fixture_id": 585103, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-25T02:00:00+02:00", - "event_timestamp": 1603584000, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 5", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Vonovia Ruhrstadion", - "referee": null, - "homeTeam": { - "team_id": 176, - "team_name": "VfL BOCHUM", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/176.png" - }, - "awayTeam": { - "team_id": 190, - "team_name": "Erzgebirge AUE", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/190.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, - { - "fixture_id": 585104, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-25T02:00:00+02:00", - "event_timestamp": 1603584000, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 5", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "BWT-Stadion am Hardtwald", - "referee": null, - "homeTeam": { - "team_id": 189, - "team_name": "SV Sandhausen", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/189.png" - }, - "awayTeam": { - "team_id": 185, - "team_name": "SC Paderborn 07", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/185.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, - { - "fixture_id": 585105, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-25T02:00:00+02:00", - "event_timestamp": 1603584000, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 5", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Holstein-Stadion", - "referee": null, - "homeTeam": { - "team_id": 191, - "team_name": "Holstein Kiel", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/191.png" - }, - "awayTeam": { - "team_id": 178, - "team_name": "SpVgg Greuther Furth", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/178.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, { "fixture_id": 585106, "league_id": 2743, @@ -1645,13 +1379,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-10-25T02:00:00+02:00", - "event_timestamp": 1603584000, + "event_date": "2020-10-23T18:30:00+02:00", + "event_timestamp": 1603470600, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 5", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Jahnstadion Regensburg", "referee": null, @@ -1683,13 +1417,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-10-25T02:00:00+02:00", - "event_timestamp": 1603584000, + "event_date": "2020-10-23T18:30:00+02:00", + "event_timestamp": 1603470600, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 5", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Max-Morlock-Stadion", "referee": null, @@ -1712,6 +1446,272 @@ "penalty": null } }, + { + "fixture_id": 585100, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-24T13:00:00+02:00", + "event_timestamp": 1603537200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Volksparkstadion", + "referee": null, + "homeTeam": { + "team_id": 175, + "team_name": "Hamburger SV", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/175.png" + }, + "awayTeam": { + "team_id": 784, + "team_name": "FC Wurzburger Kickers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/784.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 585101, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-24T13:00:00+02:00", + "event_timestamp": 1603537200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Merck-Stadion am Böllenfalltor", + "referee": null, + "homeTeam": { + "team_id": 181, + "team_name": "SV Darmstadt 98", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/181.png" + }, + "awayTeam": { + "team_id": 186, + "team_name": "FC St. Pauli", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/186.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 585102, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-24T13:00:00+02:00", + "event_timestamp": 1603537200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "HDI-Arena", + "referee": null, + "homeTeam": { + "team_id": 166, + "team_name": "Hannover 96", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/166.png" + }, + "awayTeam": { + "team_id": 158, + "team_name": "Fortuna Dusseldorf", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/158.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 585105, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-24T13:00:00+02:00", + "event_timestamp": 1603537200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Holstein-Stadion", + "referee": null, + "homeTeam": { + "team_id": 191, + "team_name": "Holstein Kiel", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/191.png" + }, + "awayTeam": { + "team_id": 178, + "team_name": "SpVgg Greuther Furth", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/178.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 585099, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-25T12:30:00+01:00", + "event_timestamp": 1603625400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Voith-Arena", + "referee": null, + "homeTeam": { + "team_id": 180, + "team_name": "FC Heidenheim", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/180.png" + }, + "awayTeam": { + "team_id": 1324, + "team_name": "VfL Osnabruck", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1324.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 585103, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-25T12:30:00+01:00", + "event_timestamp": 1603625400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Vonovia Ruhrstadion", + "referee": null, + "homeTeam": { + "team_id": 176, + "team_name": "VfL BOCHUM", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/176.png" + }, + "awayTeam": { + "team_id": 190, + "team_name": "Erzgebirge AUE", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/190.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 585104, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-25T12:30:00+01:00", + "event_timestamp": 1603625400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "BWT-Stadion am Hardtwald", + "referee": null, + "homeTeam": { + "team_id": 189, + "team_name": "SV Sandhausen", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/189.png" + }, + "awayTeam": { + "team_id": 185, + "team_name": "SC Paderborn 07", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/185.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, { "fixture_id": 585108, "league_id": 2743, @@ -1721,13 +1721,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-01T01:00:00+01:00", - "event_timestamp": 1604188800, + "event_date": "2020-10-30T18:30:00+01:00", + "event_timestamp": 1604079000, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 6", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Merkur Spiel-Arena", "referee": null, @@ -1750,44 +1750,6 @@ "penalty": null } }, - { - "fixture_id": 585109, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-11-01T01:00:00+01:00", - "event_timestamp": 1604188800, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 6", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Benteler-Arena", - "referee": null, - "homeTeam": { - "team_id": 185, - "team_name": "SC Paderborn 07", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/185.png" - }, - "awayTeam": { - "team_id": 177, - "team_name": "Jahn Regensburg", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/177.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, { "fixture_id": 585110, "league_id": 2743, @@ -1797,13 +1759,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-01T01:00:00+01:00", - "event_timestamp": 1604188800, + "event_date": "2020-10-30T18:30:00+01:00", + "event_timestamp": 1604079000, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 6", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Volksparkstadion", "referee": null, @@ -1826,6 +1788,44 @@ "penalty": null } }, + { + "fixture_id": 585109, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-31T13:00:00+01:00", + "event_timestamp": 1604145600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Benteler-Arena", + "referee": null, + "homeTeam": { + "team_id": 185, + "team_name": "SC Paderborn 07", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/185.png" + }, + "awayTeam": { + "team_id": 177, + "team_name": "Jahn Regensburg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/177.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, { "fixture_id": 585111, "league_id": 2743, @@ -1835,13 +1835,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-01T01:00:00+01:00", - "event_timestamp": 1604188800, + "event_date": "2020-10-31T13:00:00+01:00", + "event_timestamp": 1604145600, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 6", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Erzgebirgsstadion", "referee": null, @@ -1864,44 +1864,6 @@ "penalty": null } }, - { - "fixture_id": 585112, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-11-01T01:00:00+01:00", - "event_timestamp": 1604188800, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 6", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Sportpark Ronhof Thomas Sommer", - "referee": null, - "homeTeam": { - "team_id": 178, - "team_name": "SpVgg Greuther Furth", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/178.png" - }, - "awayTeam": { - "team_id": 166, - "team_name": "Hannover 96", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/166.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, { "fixture_id": 585113, "league_id": 2743, @@ -1911,13 +1873,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-01T01:00:00+01:00", - "event_timestamp": 1604188800, + "event_date": "2020-10-31T13:00:00+01:00", + "event_timestamp": 1604145600, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 6", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Bremer Brücke", "referee": null, @@ -1940,44 +1902,6 @@ "penalty": null } }, - { - "fixture_id": 585114, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-11-01T01:00:00+01:00", - "event_timestamp": 1604188800, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 6", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Wildparkstadion", - "referee": null, - "homeTeam": { - "team_id": 785, - "team_name": "Karlsruher SC", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/785.png" - }, - "awayTeam": { - "team_id": 181, - "team_name": "SV Darmstadt 98", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/181.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, { "fixture_id": 585115, "league_id": 2743, @@ -1987,13 +1911,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-01T01:00:00+01:00", - "event_timestamp": 1604188800, + "event_date": "2020-10-31T13:00:00+01:00", + "event_timestamp": 1604145600, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 6", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Eintracht-Stadion", "referee": null, @@ -2016,6 +1940,82 @@ "penalty": null } }, + { + "fixture_id": 585112, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-11-01T13:30:00+01:00", + "event_timestamp": 1604233800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Sportpark Ronhof Thomas Sommer", + "referee": null, + "homeTeam": { + "team_id": 178, + "team_name": "SpVgg Greuther Furth", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/178.png" + }, + "awayTeam": { + "team_id": 166, + "team_name": "Hannover 96", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/166.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 585114, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-11-01T13:30:00+01:00", + "event_timestamp": 1604233800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Wildparkstadion", + "referee": null, + "homeTeam": { + "team_id": 785, + "team_name": "Karlsruher SC", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/785.png" + }, + "awayTeam": { + "team_id": 181, + "team_name": "SV Darmstadt 98", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/181.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, { "fixture_id": 585116, "league_id": 2743, @@ -2025,13 +2025,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-01T01:00:00+01:00", - "event_timestamp": 1604188800, + "event_date": "2020-11-01T13:30:00+01:00", + "event_timestamp": 1604233800, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 6", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "flyeralarm-Arena", "referee": null, @@ -2063,13 +2063,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-08T01:00:00+01:00", - "event_timestamp": 1604793600, + "event_date": "2020-11-06T18:30:00+01:00", + "event_timestamp": 1604683800, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Voith-Arena", "referee": null, @@ -2093,7 +2093,7 @@ } }, { - "fixture_id": 585118, + "fixture_id": 585121, "league_id": 2743, "league": { "name": "Bundesliga 2", @@ -2101,25 +2101,25 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-08T01:00:00+01:00", - "event_timestamp": 1604793600, + "event_date": "2020-11-06T18:30:00+01:00", + "event_timestamp": 1604683800, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, - "venue": "Merck-Stadion am Böllenfalltor", + "venue": "BWT-Stadion am Hardtwald", "referee": null, "homeTeam": { - "team_id": 181, - "team_name": "SV Darmstadt 98", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/181.png" + "team_id": 189, + "team_name": "SV Sandhausen", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/189.png" }, "awayTeam": { - "team_id": 185, - "team_name": "SC Paderborn 07", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/185.png" + "team_id": 744, + "team_name": "Eintracht Braunschweig", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/744.png" }, "goalsHomeTeam": null, "goalsAwayTeam": null, @@ -2139,13 +2139,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-08T01:00:00+01:00", - "event_timestamp": 1604793600, + "event_date": "2020-11-07T13:00:00+01:00", + "event_timestamp": 1604750400, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "HDI-Arena", "referee": null, @@ -2177,13 +2177,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-08T01:00:00+01:00", - "event_timestamp": 1604793600, + "event_date": "2020-11-07T13:00:00+01:00", + "event_timestamp": 1604750400, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Vonovia Ruhrstadion", "referee": null, @@ -2207,7 +2207,7 @@ } }, { - "fixture_id": 585121, + "fixture_id": 585125, "league_id": 2743, "league": { "name": "Bundesliga 2", @@ -2215,25 +2215,25 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-08T01:00:00+01:00", - "event_timestamp": 1604793600, + "event_date": "2020-11-07T13:00:00+01:00", + "event_timestamp": 1604750400, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, - "venue": "BWT-Stadion am Hardtwald", + "venue": "Max-Morlock-Stadion", "referee": null, "homeTeam": { - "team_id": 189, - "team_name": "SV Sandhausen", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/189.png" + "team_id": 171, + "team_name": "FC Nurnberg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/171.png" }, "awayTeam": { - "team_id": 744, - "team_name": "Eintracht Braunschweig", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/744.png" + "team_id": 158, + "team_name": "Fortuna Dusseldorf", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/158.png" }, "goalsHomeTeam": null, "goalsAwayTeam": null, @@ -2245,7 +2245,7 @@ } }, { - "fixture_id": 585122, + "fixture_id": 585118, "league_id": 2743, "league": { "name": "Bundesliga 2", @@ -2253,25 +2253,25 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-08T01:00:00+01:00", - "event_timestamp": 1604793600, + "event_date": "2020-11-08T13:30:00+01:00", + "event_timestamp": 1604838600, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, - "venue": "Holstein-Stadion", + "venue": "Merck-Stadion am Böllenfalltor", "referee": null, "homeTeam": { - "team_id": 191, - "team_name": "Holstein Kiel", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/191.png" + "team_id": 181, + "team_name": "SV Darmstadt 98", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/181.png" }, "awayTeam": { - "team_id": 175, - "team_name": "Hamburger SV", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/175.png" + "team_id": 185, + "team_name": "SC Paderborn 07", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/185.png" }, "goalsHomeTeam": null, "goalsAwayTeam": null, @@ -2291,13 +2291,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-08T01:00:00+01:00", - "event_timestamp": 1604793600, + "event_date": "2020-11-08T13:30:00+01:00", + "event_timestamp": 1604838600, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Jahnstadion Regensburg", "referee": null, @@ -2329,13 +2329,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-08T01:00:00+01:00", - "event_timestamp": 1604793600, + "event_date": "2020-11-08T13:30:00+01:00", + "event_timestamp": 1604838600, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Millerntor-Stadion", "referee": null, @@ -2359,7 +2359,7 @@ } }, { - "fixture_id": 585125, + "fixture_id": 585122, "league_id": 2743, "league": { "name": "Bundesliga 2", @@ -2367,25 +2367,25 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-08T01:00:00+01:00", - "event_timestamp": 1604793600, + "event_date": "2020-11-09T20:30:00+01:00", + "event_timestamp": 1604950200, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, - "venue": "Max-Morlock-Stadion", + "venue": "Holstein-Stadion", "referee": null, "homeTeam": { - "team_id": 171, - "team_name": "FC Nurnberg", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/171.png" + "team_id": 191, + "team_name": "Holstein Kiel", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/191.png" }, "awayTeam": { - "team_id": 158, - "team_name": "Fortuna Dusseldorf", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/158.png" + "team_id": 175, + "team_name": "Hamburger SV", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/175.png" }, "goalsHomeTeam": null, "goalsAwayTeam": null, @@ -2405,13 +2405,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-22T01:00:00+01:00", - "event_timestamp": 1606003200, + "event_date": "2020-11-21T13:00:00+01:00", + "event_timestamp": 1605960000, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 8", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Merkur Spiel-Arena", "referee": null, @@ -2443,13 +2443,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-22T01:00:00+01:00", - "event_timestamp": 1606003200, + "event_date": "2020-11-21T13:00:00+01:00", + "event_timestamp": 1605960000, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 8", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Benteler-Arena", "referee": null, @@ -2472,6 +2472,82 @@ "penalty": null } }, + { + "fixture_id": 585131, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-11-21T13:00:00+01:00", + "event_timestamp": 1605960000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Holstein-Stadion", + "referee": null, + "homeTeam": { + "team_id": 191, + "team_name": "Holstein Kiel", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/191.png" + }, + "awayTeam": { + "team_id": 180, + "team_name": "FC Heidenheim", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/180.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 585133, + "league_id": 2743, + "league": { + "name": "Bundesliga 2", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-11-21T13:00:00+01:00", + "event_timestamp": 1605960000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Eintracht-Stadion", + "referee": null, + "homeTeam": { + "team_id": 744, + "team_name": "Eintracht Braunschweig", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/744.png" + }, + "awayTeam": { + "team_id": 785, + "team_name": "Karlsruher SC", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/785.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, { "fixture_id": 585128, "league_id": 2743, @@ -2481,13 +2557,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-22T01:00:00+01:00", - "event_timestamp": 1606003200, + "event_date": "2020-11-22T13:30:00+01:00", + "event_timestamp": 1606048200, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 8", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Volksparkstadion", "referee": null, @@ -2519,13 +2595,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-22T01:00:00+01:00", - "event_timestamp": 1606003200, + "event_date": "2020-11-22T13:30:00+01:00", + "event_timestamp": 1606048200, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 8", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Erzgebirgsstadion", "referee": null, @@ -2557,13 +2633,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-22T01:00:00+01:00", - "event_timestamp": 1606003200, + "event_date": "2020-11-22T13:30:00+01:00", + "event_timestamp": 1606048200, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 8", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Sportpark Ronhof Thomas Sommer", "referee": null, @@ -2587,7 +2663,7 @@ } }, { - "fixture_id": 585131, + "fixture_id": 585134, "league_id": 2743, "league": { "name": "Bundesliga 2", @@ -2595,25 +2671,25 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-22T01:00:00+01:00", - "event_timestamp": 1606003200, + "event_date": "2020-11-22T13:30:00+01:00", + "event_timestamp": 1606048200, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 8", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, - "venue": "Holstein-Stadion", + "venue": "flyeralarm-Arena", "referee": null, "homeTeam": { - "team_id": 191, - "team_name": "Holstein Kiel", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/191.png" + "team_id": 784, + "team_name": "FC Wurzburger Kickers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/784.png" }, "awayTeam": { - "team_id": 180, - "team_name": "FC Heidenheim", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/180.png" + "team_id": 166, + "team_name": "Hannover 96", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/166.png" }, "goalsHomeTeam": null, "goalsAwayTeam": null, @@ -2633,13 +2709,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-11-22T01:00:00+01:00", - "event_timestamp": 1606003200, + "event_date": "2020-11-23T20:30:00+01:00", + "event_timestamp": 1606159800, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 8", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Bremer Brücke", "referee": null, @@ -2662,82 +2738,6 @@ "penalty": null } }, - { - "fixture_id": 585133, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-11-22T01:00:00+01:00", - "event_timestamp": 1606003200, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 8", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Eintracht-Stadion", - "referee": null, - "homeTeam": { - "team_id": 744, - "team_name": "Eintracht Braunschweig", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/744.png" - }, - "awayTeam": { - "team_id": 785, - "team_name": "Karlsruher SC", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/785.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, - { - "fixture_id": 585134, - "league_id": 2743, - "league": { - "name": "Bundesliga 2", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/79.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-11-22T01:00:00+01:00", - "event_timestamp": 1606003200, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 8", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "flyeralarm-Arena", - "referee": null, - "homeTeam": { - "team_id": 784, - "team_name": "FC Wurzburger Kickers", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/784.png" - }, - "awayTeam": { - "team_id": 166, - "team_name": "Hannover 96", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/166.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, { "fixture_id": 585135, "league_id": 2743, diff --git a/src/main/resources/2021/API-Football/matches_league_2755.json b/src/main/resources/2021/API-Football/matches_league_2755.json index f01e01c..fe5ee3d 100644 --- a/src/main/resources/2021/API-Football/matches_league_2755.json +++ b/src/main/resources/2021/API-Football/matches_league_2755.json @@ -963,14 +963,14 @@ }, "event_date": "2020-10-04T15:30:00+02:00", "event_timestamp": 1601818200, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601818200, + "secondHalfStart": 1601821800, "round": "Regular Season - 3", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "VOLKSWAGEN ARENA", - "referee": null, + "referee": "Felix Zwayer, Germany", "homeTeam": { "team_id": 161, "team_name": "VfL Wolfsburg", @@ -981,11 +981,11 @@ "team_name": "FC Augsburg", "logo": "https:\/\/media.api-sports.io\/football\/teams\/170.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 0, + "goalsAwayTeam": 0, "score": { - "halftime": null, - "fulltime": null, + "halftime": "0-0", + "fulltime": "0-0", "extratime": null, "penalty": null } @@ -1001,14 +1001,14 @@ }, "event_date": "2020-10-04T18:00:00+02:00", "event_timestamp": 1601827200, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601827200, + "secondHalfStart": 1601830800, "round": "Regular Season - 3", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "Allianz Arena", - "referee": null, + "referee": "Benjamin Cortus, Germany", "homeTeam": { "team_id": 157, "team_name": "Bayern Munich", @@ -1019,11 +1019,11 @@ "team_name": "Hertha Berlin", "logo": "https:\/\/media.api-sports.io\/football\/teams\/159.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 4, + "goalsAwayTeam": 3, "score": { - "halftime": null, - "fulltime": null, + "halftime": "1-0", + "fulltime": "4-3", "extratime": null, "penalty": null } diff --git a/src/main/resources/2021/API-Football/matches_league_2790.json b/src/main/resources/2021/API-Football/matches_league_2790.json new file mode 100644 index 0000000..c0996d2 --- /dev/null +++ b/src/main/resources/2021/API-Football/matches_league_2790.json @@ -0,0 +1,14447 @@ +{ + "api": { + "results": 380, + "fixtures": [ + { + "fixture_id": 592143, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-12T13:30:00+02:00", + "event_timestamp": 1599910200, + "firstHalfStart": 1599910200, + "secondHalfStart": 1599913800, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Craven Cottage", + "referee": "C. Kavanagh", + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 3, + "score": { + "halftime": "0-1", + "fulltime": "0-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592141, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-12T16:00:00+02:00", + "event_timestamp": 1599919200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 1", + "status": "Match Postponed", + "statusShort": "PST", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592142, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-12T16:00:00+02:00", + "event_timestamp": 1599919200, + "firstHalfStart": 1599919200, + "secondHalfStart": 1599922800, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Selhurst Park", + "referee": "J. Moss", + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 0, + "score": { + "halftime": "1-0", + "fulltime": "1-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592145, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-12T16:00:00+02:00", + "event_timestamp": 1599919200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 1", + "status": "Match Postponed", + "statusShort": "PST", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592144, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-12T18:30:00+02:00", + "event_timestamp": 1599928200, + "firstHalfStart": 1599928200, + "secondHalfStart": 1599931800, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Anfield", + "referee": "M. Oliver", + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": 4, + "goalsAwayTeam": 3, + "score": { + "halftime": "3-2", + "fulltime": "4-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592148, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-12T21:00:00+02:00", + "event_timestamp": 1599937200, + "firstHalfStart": 1599937200, + "secondHalfStart": 1599940800, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "London Stadium", + "referee": "S. Attwell", + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 2, + "score": { + "halftime": "0-0", + "fulltime": "0-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592147, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-13T15:00:00+02:00", + "event_timestamp": 1600002000, + "firstHalfStart": 1600002000, + "secondHalfStart": 1600005600, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "The Hawthorns", + "referee": "A. Taylor", + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 3, + "score": { + "halftime": "0-0", + "fulltime": "0-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592146, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-13T17:30:00+02:00", + "event_timestamp": 1600011000, + "firstHalfStart": 1600011000, + "secondHalfStart": 1600014600, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Tottenham Hotspur Stadium", + "referee": "M. Atkinson", + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-0", + "fulltime": "0-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592150, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-14T19:00:00+02:00", + "event_timestamp": 1600102800, + "firstHalfStart": 1600102800, + "secondHalfStart": 1600106400, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Bramall Lane", + "referee": "M. Dean", + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 2, + "score": { + "halftime": "0-2", + "fulltime": "0-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592149, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-14T21:15:00+02:00", + "event_timestamp": 1600110900, + "firstHalfStart": 1600110900, + "secondHalfStart": 1600114500, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "The American Express Community Stadium", + "referee": "C. Pawson", + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 3, + "score": { + "halftime": "0-1", + "fulltime": "1-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592154, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-19T13:30:00+02:00", + "event_timestamp": 1600515000, + "firstHalfStart": 1600515000, + "secondHalfStart": 1600518600, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Goodison Park", + "referee": "M. Dean", + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": 5, + "goalsAwayTeam": 2, + "score": { + "halftime": "2-1", + "fulltime": "5-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592155, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-19T16:00:00+02:00", + "event_timestamp": 1600524000, + "firstHalfStart": 1600524000, + "secondHalfStart": 1600527600, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Elland Road", + "referee": "A. Taylor", + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": 4, + "goalsAwayTeam": 3, + "score": { + "halftime": "2-1", + "fulltime": "4-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592157, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-19T18:30:00+02:00", + "event_timestamp": 1600533000, + "firstHalfStart": 1600533000, + "secondHalfStart": 1600536600, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Old Trafford", + "referee": "M. Atkinson", + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 3, + "score": { + "halftime": "0-1", + "fulltime": "1-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592151, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-19T21:00:00+02:00", + "event_timestamp": 1600542000, + "firstHalfStart": 1600542000, + "secondHalfStart": 1600545600, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Emirates Stadium", + "referee": "M. Oliver", + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-1", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592159, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-20T13:00:00+02:00", + "event_timestamp": 1600599600, + "firstHalfStart": 1600599600, + "secondHalfStart": 1600603200, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "St. Mary's Stadium", + "referee": "D. Coote", + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 5, + "score": { + "halftime": "1-1", + "fulltime": "2-5", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592158, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-20T15:00:00+02:00", + "event_timestamp": 1600606800, + "firstHalfStart": 1600606800, + "secondHalfStart": 1600610400, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "St. James' Park", + "referee": "K. Friend", + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 3, + "score": { + "halftime": "0-2", + "fulltime": "0-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592153, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-20T17:30:00+02:00", + "event_timestamp": 1600615800, + "firstHalfStart": 1600615800, + "secondHalfStart": 1600619400, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stamford Bridge", + "referee": "P. Tierney", + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 2, + "score": { + "halftime": "0-0", + "fulltime": "0-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592156, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-20T20:00:00+02:00", + "event_timestamp": 1600624800, + "firstHalfStart": 1600624800, + "secondHalfStart": 1600628400, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "King Power Stadium", + "referee": "L. Mason", + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": 4, + "goalsAwayTeam": 2, + "score": { + "halftime": "1-1", + "fulltime": "4-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592152, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-21T19:00:00+02:00", + "event_timestamp": 1600707600, + "firstHalfStart": 1600707600, + "secondHalfStart": 1600711200, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Villa Park", + "referee": "G. Scott", + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "1-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592160, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-21T21:15:00+02:00", + "event_timestamp": 1600715700, + "firstHalfStart": 1600715700, + "secondHalfStart": 1600719300, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Molineux Stadium", + "referee": "A. Marriner", + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 3, + "score": { + "halftime": "0-2", + "fulltime": "1-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592161, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-26T13:30:00+02:00", + "event_timestamp": 1601119800, + "firstHalfStart": 1601119800, + "secondHalfStart": 1601123400, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "The American Express Community Stadium", + "referee": "C. Kavanagh", + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 3, + "score": { + "halftime": "1-1", + "fulltime": "2-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592163, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-26T16:00:00+02:00", + "event_timestamp": 1601128800, + "firstHalfStart": 1601128800, + "secondHalfStart": 1601132400, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Selhurst Park", + "referee": "K. Friend", + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 2, + "score": { + "halftime": "1-2", + "fulltime": "1-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592169, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-26T18:30:00+02:00", + "event_timestamp": 1601137800, + "firstHalfStart": 1601137800, + "secondHalfStart": 1601141400, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "The Hawthorns", + "referee": "J. Moss", + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": 3, + "goalsAwayTeam": 3, + "score": { + "halftime": "3-0", + "fulltime": "3-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592162, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-26T21:00:00+02:00", + "event_timestamp": 1601146800, + "firstHalfStart": 1601146800, + "secondHalfStart": 1601150400, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Turf Moor", + "referee": "A. Marriner", + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-1", + "fulltime": "0-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592167, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-27T13:00:00+02:00", + "event_timestamp": 1601204400, + "firstHalfStart": 1601204400, + "secondHalfStart": 1601208000, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Bramall Lane", + "referee": "P. Tierney", + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-0", + "fulltime": "0-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592168, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-27T15:00:00+02:00", + "event_timestamp": 1601211600, + "firstHalfStart": 1601211600, + "secondHalfStart": 1601215200, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Tottenham Hotspur Stadium", + "referee": "P. Bankes", + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-0", + "fulltime": "1-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592166, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-27T17:30:00+02:00", + "event_timestamp": 1601220600, + "firstHalfStart": 1601220600, + "secondHalfStart": 1601224200, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Etihad Stadium", + "referee": "M. Oliver", + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 5, + "score": { + "halftime": "1-1", + "fulltime": "2-5", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592170, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-27T20:00:00+02:00", + "event_timestamp": 1601229600, + "firstHalfStart": 1601229600, + "secondHalfStart": 1601233200, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "London Stadium", + "referee": "M. Atkinson", + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": 4, + "goalsAwayTeam": 0, + "score": { + "halftime": "1-0", + "fulltime": "4-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592164, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-28T18:45:00+02:00", + "event_timestamp": 1601311500, + "firstHalfStart": 1601311500, + "secondHalfStart": 1601315100, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Craven Cottage", + "referee": "S. Attwell", + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 3, + "score": { + "halftime": "0-2", + "fulltime": "0-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592165, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-09-28T21:00:00+02:00", + "event_timestamp": 1601319600, + "firstHalfStart": 1601319600, + "secondHalfStart": 1601323200, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Anfield", + "referee": "C. Pawson", + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": 3, + "goalsAwayTeam": 1, + "score": { + "halftime": "2-1", + "fulltime": "3-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592173, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-03T13:30:00+02:00", + "event_timestamp": 1601724600, + "firstHalfStart": 1601724600, + "secondHalfStart": 1601728200, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stamford Bridge", + "referee": "M. Oliver", + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": 4, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "4-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592174, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-03T16:00:00+02:00", + "event_timestamp": 1601733600, + "firstHalfStart": 1601733600, + "secondHalfStart": 1601737200, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Goodison Park", + "referee": "S. Hooper", + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": 4, + "goalsAwayTeam": 2, + "score": { + "halftime": "2-1", + "fulltime": "4-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592175, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-03T18:30:00+02:00", + "event_timestamp": 1601742600, + "firstHalfStart": 1601742600, + "secondHalfStart": 1601746200, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Elland Road", + "referee": "Mike Dean, England", + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-1", + "fulltime": "1-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592178, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-03T21:00:00+02:00", + "event_timestamp": 1601751600, + "firstHalfStart": 1601751600, + "secondHalfStart": 1601755200, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "St. James' Park", + "referee": "D. Coote", + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": 3, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-0", + "fulltime": "3-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592176, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-04T13:00:00+02:00", + "event_timestamp": 1601809200, + "firstHalfStart": 1601809200, + "secondHalfStart": 1601812800, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "King Power Stadium", + "referee": "Andy Madley, England", + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 3, + "score": { + "halftime": "0-2", + "fulltime": "0-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592179, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-04T13:00:00+02:00", + "event_timestamp": 1601809200, + "firstHalfStart": 1601809200, + "secondHalfStart": 1601812800, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "St. Mary's Stadium", + "referee": "Chris Kavanagh, England", + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 0, + "score": { + "halftime": "1-0", + "fulltime": "2-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592171, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-04T15:00:00+02:00", + "event_timestamp": 1601816400, + "firstHalfStart": 1601816400, + "secondHalfStart": 1601820000, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Emirates Stadium", + "referee": "Lee Mason, England", + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-0", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592180, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-04T15:00:00+02:00", + "event_timestamp": 1601816400, + "firstHalfStart": 1601816400, + "secondHalfStart": 1601820000, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Molineux Stadium", + "referee": "England Darren, England", + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "1-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592177, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-04T17:30:00+02:00", + "event_timestamp": 1601825400, + "firstHalfStart": 1601825400, + "secondHalfStart": 1601829000, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Old Trafford", + "referee": "Anthony Taylor, England", + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 6, + "score": { + "halftime": "1-4", + "fulltime": "1-6", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592172, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-04T20:15:00+02:00", + "event_timestamp": 1601835300, + "firstHalfStart": 1601835300, + "secondHalfStart": 1601838900, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Villa Park", + "referee": "Martin Atkinson, England", + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": 7, + "goalsAwayTeam": 2, + "score": { + "halftime": "4-1", + "fulltime": "7-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592183, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-17T13:30:00+02:00", + "event_timestamp": 1602934200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592181, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-17T16:00:00+02:00", + "event_timestamp": 1602943200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592185, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-17T16:00:00+02:00", + "event_timestamp": 1602943200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592187, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-17T16:00:00+02:00", + "event_timestamp": 1602943200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592188, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-17T16:00:00+02:00", + "event_timestamp": 1602943200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592190, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-17T16:00:00+02:00", + "event_timestamp": 1602943200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592186, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-17T18:30:00+02:00", + "event_timestamp": 1602952200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592182, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-18T15:00:00+02:00", + "event_timestamp": 1603026000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592189, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-18T17:30:00+02:00", + "event_timestamp": 1603035000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592184, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-19T21:00:00+02:00", + "event_timestamp": 1603134000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 5", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592191, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-24T02:00:00+02:00", + "event_timestamp": 1603497600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592192, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-24T16:00:00+02:00", + "event_timestamp": 1603548000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592193, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-24T16:00:00+02:00", + "event_timestamp": 1603548000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592194, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-24T16:00:00+02:00", + "event_timestamp": 1603548000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592195, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-24T16:00:00+02:00", + "event_timestamp": 1603548000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592196, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-24T16:00:00+02:00", + "event_timestamp": 1603548000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592197, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-24T16:00:00+02:00", + "event_timestamp": 1603548000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592198, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-24T16:00:00+02:00", + "event_timestamp": 1603548000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592199, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-24T16:00:00+02:00", + "event_timestamp": 1603548000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592200, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-24T16:00:00+02:00", + "event_timestamp": 1603548000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592204, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-31T01:00:00+01:00", + "event_timestamp": 1604102400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592206, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-31T01:00:00+01:00", + "event_timestamp": 1604102400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592201, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-31T16:00:00+01:00", + "event_timestamp": 1604156400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592202, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-31T16:00:00+01:00", + "event_timestamp": 1604156400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592203, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-31T16:00:00+01:00", + "event_timestamp": 1604156400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592205, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-31T16:00:00+01:00", + "event_timestamp": 1604156400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592207, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-31T16:00:00+01:00", + "event_timestamp": 1604156400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592208, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-31T16:00:00+01:00", + "event_timestamp": 1604156400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592209, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-31T16:00:00+01:00", + "event_timestamp": 1604156400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592210, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-10-31T16:00:00+01:00", + "event_timestamp": 1604156400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592211, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-07T01:00:00+01:00", + "event_timestamp": 1604707200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592216, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-07T01:00:00+01:00", + "event_timestamp": 1604707200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592212, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-07T16:00:00+01:00", + "event_timestamp": 1604761200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592213, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-07T16:00:00+01:00", + "event_timestamp": 1604761200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592214, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-07T16:00:00+01:00", + "event_timestamp": 1604761200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592215, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-07T16:00:00+01:00", + "event_timestamp": 1604761200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592217, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-07T16:00:00+01:00", + "event_timestamp": 1604761200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592218, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-07T16:00:00+01:00", + "event_timestamp": 1604761200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592219, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-07T16:00:00+01:00", + "event_timestamp": 1604761200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592220, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-07T16:00:00+01:00", + "event_timestamp": 1604761200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592221, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-21T16:00:00+01:00", + "event_timestamp": 1605970800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592222, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-21T16:00:00+01:00", + "event_timestamp": 1605970800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592223, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-21T16:00:00+01:00", + "event_timestamp": 1605970800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592224, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-21T16:00:00+01:00", + "event_timestamp": 1605970800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592225, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-21T16:00:00+01:00", + "event_timestamp": 1605970800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592226, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-21T16:00:00+01:00", + "event_timestamp": 1605970800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592227, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-21T16:00:00+01:00", + "event_timestamp": 1605970800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592228, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-21T16:00:00+01:00", + "event_timestamp": 1605970800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592229, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-21T16:00:00+01:00", + "event_timestamp": 1605970800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592230, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-21T16:00:00+01:00", + "event_timestamp": 1605970800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592231, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-28T01:00:00+01:00", + "event_timestamp": 1606521600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592236, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-28T01:00:00+01:00", + "event_timestamp": 1606521600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592232, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-28T16:00:00+01:00", + "event_timestamp": 1606575600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592233, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-28T16:00:00+01:00", + "event_timestamp": 1606575600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592234, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-28T16:00:00+01:00", + "event_timestamp": 1606575600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592235, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-28T16:00:00+01:00", + "event_timestamp": 1606575600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592237, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-28T16:00:00+01:00", + "event_timestamp": 1606575600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592238, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-28T16:00:00+01:00", + "event_timestamp": 1606575600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592239, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-28T16:00:00+01:00", + "event_timestamp": 1606575600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592240, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-11-28T16:00:00+01:00", + "event_timestamp": 1606575600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592247, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-05T01:00:00+01:00", + "event_timestamp": 1607126400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592248, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-05T01:00:00+01:00", + "event_timestamp": 1607126400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592241, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-05T16:00:00+01:00", + "event_timestamp": 1607180400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592242, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-05T16:00:00+01:00", + "event_timestamp": 1607180400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592243, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-05T16:00:00+01:00", + "event_timestamp": 1607180400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592244, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-05T16:00:00+01:00", + "event_timestamp": 1607180400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592245, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-05T16:00:00+01:00", + "event_timestamp": 1607180400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592246, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-05T16:00:00+01:00", + "event_timestamp": 1607180400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592249, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-05T16:00:00+01:00", + "event_timestamp": 1607180400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592250, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-05T16:00:00+01:00", + "event_timestamp": 1607180400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592253, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-12T16:00:00+01:00", + "event_timestamp": 1607785200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592254, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-12T16:00:00+01:00", + "event_timestamp": 1607785200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592255, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-12T16:00:00+01:00", + "event_timestamp": 1607785200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592257, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-12T16:00:00+01:00", + "event_timestamp": 1607785200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592258, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-12T16:00:00+01:00", + "event_timestamp": 1607785200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592259, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-12T16:00:00+01:00", + "event_timestamp": 1607785200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592260, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-12T16:00:00+01:00", + "event_timestamp": 1607785200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592252, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-12T16:00:00+01:00", + "event_timestamp": 1607785200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592256, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592251, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592261, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-15T01:00:00+01:00", + "event_timestamp": 1607990400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592262, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-15T01:00:00+01:00", + "event_timestamp": 1607990400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592263, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-15T01:00:00+01:00", + "event_timestamp": 1607990400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592265, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-15T01:00:00+01:00", + "event_timestamp": 1607990400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592264, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-15T20:45:00+01:00", + "event_timestamp": 1608061500, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592266, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-15T20:45:00+01:00", + "event_timestamp": 1608061500, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592267, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-15T20:45:00+01:00", + "event_timestamp": 1608061500, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592268, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-15T20:45:00+01:00", + "event_timestamp": 1608061500, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592269, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-16T21:00:00+01:00", + "event_timestamp": 1608148800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592270, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-16T21:00:00+01:00", + "event_timestamp": 1608148800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592271, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-19T16:00:00+01:00", + "event_timestamp": 1608390000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592272, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-19T16:00:00+01:00", + "event_timestamp": 1608390000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592273, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-19T16:00:00+01:00", + "event_timestamp": 1608390000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592274, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-19T16:00:00+01:00", + "event_timestamp": 1608390000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592275, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-19T16:00:00+01:00", + "event_timestamp": 1608390000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592276, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-19T16:00:00+01:00", + "event_timestamp": 1608390000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592277, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-19T16:00:00+01:00", + "event_timestamp": 1608390000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592278, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-19T16:00:00+01:00", + "event_timestamp": 1608390000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592279, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-19T16:00:00+01:00", + "event_timestamp": 1608390000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592280, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-19T16:00:00+01:00", + "event_timestamp": 1608390000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592281, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-26T16:00:00+01:00", + "event_timestamp": 1608994800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592282, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-26T16:00:00+01:00", + "event_timestamp": 1608994800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592283, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-26T16:00:00+01:00", + "event_timestamp": 1608994800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592284, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-26T16:00:00+01:00", + "event_timestamp": 1608994800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592285, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-26T16:00:00+01:00", + "event_timestamp": 1608994800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592286, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-26T16:00:00+01:00", + "event_timestamp": 1608994800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592287, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-26T16:00:00+01:00", + "event_timestamp": 1608994800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592288, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-26T16:00:00+01:00", + "event_timestamp": 1608994800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592289, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-26T16:00:00+01:00", + "event_timestamp": 1608994800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592290, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-26T16:00:00+01:00", + "event_timestamp": 1608994800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592291, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-28T16:00:00+01:00", + "event_timestamp": 1609167600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592292, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-28T16:00:00+01:00", + "event_timestamp": 1609167600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592293, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-28T16:00:00+01:00", + "event_timestamp": 1609167600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592294, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-28T16:00:00+01:00", + "event_timestamp": 1609167600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592295, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-28T16:00:00+01:00", + "event_timestamp": 1609167600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592296, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-28T16:00:00+01:00", + "event_timestamp": 1609167600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592297, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-28T16:00:00+01:00", + "event_timestamp": 1609167600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592298, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-28T16:00:00+01:00", + "event_timestamp": 1609167600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592299, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-28T16:00:00+01:00", + "event_timestamp": 1609167600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592300, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2020-12-28T16:00:00+01:00", + "event_timestamp": 1609167600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592301, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-02T16:00:00+01:00", + "event_timestamp": 1609599600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592302, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-02T16:00:00+01:00", + "event_timestamp": 1609599600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592303, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-02T16:00:00+01:00", + "event_timestamp": 1609599600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592304, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-02T16:00:00+01:00", + "event_timestamp": 1609599600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592305, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-02T16:00:00+01:00", + "event_timestamp": 1609599600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592306, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-02T16:00:00+01:00", + "event_timestamp": 1609599600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592307, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-02T16:00:00+01:00", + "event_timestamp": 1609599600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592308, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-02T16:00:00+01:00", + "event_timestamp": 1609599600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592309, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-02T16:00:00+01:00", + "event_timestamp": 1609599600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592310, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-02T16:00:00+01:00", + "event_timestamp": 1609599600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592311, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-12T20:45:00+01:00", + "event_timestamp": 1610480700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592312, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-12T20:45:00+01:00", + "event_timestamp": 1610480700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592313, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-12T20:45:00+01:00", + "event_timestamp": 1610480700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592314, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-12T20:45:00+01:00", + "event_timestamp": 1610480700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592315, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-12T20:45:00+01:00", + "event_timestamp": 1610480700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592316, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-12T20:45:00+01:00", + "event_timestamp": 1610480700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592317, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-12T20:45:00+01:00", + "event_timestamp": 1610480700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592318, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-12T20:45:00+01:00", + "event_timestamp": 1610480700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592319, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-13T21:00:00+01:00", + "event_timestamp": 1610568000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592320, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-13T21:00:00+01:00", + "event_timestamp": 1610568000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592321, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-16T16:00:00+01:00", + "event_timestamp": 1610809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592322, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-16T16:00:00+01:00", + "event_timestamp": 1610809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592323, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-16T16:00:00+01:00", + "event_timestamp": 1610809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592324, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-16T16:00:00+01:00", + "event_timestamp": 1610809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592325, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-16T16:00:00+01:00", + "event_timestamp": 1610809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592326, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-16T16:00:00+01:00", + "event_timestamp": 1610809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592327, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-16T16:00:00+01:00", + "event_timestamp": 1610809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592328, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-16T16:00:00+01:00", + "event_timestamp": 1610809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592329, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-16T16:00:00+01:00", + "event_timestamp": 1610809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592330, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-16T16:00:00+01:00", + "event_timestamp": 1610809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592331, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-26T20:45:00+01:00", + "event_timestamp": 1611690300, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592332, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-26T20:45:00+01:00", + "event_timestamp": 1611690300, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592333, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-26T20:45:00+01:00", + "event_timestamp": 1611690300, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592334, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-26T21:00:00+01:00", + "event_timestamp": 1611691200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592335, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-26T21:00:00+01:00", + "event_timestamp": 1611691200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592336, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-27T20:45:00+01:00", + "event_timestamp": 1611776700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592337, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-27T20:45:00+01:00", + "event_timestamp": 1611776700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592338, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-27T20:45:00+01:00", + "event_timestamp": 1611776700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592339, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-27T20:45:00+01:00", + "event_timestamp": 1611776700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592340, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-27T21:00:00+01:00", + "event_timestamp": 1611777600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592341, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-30T16:00:00+01:00", + "event_timestamp": 1612018800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592342, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-30T16:00:00+01:00", + "event_timestamp": 1612018800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592343, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-30T16:00:00+01:00", + "event_timestamp": 1612018800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592344, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-30T16:00:00+01:00", + "event_timestamp": 1612018800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592345, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-30T16:00:00+01:00", + "event_timestamp": 1612018800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592346, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-30T16:00:00+01:00", + "event_timestamp": 1612018800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592347, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-30T16:00:00+01:00", + "event_timestamp": 1612018800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592348, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-30T16:00:00+01:00", + "event_timestamp": 1612018800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592349, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-30T16:00:00+01:00", + "event_timestamp": 1612018800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592350, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-01-30T16:00:00+01:00", + "event_timestamp": 1612018800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592351, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-02T20:45:00+01:00", + "event_timestamp": 1612295100, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592352, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-02T20:45:00+01:00", + "event_timestamp": 1612295100, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592353, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-02T20:45:00+01:00", + "event_timestamp": 1612295100, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592354, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-02T20:45:00+01:00", + "event_timestamp": 1612295100, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592355, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-02T20:45:00+01:00", + "event_timestamp": 1612295100, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592356, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-02T20:45:00+01:00", + "event_timestamp": 1612295100, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592357, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-02T21:00:00+01:00", + "event_timestamp": 1612296000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592358, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-03T20:45:00+01:00", + "event_timestamp": 1612381500, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592359, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-03T20:45:00+01:00", + "event_timestamp": 1612381500, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592360, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-03T21:00:00+01:00", + "event_timestamp": 1612382400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592361, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-06T16:00:00+01:00", + "event_timestamp": 1612623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592362, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-06T16:00:00+01:00", + "event_timestamp": 1612623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592363, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-06T16:00:00+01:00", + "event_timestamp": 1612623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592364, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-06T16:00:00+01:00", + "event_timestamp": 1612623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592365, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-06T16:00:00+01:00", + "event_timestamp": 1612623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592366, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-06T16:00:00+01:00", + "event_timestamp": 1612623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592367, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-06T16:00:00+01:00", + "event_timestamp": 1612623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592368, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-06T16:00:00+01:00", + "event_timestamp": 1612623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592369, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-06T16:00:00+01:00", + "event_timestamp": 1612623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592370, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-06T16:00:00+01:00", + "event_timestamp": 1612623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592726, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-13T16:00:00+01:00", + "event_timestamp": 1613228400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592727, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-13T16:00:00+01:00", + "event_timestamp": 1613228400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592728, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-13T16:00:00+01:00", + "event_timestamp": 1613228400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592729, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-13T16:00:00+01:00", + "event_timestamp": 1613228400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592730, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-13T16:00:00+01:00", + "event_timestamp": 1613228400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592731, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-13T16:00:00+01:00", + "event_timestamp": 1613228400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592732, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-13T16:00:00+01:00", + "event_timestamp": 1613228400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592733, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-13T16:00:00+01:00", + "event_timestamp": 1613228400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592734, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-13T16:00:00+01:00", + "event_timestamp": 1613228400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592735, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-13T16:00:00+01:00", + "event_timestamp": 1613228400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592736, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-20T16:00:00+01:00", + "event_timestamp": 1613833200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592737, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-20T16:00:00+01:00", + "event_timestamp": 1613833200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592738, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-20T16:00:00+01:00", + "event_timestamp": 1613833200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592739, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-20T16:00:00+01:00", + "event_timestamp": 1613833200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592740, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-20T16:00:00+01:00", + "event_timestamp": 1613833200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592741, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-20T16:00:00+01:00", + "event_timestamp": 1613833200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592742, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-20T16:00:00+01:00", + "event_timestamp": 1613833200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592743, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-20T16:00:00+01:00", + "event_timestamp": 1613833200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592744, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-20T16:00:00+01:00", + "event_timestamp": 1613833200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592745, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-20T16:00:00+01:00", + "event_timestamp": 1613833200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592746, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-27T16:00:00+01:00", + "event_timestamp": 1614438000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592747, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-27T16:00:00+01:00", + "event_timestamp": 1614438000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592748, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-27T16:00:00+01:00", + "event_timestamp": 1614438000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592749, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-27T16:00:00+01:00", + "event_timestamp": 1614438000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592750, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-27T16:00:00+01:00", + "event_timestamp": 1614438000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592751, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-27T16:00:00+01:00", + "event_timestamp": 1614438000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592752, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-27T16:00:00+01:00", + "event_timestamp": 1614438000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592753, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-27T16:00:00+01:00", + "event_timestamp": 1614438000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592754, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-27T16:00:00+01:00", + "event_timestamp": 1614438000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592755, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-02-27T16:00:00+01:00", + "event_timestamp": 1614438000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592765, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-06T16:00:00+01:00", + "event_timestamp": 1615042800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592756, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-06T16:00:00+01:00", + "event_timestamp": 1615042800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592757, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-06T16:00:00+01:00", + "event_timestamp": 1615042800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592758, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-06T16:00:00+01:00", + "event_timestamp": 1615042800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592759, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-06T16:00:00+01:00", + "event_timestamp": 1615042800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592760, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-06T16:00:00+01:00", + "event_timestamp": 1615042800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592761, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-06T16:00:00+01:00", + "event_timestamp": 1615042800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592762, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-06T16:00:00+01:00", + "event_timestamp": 1615042800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592763, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-06T16:00:00+01:00", + "event_timestamp": 1615042800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592764, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-06T16:00:00+01:00", + "event_timestamp": 1615042800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592766, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-13T16:00:00+01:00", + "event_timestamp": 1615647600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592767, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-13T16:00:00+01:00", + "event_timestamp": 1615647600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592768, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-13T16:00:00+01:00", + "event_timestamp": 1615647600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592769, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-13T16:00:00+01:00", + "event_timestamp": 1615647600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592770, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-13T16:00:00+01:00", + "event_timestamp": 1615647600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592771, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-13T16:00:00+01:00", + "event_timestamp": 1615647600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592772, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-13T16:00:00+01:00", + "event_timestamp": 1615647600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592773, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-13T16:00:00+01:00", + "event_timestamp": 1615647600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592774, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-13T16:00:00+01:00", + "event_timestamp": 1615647600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592775, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-13T16:00:00+01:00", + "event_timestamp": 1615647600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592776, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-20T16:00:00+01:00", + "event_timestamp": 1616252400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592777, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-20T16:00:00+01:00", + "event_timestamp": 1616252400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592778, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-20T16:00:00+01:00", + "event_timestamp": 1616252400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592779, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-20T16:00:00+01:00", + "event_timestamp": 1616252400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592780, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-20T16:00:00+01:00", + "event_timestamp": 1616252400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592781, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-20T16:00:00+01:00", + "event_timestamp": 1616252400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592782, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-20T16:00:00+01:00", + "event_timestamp": 1616252400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592783, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-20T16:00:00+01:00", + "event_timestamp": 1616252400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592784, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-20T16:00:00+01:00", + "event_timestamp": 1616252400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592785, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-03-20T16:00:00+01:00", + "event_timestamp": 1616252400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592786, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-03T16:00:00+02:00", + "event_timestamp": 1617458400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592787, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-03T16:00:00+02:00", + "event_timestamp": 1617458400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592788, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-03T16:00:00+02:00", + "event_timestamp": 1617458400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592789, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-03T16:00:00+02:00", + "event_timestamp": 1617458400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592790, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-03T16:00:00+02:00", + "event_timestamp": 1617458400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592791, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-03T16:00:00+02:00", + "event_timestamp": 1617458400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592792, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-03T16:00:00+02:00", + "event_timestamp": 1617458400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592793, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-03T16:00:00+02:00", + "event_timestamp": 1617458400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592794, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-03T16:00:00+02:00", + "event_timestamp": 1617458400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592795, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-03T16:00:00+02:00", + "event_timestamp": 1617458400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592796, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-10T16:00:00+02:00", + "event_timestamp": 1618063200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592797, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-10T16:00:00+02:00", + "event_timestamp": 1618063200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592798, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-10T16:00:00+02:00", + "event_timestamp": 1618063200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592799, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-10T16:00:00+02:00", + "event_timestamp": 1618063200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592800, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-10T16:00:00+02:00", + "event_timestamp": 1618063200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592801, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-10T16:00:00+02:00", + "event_timestamp": 1618063200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592802, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-10T16:00:00+02:00", + "event_timestamp": 1618063200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592803, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-10T16:00:00+02:00", + "event_timestamp": 1618063200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592804, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-10T16:00:00+02:00", + "event_timestamp": 1618063200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592805, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-10T16:00:00+02:00", + "event_timestamp": 1618063200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592806, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-17T16:00:00+02:00", + "event_timestamp": 1618668000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592807, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-17T16:00:00+02:00", + "event_timestamp": 1618668000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592808, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-17T16:00:00+02:00", + "event_timestamp": 1618668000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592809, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-17T16:00:00+02:00", + "event_timestamp": 1618668000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592810, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-17T16:00:00+02:00", + "event_timestamp": 1618668000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592811, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-17T16:00:00+02:00", + "event_timestamp": 1618668000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592812, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-17T16:00:00+02:00", + "event_timestamp": 1618668000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592813, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-17T16:00:00+02:00", + "event_timestamp": 1618668000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592814, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-17T16:00:00+02:00", + "event_timestamp": 1618668000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592815, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-17T16:00:00+02:00", + "event_timestamp": 1618668000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592816, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-24T16:00:00+02:00", + "event_timestamp": 1619272800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592817, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-24T16:00:00+02:00", + "event_timestamp": 1619272800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592818, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-24T16:00:00+02:00", + "event_timestamp": 1619272800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592819, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-24T16:00:00+02:00", + "event_timestamp": 1619272800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592820, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-24T16:00:00+02:00", + "event_timestamp": 1619272800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592821, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-24T16:00:00+02:00", + "event_timestamp": 1619272800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592822, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-24T16:00:00+02:00", + "event_timestamp": 1619272800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592823, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-24T16:00:00+02:00", + "event_timestamp": 1619272800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592824, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-24T16:00:00+02:00", + "event_timestamp": 1619272800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592825, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-04-24T16:00:00+02:00", + "event_timestamp": 1619272800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592826, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-01T16:00:00+02:00", + "event_timestamp": 1619877600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592827, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-01T16:00:00+02:00", + "event_timestamp": 1619877600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592828, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-01T16:00:00+02:00", + "event_timestamp": 1619877600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592829, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-01T16:00:00+02:00", + "event_timestamp": 1619877600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592830, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-01T16:00:00+02:00", + "event_timestamp": 1619877600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592831, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-01T16:00:00+02:00", + "event_timestamp": 1619877600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592832, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-01T16:00:00+02:00", + "event_timestamp": 1619877600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592833, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-01T16:00:00+02:00", + "event_timestamp": 1619877600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592834, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-01T16:00:00+02:00", + "event_timestamp": 1619877600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592835, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-01T16:00:00+02:00", + "event_timestamp": 1619877600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592836, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-08T16:00:00+02:00", + "event_timestamp": 1620482400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592837, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-08T16:00:00+02:00", + "event_timestamp": 1620482400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592838, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-08T16:00:00+02:00", + "event_timestamp": 1620482400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592839, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-08T16:00:00+02:00", + "event_timestamp": 1620482400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592840, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-08T16:00:00+02:00", + "event_timestamp": 1620482400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592841, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-08T16:00:00+02:00", + "event_timestamp": 1620482400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592842, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-08T16:00:00+02:00", + "event_timestamp": 1620482400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592843, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-08T16:00:00+02:00", + "event_timestamp": 1620482400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592844, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-08T16:00:00+02:00", + "event_timestamp": 1620482400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592845, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-08T16:00:00+02:00", + "event_timestamp": 1620482400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592846, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-11T20:45:00+02:00", + "event_timestamp": 1620758700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592847, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-11T20:45:00+02:00", + "event_timestamp": 1620758700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592848, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-11T20:45:00+02:00", + "event_timestamp": 1620758700, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592849, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-11T21:00:00+02:00", + "event_timestamp": 1620759600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592850, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-11T21:00:00+02:00", + "event_timestamp": 1620759600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592851, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-12T20:45:00+02:00", + "event_timestamp": 1620845100, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592852, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-12T20:45:00+02:00", + "event_timestamp": 1620845100, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592853, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-12T20:45:00+02:00", + "event_timestamp": 1620845100, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592854, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-12T20:45:00+02:00", + "event_timestamp": 1620845100, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592855, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-12T21:00:00+02:00", + "event_timestamp": 1620846000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592856, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-15T16:00:00+02:00", + "event_timestamp": 1621087200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The American Express Community Stadium", + "referee": null, + "homeTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "awayTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592857, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-15T16:00:00+02:00", + "event_timestamp": 1621087200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Turf Moor", + "referee": null, + "homeTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "awayTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592858, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-15T16:00:00+02:00", + "event_timestamp": 1621087200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stamford Bridge", + "referee": null, + "homeTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "awayTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592859, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-15T16:00:00+02:00", + "event_timestamp": 1621087200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Selhurst Park", + "referee": null, + "homeTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "awayTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592860, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-15T16:00:00+02:00", + "event_timestamp": 1621087200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Goodison Park", + "referee": null, + "homeTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "awayTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592861, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-15T16:00:00+02:00", + "event_timestamp": 1621087200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Old Trafford", + "referee": null, + "homeTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "awayTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592862, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-15T16:00:00+02:00", + "event_timestamp": 1621087200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. James' Park", + "referee": null, + "homeTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "awayTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592863, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-15T16:00:00+02:00", + "event_timestamp": 1621087200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "St. Mary's Stadium", + "referee": null, + "homeTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "awayTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592864, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-15T16:00:00+02:00", + "event_timestamp": 1621087200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Tottenham Hotspur Stadium", + "referee": null, + "homeTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "awayTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592865, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-15T16:00:00+02:00", + "event_timestamp": 1621087200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "The Hawthorns", + "referee": null, + "homeTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "awayTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592866, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-23T17:00:00+02:00", + "event_timestamp": 1621782000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Emirates Stadium", + "referee": null, + "homeTeam": { + "team_id": 42, + "team_name": "Arsenal", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/42.png" + }, + "awayTeam": { + "team_id": 51, + "team_name": "Brighton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/51.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592867, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-23T17:00:00+02:00", + "event_timestamp": 1621782000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Villa Park", + "referee": null, + "homeTeam": { + "team_id": 66, + "team_name": "Aston Villa", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/66.png" + }, + "awayTeam": { + "team_id": 49, + "team_name": "Chelsea", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/49.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592868, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-23T17:00:00+02:00", + "event_timestamp": 1621782000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Craven Cottage", + "referee": null, + "homeTeam": { + "team_id": 36, + "team_name": "Fulham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/36.png" + }, + "awayTeam": { + "team_id": 34, + "team_name": "Newcastle", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/34.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592869, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-23T17:00:00+02:00", + "event_timestamp": 1621782000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Elland Road", + "referee": null, + "homeTeam": { + "team_id": 63, + "team_name": "Leeds", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/63.png" + }, + "awayTeam": { + "team_id": 60, + "team_name": "West Brom", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/60.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592870, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-23T17:00:00+02:00", + "event_timestamp": 1621782000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "King Power Stadium", + "referee": null, + "homeTeam": { + "team_id": 46, + "team_name": "Leicester", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/46.png" + }, + "awayTeam": { + "team_id": 47, + "team_name": "Tottenham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/47.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592871, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-23T17:00:00+02:00", + "event_timestamp": 1621782000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Anfield", + "referee": null, + "homeTeam": { + "team_id": 40, + "team_name": "Liverpool", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/40.png" + }, + "awayTeam": { + "team_id": 52, + "team_name": "Crystal Palace", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/52.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592872, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-23T17:00:00+02:00", + "event_timestamp": 1621782000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Etihad Stadium", + "referee": null, + "homeTeam": { + "team_id": 50, + "team_name": "Manchester City", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/50.png" + }, + "awayTeam": { + "team_id": 45, + "team_name": "Everton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/45.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592873, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-23T17:00:00+02:00", + "event_timestamp": 1621782000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Bramall Lane", + "referee": null, + "homeTeam": { + "team_id": 62, + "team_name": "Sheffield Utd", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/62.png" + }, + "awayTeam": { + "team_id": 44, + "team_name": "Burnley", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/44.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592874, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-23T17:00:00+02:00", + "event_timestamp": 1621782000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "London Stadium", + "referee": null, + "homeTeam": { + "team_id": 48, + "team_name": "West Ham", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/48.png" + }, + "awayTeam": { + "team_id": 41, + "team_name": "Southampton", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/41.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 592875, + "league_id": 2790, + "league": { + "name": "Premier League", + "country": "England", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/39.png", + "flag": "https:\/\/media.api-sports.io\/flags\/gb.svg" + }, + "event_date": "2021-05-23T17:00:00+02:00", + "event_timestamp": 1621782000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Molineux Stadium", + "referee": null, + "homeTeam": { + "team_id": 39, + "team_name": "Wolves", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/39.png" + }, + "awayTeam": { + "team_id": 33, + "team_name": "Manchester United", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/33.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/2021/API-Football/matches_league_2795.json b/src/main/resources/2021/API-Football/matches_league_2795.json index 12226f5..a5a47ea 100644 --- a/src/main/resources/2021/API-Football/matches_league_2795.json +++ b/src/main/resources/2021/API-Football/matches_league_2795.json @@ -780,7 +780,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "Städtisches Stadion an der Grünwalder Straße", - "referee": "Martin Speckner, Germany", + "referee": "M. Speckner", "homeTeam": { "team_id": 4674, "team_name": "Bayern München II", @@ -818,7 +818,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "Hänsch-Arena", - "referee": "Patrick Glaser, Germany", + "referee": "P. Glaser", "homeTeam": { "team_id": 1318, "team_name": "SV Meppen", @@ -856,7 +856,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "MDCC-Arena", - "referee": "Steven Greif, Germany", + "referee": "S. Greif", "homeTeam": { "team_id": 179, "team_name": "FC Magdeburg", @@ -894,7 +894,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "GGZ Arena", - "referee": "Lars Erbst, Germany", + "referee": "L. Erbst", "homeTeam": { "team_id": 1315, "team_name": "FSV Zwickau", @@ -932,7 +932,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "Audi-Sportpark", - "referee": "Wolfgang Haslberger, Germany", + "referee": "W. Haslberger", "homeTeam": { "team_id": 184, "team_name": "FC Ingolstadt 04", @@ -970,7 +970,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "Carl-Benz-Stadion", - "referee": "Robin Braun, Germany", + "referee": "R. Braun", "homeTeam": { "team_id": 4268, "team_name": "Waldhof Mannheim", @@ -1008,7 +1008,7 @@ "statusShort": "FT", "elapsed": 90, "venue": "Dietmar-Scholze-Stadion an der Lohmühle", - "referee": "Eric Muller, Germany", + "referee": "E. Müller", "homeTeam": { "team_id": 1625, "team_name": "VfB Lubeck", @@ -1039,14 +1039,14 @@ }, "event_date": "2020-10-04T13:00:00+02:00", "event_timestamp": 1601809200, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601809200, + "secondHalfStart": 1601812800, "round": "Regular Season - 3", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "Ostseestadion", - "referee": null, + "referee": "Nicolas Winter, Germany", "homeTeam": { "team_id": 1321, "team_name": "Hansa Rostock", @@ -1057,11 +1057,11 @@ "team_name": "KFC Uerdingen 05", "logo": "https:\/\/media.api-sports.io\/football\/teams\/1322.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 0, + "goalsAwayTeam": 0, "score": { - "halftime": null, - "fulltime": null, + "halftime": "0-0", + "fulltime": "0-0", "extratime": null, "penalty": null } @@ -1077,14 +1077,14 @@ }, "event_date": "2020-10-04T14:00:00+02:00", "event_timestamp": 1601812800, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601812800, + "secondHalfStart": 1601816400, "round": "Regular Season - 3", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "PSD Bank Arena", - "referee": null, + "referee": "Asmir Osmanagic, Germany", "homeTeam": { "team_id": 1639, "team_name": "FC Saarbrucken", @@ -1095,11 +1095,11 @@ "team_name": "Hallescher FC", "logo": "https:\/\/media.api-sports.io\/football\/teams\/1316.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 4, + "goalsAwayTeam": 0, "score": { - "halftime": null, - "fulltime": null, + "halftime": "2-0", + "fulltime": "4-0", "extratime": null, "penalty": null } @@ -1115,14 +1115,14 @@ }, "event_date": "2020-10-05T19:00:00+02:00", "event_timestamp": 1601917200, - "firstHalfStart": null, - "secondHalfStart": null, + "firstHalfStart": 1601917200, + "secondHalfStart": 1601920800, "round": "Regular Season - 3", - "status": "Not Started", - "statusShort": "NS", - "elapsed": 0, + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, "venue": "BRITA-Arena", - "referee": null, + "referee": "Matthias Jollenbeck, Germany", "homeTeam": { "team_id": 1319, "team_name": "SV Wehen", @@ -1133,11 +1133,11 @@ "team_name": "FC Kaiserslautern", "logo": "https:\/\/media.api-sports.io\/football\/teams\/745.png" }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, + "goalsHomeTeam": 2, + "goalsAwayTeam": 2, "score": { - "halftime": null, - "fulltime": null, + "halftime": "2-0", + "fulltime": "2-2", "extratime": null, "penalty": null } @@ -2282,6 +2282,44 @@ "penalty": null } }, + { + "fixture_id": 593492, + "league_id": 2795, + "league": { + "name": "Liga 3", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-23T19:00:00+02:00", + "event_timestamp": 1603472400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "GGZ Arena", + "referee": null, + "homeTeam": { + "team_id": 1315, + "team_name": "FSV Zwickau", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1315.png" + }, + "awayTeam": { + "team_id": 9335, + "team_name": "Türkgücü-Ataspor", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/9335.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, { "fixture_id": 593488, "league_id": 2795, @@ -2291,13 +2329,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-10-24T02:00:00+02:00", - "event_timestamp": 1603497600, + "event_date": "2020-10-24T14:00:00+02:00", + "event_timestamp": 1603540800, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Hänsch-Arena", "referee": null, @@ -2320,44 +2358,6 @@ "penalty": null } }, - { - "fixture_id": 593489, - "league_id": 2795, - "league": { - "name": "Liga 3", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-24T02:00:00+02:00", - "event_timestamp": 1603497600, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Städtisches Stadion an der Grünwalder Straße", - "referee": null, - "homeTeam": { - "team_id": 4674, - "team_name": "Bayern München II", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/4674.png" - }, - "awayTeam": { - "team_id": 4268, - "team_name": "Waldhof Mannheim", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/4268.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, { "fixture_id": 593490, "league_id": 2795, @@ -2367,13 +2367,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-10-24T02:00:00+02:00", - "event_timestamp": 1603497600, + "event_date": "2020-10-24T14:00:00+02:00", + "event_timestamp": 1603540800, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Audi-Sportpark", "referee": null, @@ -2405,13 +2405,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-10-24T02:00:00+02:00", - "event_timestamp": 1603497600, + "event_date": "2020-10-24T14:00:00+02:00", + "event_timestamp": 1603540800, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Ostseestadion", "referee": null, @@ -2434,82 +2434,6 @@ "penalty": null } }, - { - "fixture_id": 593492, - "league_id": 2795, - "league": { - "name": "Liga 3", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-24T02:00:00+02:00", - "event_timestamp": 1603497600, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "GGZ Arena", - "referee": null, - "homeTeam": { - "team_id": 1315, - "team_name": "FSV Zwickau", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/1315.png" - }, - "awayTeam": { - "team_id": 9335, - "team_name": "Türkgücü-Ataspor", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/9335.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, - { - "fixture_id": 593493, - "league_id": 2795, - "league": { - "name": "Liga 3", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-24T02:00:00+02:00", - "event_timestamp": 1603497600, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "PSD Bank Arena", - "referee": null, - "homeTeam": { - "team_id": 1639, - "team_name": "FC Saarbrucken", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/1639.png" - }, - "awayTeam": { - "team_id": 4265, - "team_name": "Verl", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/4265.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, { "fixture_id": 593494, "league_id": 2795, @@ -2519,13 +2443,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-10-24T02:00:00+02:00", - "event_timestamp": 1603497600, + "event_date": "2020-10-24T14:00:00+02:00", + "event_timestamp": 1603540800, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Dietmar-Scholze-Stadion an der Lohmühle", "referee": null, @@ -2548,44 +2472,6 @@ "penalty": null } }, - { - "fixture_id": 593495, - "league_id": 2795, - "league": { - "name": "Liga 3", - "country": "Germany", - "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", - "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" - }, - "event_date": "2020-10-24T02:00:00+02:00", - "event_timestamp": 1603497600, - "firstHalfStart": null, - "secondHalfStart": null, - "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", - "elapsed": 0, - "venue": "Alpenbauer Sportpark", - "referee": null, - "homeTeam": { - "team_id": 1314, - "team_name": "SpVgg Unterhaching", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/1314.png" - }, - "awayTeam": { - "team_id": 786, - "team_name": "TSV 1860 Munich", - "logo": "https:\/\/media.api-sports.io\/football\/teams\/786.png" - }, - "goalsHomeTeam": null, - "goalsAwayTeam": null, - "score": { - "halftime": null, - "fulltime": null, - "extratime": null, - "penalty": null - } - }, { "fixture_id": 593496, "league_id": 2795, @@ -2595,13 +2481,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-10-24T02:00:00+02:00", - "event_timestamp": 1603497600, + "event_date": "2020-10-24T14:00:00+02:00", + "event_timestamp": 1603540800, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "MDCC-Arena", "referee": null, @@ -2633,13 +2519,13 @@ "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" }, - "event_date": "2020-10-24T02:00:00+02:00", - "event_timestamp": 1603497600, + "event_date": "2020-10-24T14:00:00+02:00", + "event_timestamp": 1603540800, "firstHalfStart": null, "secondHalfStart": null, "round": "Regular Season - 7", - "status": "Time to be defined", - "statusShort": "TBD", + "status": "Not Started", + "statusShort": "NS", "elapsed": 0, "venue": "Schauinsland-Reisen-Arena", "referee": null, @@ -2662,6 +2548,120 @@ "penalty": null } }, + { + "fixture_id": 593493, + "league_id": 2795, + "league": { + "name": "Liga 3", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-25T12:00:00+01:00", + "event_timestamp": 1603623600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "PSD Bank Arena", + "referee": null, + "homeTeam": { + "team_id": 1639, + "team_name": "FC Saarbrucken", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1639.png" + }, + "awayTeam": { + "team_id": 4265, + "team_name": "Verl", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/4265.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 593489, + "league_id": 2795, + "league": { + "name": "Liga 3", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-25T13:00:00+01:00", + "event_timestamp": 1603627200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Städtisches Stadion an der Grünwalder Straße", + "referee": null, + "homeTeam": { + "team_id": 4674, + "team_name": "Bayern München II", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/4674.png" + }, + "awayTeam": { + "team_id": 4268, + "team_name": "Waldhof Mannheim", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/4268.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 593495, + "league_id": 2795, + "league": { + "name": "Liga 3", + "country": "Germany", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/80.png", + "flag": "https:\/\/media.api-sports.io\/flags\/de.svg" + }, + "event_date": "2020-10-26T18:00:00+01:00", + "event_timestamp": 1603731600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Alpenbauer Sportpark", + "referee": null, + "homeTeam": { + "team_id": 1314, + "team_name": "SpVgg Unterhaching", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1314.png" + }, + "awayTeam": { + "team_id": 786, + "team_name": "TSV 1860 Munich", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/786.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, { "fixture_id": 593498, "league_id": 2795, diff --git a/src/main/resources/2021/API-Football/rounds_2790.json b/src/main/resources/2021/API-Football/rounds_2790.json new file mode 100644 index 0000000..4f789da --- /dev/null +++ b/src/main/resources/2021/API-Football/rounds_2790.json @@ -0,0 +1,45 @@ +{ + "api": { + "results": 38, + "fixtures": [ + "Regular_Season_-_1", + "Regular_Season_-_2", + "Regular_Season_-_3", + "Regular_Season_-_4", + "Regular_Season_-_5", + "Regular_Season_-_6", + "Regular_Season_-_7", + "Regular_Season_-_8", + "Regular_Season_-_9", + "Regular_Season_-_10", + "Regular_Season_-_11", + "Regular_Season_-_12", + "Regular_Season_-_13", + "Regular_Season_-_14", + "Regular_Season_-_15", + "Regular_Season_-_16", + "Regular_Season_-_17", + "Regular_Season_-_18", + "Regular_Season_-_19", + "Regular_Season_-_20", + "Regular_Season_-_21", + "Regular_Season_-_22", + "Regular_Season_-_23", + "Regular_Season_-_24", + "Regular_Season_-_25", + "Regular_Season_-_26", + "Regular_Season_-_27", + "Regular_Season_-_28", + "Regular_Season_-_29", + "Regular_Season_-_30", + "Regular_Season_-_31", + "Regular_Season_-_32", + "Regular_Season_-_33", + "Regular_Season_-_34", + "Regular_Season_-_35", + "Regular_Season_-_36", + "Regular_Season_-_37", + "Regular_Season_-_38" + ] + } +} \ No newline at end of file diff --git a/src/main/resources/2021/Tippliga.json b/src/main/resources/2021/Tippliga.json index 8e9daab..1c30850 100644 --- a/src/main/resources/2021/Tippliga.json +++ b/src/main/resources/2021/Tippliga.json @@ -13,7 +13,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 1 + "leagueMatchday": 1, + "showTable": true }, { "type": "SingleMatch", @@ -38,7 +39,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 2 + "leagueMatchday": 2, + "showTable": true }, { "type": "SingleMatch", @@ -63,7 +65,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 3 + "leagueMatchday": 3, + "showTable": true }, { "type": "SingleMatch", @@ -83,7 +86,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 4 + "leagueMatchday": 4, + "showTable": true }, { "type": "SingleMatch", @@ -94,6 +98,11 @@ "type": "SingleMatch", "matchLeague": 2743, "matchId": 585098 + }, + { + "type": "SingleMatch", + "matchLeague": 2795, + "matchId": 593472 } ] }, @@ -103,7 +112,23 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 5 + "leagueMatchday": 5, + "showTable": true + }, + { + "type": "SingleMatch", + "matchLeague": 2743, + "matchId": 585100 + }, + { + "type": "SingleMatch", + "matchLeague": 2743, + "matchId": 585107 + }, + { + "type": "SingleMatch", + "matchLeague": 2664, + "matchId": 571546 } ] }, @@ -113,7 +138,23 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 6 + "leagueMatchday": 6, + "showTable": true + }, + { + "type": "SingleMatch", + "matchLeague": 2743, + "matchId": 585115 + }, + { + "type": "SingleMatch", + "matchLeague": 2743, + "matchId": 585116 + }, + { + "type": "SingleMatch", + "matchLeague": 2790, + "matchId": 592206 } ] }, @@ -123,7 +164,23 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 7 + "leagueMatchday": 7, + "showTable": true + }, + { + "type": "SingleMatch", + "matchLeague": 2743, + "matchId": 585117 + }, + { + "type": "SingleMatch", + "matchLeague": 2743, + "matchId": 585125 + }, + { + "type": "SingleMatch", + "matchLeague": 2743, + "matchId": 585122 } ] }, @@ -133,7 +190,23 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 8 + "leagueMatchday": 8, + "showTable": true + }, + { + "type": "SingleMatch", + "matchLeague": 2743, + "matchId": 585132 + }, + { + "type": "SingleMatch", + "matchLeague": 2743, + "matchId": 585134 + }, + { + "type": "SingleMatch", + "matchLeague": 2795, + "matchId": 593535 } ] }, @@ -143,7 +216,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 9 + "leagueMatchday": 9, + "showTable": true } ] }, @@ -153,7 +227,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 10 + "leagueMatchday": 10, + "showTable": true } ] }, @@ -163,7 +238,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 11 + "leagueMatchday": 11, + "showTable": true } ] }, @@ -173,7 +249,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 12 + "leagueMatchday": 12, + "showTable": true } ] }, @@ -183,7 +260,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 13 + "leagueMatchday": 13, + "showTable": true } ] }, @@ -193,7 +271,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 14 + "leagueMatchday": 14, + "showTable": true } ] }, @@ -203,7 +282,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 15 + "leagueMatchday": 15, + "showTable": true } ] }, @@ -213,7 +293,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 16 + "leagueMatchday": 16, + "showTable": true } ] }, @@ -223,7 +304,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 17 + "leagueMatchday": 17, + "showTable": true } ] }, @@ -233,7 +315,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 18 + "leagueMatchday": 18, + "showTable": true } ] }, @@ -243,7 +326,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2743, - "leagueMatchday": 18 + "leagueMatchday": 18, + "showTable": true } ] }, @@ -253,7 +337,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 19 + "leagueMatchday": 19, + "showTable": true } ] }, @@ -263,7 +348,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 20 + "leagueMatchday": 20, + "showTable": true } ] }, @@ -273,7 +359,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 21 + "leagueMatchday": 21, + "showTable": true } ] }, @@ -283,7 +370,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 22 + "leagueMatchday": 22, + "showTable": true } ] }, @@ -293,7 +381,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 23 + "leagueMatchday": 23, + "showTable": true } ] }, @@ -303,7 +392,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 24 + "leagueMatchday": 24, + "showTable": true } ] }, @@ -313,7 +403,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 25 + "leagueMatchday": 25, + "showTable": true } ] }, @@ -332,7 +423,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 26 + "leagueMatchday": 26, + "showTable": true } ] }, @@ -342,7 +434,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 27 + "leagueMatchday": 27, + "showTable": true } ] }, @@ -352,7 +445,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 28 + "leagueMatchday": 28, + "showTable": true } ] }, @@ -371,7 +465,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 29 + "leagueMatchday": 29, + "showTable": true } ] }, @@ -381,7 +476,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 30 + "leagueMatchday": 30, + "showTable": true } ] }, @@ -391,7 +487,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 31 + "leagueMatchday": 31, + "showTable": true } ] }, @@ -401,7 +498,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 32 + "leagueMatchday": 32, + "showTable": true } ] }, @@ -411,7 +509,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 33 + "leagueMatchday": 33, + "showTable": true } ] }, @@ -431,7 +530,8 @@ { "type": "AllMatchesOfMatchday", "matchesLeague": 2755, - "leagueMatchday": 34 + "leagueMatchday": 34, + "showTable": true } ] }, diff --git a/src/main/resources/Team_ID_TLW_APIF_config.json b/src/main/resources/Team_ID_TLW_APIF_config.json index ec6935b..13e4ac7 100644 --- a/src/main/resources/Team_ID_TLW_APIF_config.json +++ b/src/main/resources/Team_ID_TLW_APIF_config.json @@ -418,5 +418,15 @@ "teamname": "AS Monaco", "tippligaID": 160, "apiFootballID": 91 + }, + { + "teamname": "Manchester United", + "tippligaID": 501, + "apiFootballID": 33 + }, + { + "teamname": "FC Arsenal London", + "tippligaID": 522, + "apiFootballID": 42 } ] \ No newline at end of file diff --git a/src/test/java/de/jeyp91/apifootball/APIFootballUpdaterTest.java b/src/test/java/de/jeyp91/apifootball/APIFootballUpdaterTest.java new file mode 100644 index 0000000..3ac418d --- /dev/null +++ b/src/test/java/de/jeyp91/apifootball/APIFootballUpdaterTest.java @@ -0,0 +1,20 @@ +package de.jeyp91.apifootball; + +import org.junit.Test; + +import java.io.IOException; + +public class APIFootballUpdaterTest { + + @Test + public void updateFixturesTest() throws IOException { + APIFootballUpdater updater = new APIFootballUpdater(2021); + updater.updateFixtures(2743); + } + + @Test + public void updateAllFixturesTest() throws IOException { + APIFootballUpdater updater = new APIFootballUpdater(2021); + updater.updateAllFixtures("Tippliga.json"); + } +} diff --git a/src/test/java/de/jeyp91/tippliga/TLWMatchdayUpdaterTest.java b/src/test/java/de/jeyp91/tippliga/TLWMatchdayUpdaterTest.java index a67783a..8982d35 100644 --- a/src/test/java/de/jeyp91/tippliga/TLWMatchdayUpdaterTest.java +++ b/src/test/java/de/jeyp91/tippliga/TLWMatchdayUpdaterTest.java @@ -5,11 +5,20 @@ import org.junit.Test; public class TLWMatchdayUpdaterTest { @Test - public void getUpdateSqlTest() throws Exception { + public void getUpdateSqlTest1() throws Exception { TLWMatchdaysUpdater matchdaysUpdater = new TLWMatchdaysUpdater(2021, 1, "Tippliga.json"); String sql = matchdaysUpdater.getUpdateSql(); System.out.println(sql); } + + @Test + public void getUpdateSqlTest2() throws Exception { + TLWMatchdaysUpdater matchdaysUpdater = new TLWMatchdaysUpdater(2021, 2, "Tippliga.json"); + + String sql = matchdaysUpdater.getUpdateSql(); + + System.out.println(sql); + } } diff --git a/src/test/java/de/jeyp91/tippliga/TLWMatchesUpdaterFootballTest.java b/src/test/java/de/jeyp91/tippliga/TLWMatchesUpdaterFootballTest.java index 169e609..6281bf6 100644 --- a/src/test/java/de/jeyp91/tippliga/TLWMatchesUpdaterFootballTest.java +++ b/src/test/java/de/jeyp91/tippliga/TLWMatchesUpdaterFootballTest.java @@ -5,10 +5,18 @@ import org.junit.Test; public class TLWMatchesUpdaterFootballTest { @Test - public void getMatchesTest() throws Exception { + public void getUpdateSqlTest1() throws Exception { TLWMatchesUpdaterFootball updater = new TLWMatchesUpdaterFootball(2021, 1, "Tippliga.json"); String sql = updater.getUpdateSQL(); System.out.println(sql); } + + @Test + public void getUpdateSqlTest2() throws Exception { + TLWMatchesUpdaterFootball updater = new TLWMatchesUpdaterFootball(2021, 2, "Tippliga.json"); + String sql = updater.getUpdateSQL(); + + System.out.println(sql); + } } diff --git a/src/test/java/de/jeyp91/tippliga/TLWTeamsUpdaterTest.java b/src/test/java/de/jeyp91/tippliga/TLWTeamsUpdaterTest.java index 3fb6348..81fe063 100644 --- a/src/test/java/de/jeyp91/tippliga/TLWTeamsUpdaterTest.java +++ b/src/test/java/de/jeyp91/tippliga/TLWTeamsUpdaterTest.java @@ -5,7 +5,7 @@ import org.junit.Test; public class TLWTeamsUpdaterTest { @Test - public void getTeamsTest() throws Exception { + public void getInsertSQLTest1() throws Exception { TLWMatchesUpdaterFootball matchesUpdater = new TLWMatchesUpdaterFootball(2021, 1, "Tippliga.json"); TLWTeamsUpdater teamsUpdater = new TLWTeamsUpdater(2021, 1, matchesUpdater.tlwMatchesUpdated); @@ -13,4 +13,14 @@ public class TLWTeamsUpdaterTest { System.out.println(sql); } + + @Test + public void getInsertSQLTest2() throws Exception { + TLWMatchesUpdaterFootball matchesUpdater = new TLWMatchesUpdaterFootball(2021, 2, "Tippliga.json"); + TLWTeamsUpdater teamsUpdater = new TLWTeamsUpdater(2021, 2, matchesUpdater.tlwMatchesUpdated); + + String sql = teamsUpdater.getInsertSQL(); + + System.out.println(sql); + } }