diff --git a/src/main/java/de/jeyp91/apifootball/APIFootballConnector.java b/src/main/java/de/jeyp91/apifootball/APIFootballConnector.java index 93196d9..0f6a07c 100644 --- a/src/main/java/de/jeyp91/apifootball/APIFootballConnector.java +++ b/src/main/java/de/jeyp91/apifootball/APIFootballConnector.java @@ -12,7 +12,6 @@ import org.json.simple.parser.JSONParser; import org.json.simple.parser.ParseException; import java.io.BufferedReader; -import java.io.File; import java.io.IOException; import java.io.InputStreamReader; import java.net.URL; @@ -78,7 +77,7 @@ public class APIFootballConnector { JSONObject object = null; //JSON parser object to parse read file JSONParser jsonParser = new JSONParser(); - URL url = Resources.getResource((this.season + 1) + File.separator + "API-Football" + File.separator + filename + ".json"); + URL url = Resources.getResource((this.season + 1) + "\\API-Football\\" + filename + ".json"); String jsonConfig = null; try { diff --git a/src/main/java/de/jeyp91/apifootball/APIFootballMatch.java b/src/main/java/de/jeyp91/apifootball/APIFootballMatch.java index 0b385a5..650cc44 100644 --- a/src/main/java/de/jeyp91/apifootball/APIFootballMatch.java +++ b/src/main/java/de/jeyp91/apifootball/APIFootballMatch.java @@ -7,7 +7,6 @@ import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; import org.json.simple.parser.ParseException; -import java.io.File; import java.io.IOException; import java.net.URL; import java.nio.charset.StandardCharsets; @@ -56,7 +55,7 @@ public class APIFootballMatch extends BaseMatch { JSONObject object = null; //JSON parser object to parse read file JSONParser jsonParser = new JSONParser(); - URL url = Resources.getResource((this.season + 1) + File.separator + "API-Football" + File.separator + filename); + URL url = Resources.getResource((this.season + 1) + "\\API-Football\\" + filename); String jsonConfig = null; try { diff --git a/src/main/java/de/jeyp91/tippliga/TLWFootballMatchesUpdater.java b/src/main/java/de/jeyp91/tippliga/TLWFootballMatchesUpdater.java new file mode 100644 index 0000000..81e4fbc --- /dev/null +++ b/src/main/java/de/jeyp91/tippliga/TLWFootballMatchesUpdater.java @@ -0,0 +1,11 @@ +package de.jeyp91.tippliga; + +public class TLWFootballMatchesUpdater { + public TLWFootballMatchesUpdater() { + + } + + public String getUpdateSQL() { + return ""; + } +} diff --git a/src/main/java/de/jeyp91/tippliga/TLWMatchdaysCreator.java b/src/main/java/de/jeyp91/tippliga/TLWMatchdaysCreator.java index 540ff1e..27bd5e3 100644 --- a/src/main/java/de/jeyp91/tippliga/TLWMatchdaysCreator.java +++ b/src/main/java/de/jeyp91/tippliga/TLWMatchdaysCreator.java @@ -6,7 +6,6 @@ import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; import org.json.simple.parser.ParseException; -import java.io.File; import java.io.IOException; import java.net.URL; import java.nio.charset.StandardCharsets; @@ -30,7 +29,7 @@ public class TLWMatchdaysCreator { this.matches = matchesCreator.getMatches(); JSONParser jsonParser = new JSONParser(); - URL url = Resources.getResource(season + File.separator + configPath); + URL url = Resources.getResource(season + "\\" + configPath); String jsonConfig = null; try { jsonConfig = Resources.toString(url, StandardCharsets.UTF_8); diff --git a/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorBase.java b/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorBase.java index 40762e1..863c944 100644 --- a/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorBase.java +++ b/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorBase.java @@ -7,6 +7,7 @@ import java.util.ArrayList; public abstract class TLWMatchesCreatorBase { ArrayList TLWMatches; + APIFootballConnector conn; public TLWMatchesCreatorBase() { this.TLWMatches = new ArrayList<>(); diff --git a/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorFootball.java b/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorFootball.java index 1526e29..de991e1 100644 --- a/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorFootball.java +++ b/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorFootball.java @@ -1,14 +1,13 @@ package de.jeyp91.tippliga; import com.google.common.io.Resources; +import de.jeyp91.apifootball.APIFootballConnector; import de.jeyp91.apifootball.APIFootballMatch; -import de.jeyp91.apifootball.APIFootballMatchesProvider; 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.File; import java.io.IOException; import java.net.URL; import java.nio.charset.StandardCharsets; @@ -32,15 +31,11 @@ public class TLWMatchesCreatorFootball extends TLWMatchesCreatorBase { this.season = season; this.league = league; + this.conn = new APIFootballConnector(season - 1); - this.initConfigParamsFromFile(configFileName); - this.publicateMatchObjects(); - } - - private void initConfigParamsFromFile(String configFileName) { - - URL url = Resources.getResource(season + File.separator + configFileName); + URL url = Resources.getResource(season + "\\" + configFileName); String jsonConfig = null; + try { JSONParser jsonParser = new JSONParser(); jsonConfig = Resources.toString(url, StandardCharsets.UTF_8); @@ -53,16 +48,16 @@ public class TLWMatchesCreatorFootball extends TLWMatchesCreatorBase { } catch (IOException | ParseException e) { e.printStackTrace(); } + + this.publicateMatchObjects(); } private void publicateMatchObjects() { - APIFootballMatchesProvider provider = new APIFootballMatchesProvider(this.season); - for(int i = 0; i < this.matchdayConfig.size(); i++) { int TLWMatchday = ((Long) ((JSONObject) this.matchdayConfig.get(i)).get("TLWMatchday")).intValue(); JSONArray matchesConfig = (JSONArray)((JSONObject) this.matchdayConfig.get(i)).get("matchesConfig"); - ArrayList APIFootballMatches = provider.getAPIFootballMatchesFromConfig(matchesConfig); + ArrayList APIFootballMatches = getAPIFootballMatchesForMatchday(matchesConfig); int tempNumberOfMatchesBackup = this.matchesPerMatchday; if(((JSONObject) this.matchdayConfig.get(i)).containsKey("numberOfMatches")) { @@ -114,6 +109,27 @@ public class TLWMatchesCreatorFootball extends TLWMatchesCreatorBase { } } + private ArrayList getAPIFootballMatchesForMatchday(JSONArray config) { + ArrayList apiFootballMatches = new ArrayList<>(); + for (Object singleConfigObject : config) { + JSONObject singleConfig = (JSONObject) singleConfigObject; + String type = (String) singleConfig.get("type"); + switch (type) { + case "AllMatchesOfMatchday": + int matchesLeague = ((Long) singleConfig.get("matchesLeague")).intValue(); + int leagueMatchday = ((Long) singleConfig.get("leagueMatchday")).intValue(); + apiFootballMatches.addAll(conn.getMatchDataByLeagueAndMatchday(matchesLeague, leagueMatchday)); + break; + case "SingleMatch": + int matchLeague = ((Long) singleConfig.get("matchLeague")).intValue(); + int matchId = ((Long) singleConfig.get("matchId")).intValue(); + apiFootballMatches.add(conn.getMatchDataByLeagueAndMatchID(matchLeague, matchId)); + break; + } + } + return apiFootballMatches; + } + private int getDaysDifference(Date date1, Date date2) { long startTime = date1.getTime(); long endTime = date2.getTime(); diff --git a/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorTipperLeague.java b/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorTipperLeague.java index afbb448..e787a95 100644 --- a/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorTipperLeague.java +++ b/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorTipperLeague.java @@ -6,7 +6,6 @@ import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; import org.json.simple.parser.ParseException; -import java.io.File; import java.io.IOException; import java.net.URL; import java.nio.charset.StandardCharsets; @@ -28,7 +27,7 @@ public class TLWMatchesCreatorTipperLeague extends TLWMatchesCreatorBase { this.matchdays = matchdays; URL matchPairConfigUrl = Resources.getResource("Tipper_Match_Pair_Config.json"); - URL tipperListUrl = Resources.getResource(season + File.separator + configFileName); + URL tipperListUrl = Resources.getResource(season + "\\" + configFileName); URL tipperTeamConfigUrl = Resources.getResource("Tipper_Team_Config.json"); try { diff --git a/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorTipperPokal.java b/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorTipperPokal.java index 1ed54da..d457a01 100644 --- a/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorTipperPokal.java +++ b/src/main/java/de/jeyp91/tippliga/TLWMatchesCreatorTipperPokal.java @@ -6,7 +6,6 @@ import org.json.simple.JSONObject; import org.json.simple.parser.JSONParser; import org.json.simple.parser.ParseException; -import java.io.File; import java.io.IOException; import java.net.URL; import java.nio.charset.StandardCharsets; @@ -27,7 +26,7 @@ public class TLWMatchesCreatorTipperPokal extends TLWMatchesCreatorBase{ this.league = league; this.matchdays = matchdays; - URL tipperListUrl = Resources.getResource(season + File.separator + configFileName); + URL tipperListUrl = Resources.getResource(season + "\\" + configFileName); URL tipperTeamConfigUrl = Resources.getResource("Tipper_Team_Config.json"); this.TLWMatches = new ArrayList<>(); diff --git a/src/main/java/de/jeyp91/tippliga/TLWMatchesManagerBase.java b/src/main/java/de/jeyp91/tippliga/TLWMatchesManagerBase.java index 15cb0d2..6be679e 100644 --- a/src/main/java/de/jeyp91/tippliga/TLWMatchesManagerBase.java +++ b/src/main/java/de/jeyp91/tippliga/TLWMatchesManagerBase.java @@ -1,2 +1,65 @@ +<<<<<<< HEAD +package de.jeyp91.tippliga; + +import com.google.common.io.Resources; +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.File; +import java.io.IOException; +import java.net.URL; +import java.nio.charset.StandardCharsets; +import java.text.SimpleDateFormat; +import java.util.Date; + +public class TLWMatchesManagerBase { + + protected int season; + protected int league; + protected int numberOfMatchdays; + protected int matchesPerMatchday; + protected int ko; + + protected JSONArray matchdayConfig; + + protected void initConfigParamsFromFile(String configFileName) { + + URL url = Resources.getResource(season + File.separator + configFileName); + String jsonConfig = null; + try { + JSONParser jsonParser = new JSONParser(); + jsonConfig = Resources.toString(url, StandardCharsets.UTF_8); + //Read JSON file + JSONObject config = (JSONObject) jsonParser.parse(jsonConfig); + this.numberOfMatchdays = ((Long) config.get("numberOfMatchdays")).intValue(); + this.matchdayConfig = (JSONArray) config.get("matchdayConfig"); + this.ko = ((Long) config.get("ko")).intValue(); + + } catch (IOException | ParseException e) { + e.printStackTrace(); + } + } + + protected int getDaysDifference(Date date1, Date date2) { + long startTime = date1.getTime(); + long endTime = date2.getTime(); + long diffTime = endTime - startTime; + long diffDays = diffTime / (1000 * 60 * 60 * 24); + return (int) diffDays; + } + + protected Date getDateObject(String matchdatetime) { + Date matchDateTime = null; + try { + matchDateTime = new SimpleDateFormat("yyyy-MM-dd").parse(matchdatetime.substring(0, 10)); + } catch (java.text.ParseException e) { + e.printStackTrace(); + } + return matchDateTime; + } +======= package de.jeyp91.tippliga;public class TLWMatchesManagerBase { +>>>>>>> origin/master } diff --git a/src/main/java/de/jeyp91/tippliga/TLWTeamsUpdater.java b/src/main/java/de/jeyp91/tippliga/TLWTeamsUpdater.java index c5e2eb9..2bb991c 100644 --- a/src/main/java/de/jeyp91/tippliga/TLWTeamsUpdater.java +++ b/src/main/java/de/jeyp91/tippliga/TLWTeamsUpdater.java @@ -1,2 +1,93 @@ +<<<<<<< HEAD +package de.jeyp91.tippliga; + +import java.util.ArrayList; +import java.util.HashSet; + +public class TLWTeamsUpdater { + + Integer season; + Integer league; + ArrayList teamsOriginal; + ArrayList matchesUpdated; + ArrayList missingTeams; + + public TLWTeamsUpdater(int season, int league, ArrayList matchesUpdated) { + this.season = season; + this.league = league; + this.matchesUpdated = matchesUpdated; + missingTeams = new ArrayList<>(); + + TippligaSQLConnector conn = new TippligaSQLConnector(); + teamsOriginal = conn.getTeams(String.valueOf(season), String.valueOf(league)); + + HashSet missingIds = this.initMissingIds(); + this.initMissingTeams(missingIds); + } + + private HashSet initMissingIds() { + HashSet missingIds = new HashSet<>(); + + for(TLWMatch match : matchesUpdated) { + if(isTeamMissing(match.getTeamIdHome())) { + missingIds.add(match.getTeamIdHome()); + } + if(isTeamMissing(match.getTeamIdGuest())) { + missingIds.add(match.getTeamIdGuest()); + } + } + missingIds.remove(0); + return missingIds; + } + + private void initMissingTeams(HashSet missingIds) { + TippligaSQLConnector conn = new TippligaSQLConnector(); + for (Integer id : missingIds) { + ArrayList teams = conn.getTeams(String.valueOf(id)); + missingTeams.add(new TLWTeam( + this.season, + this.league, + id, + teams.get(0).getTeamName(), + teams.get(0).getTeamNameShort(), + teams.get(0).getTeamSymbol(), + "", + 0 + )); + } + } + + private boolean isTeamMissing(int id) { + boolean teamMissing = true; + for(TLWTeam team : teamsOriginal) { + if(team.getTeamId() == id) { + teamMissing = false; + break; + } + } + return teamMissing; + } + + public String getInsertSQL() { + String updateSql = ""; + + for(TLWTeam team : missingTeams) { + + updateSql += "INSERT INTO phpbb_footb_teams VALUES (" + + team.getSeason() + ", " + + team.getLeague() + ", " + + team.getTeamId() + ", " + + "'" + team.getTeamName() + "', " + + "'" + team.getTeamNameShort() + "', " + + "'" + team.getTeamSymbol() + "', " + + "'" + team.getGroupId() + "', " + + team.getMatchday() + + ");\n"; + } + + return updateSql; + } +======= package de.jeyp91.tippliga;public class TLWTeamsUpdater { +>>>>>>> origin/master } 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 e69de29..4d13f8d 100644 --- a/src/main/resources/2021/API-Football/matches_league_2664.json +++ b/src/main/resources/2021/API-Football/matches_league_2664.json @@ -0,0 +1,14447 @@ +{ + "api": { + "results": 380, + "fixtures": [ + { + "fixture_id": 571475, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-21T19:00:00+02:00", + "event_timestamp": 1598029200, + "firstHalfStart": 1598029200, + "secondHalfStart": 1598032800, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Matmut-Atlantique", + "referee": "B. Bastien", + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "0-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571474, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-22T17:00:00+02:00", + "event_timestamp": 1598108400, + "firstHalfStart": 1598108400, + "secondHalfStart": 1598112000, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Gaston-Gérard", + "referee": "E. Wattellier", + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-1", + "fulltime": "0-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571473, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-22T21:00:00+02:00", + "event_timestamp": 1598122800, + "firstHalfStart": 1598122800, + "secondHalfStart": 1598126400, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Pierre-Mauroy", + "referee": "C. Turpin", + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-0", + "fulltime": "1-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571477, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-23T13:00:00+02:00", + "event_timestamp": 1598180400, + "firstHalfStart": 1598180400, + "secondHalfStart": 1598184000, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Louis II", + "referee": "F. Letexier", + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 2, + "score": { + "halftime": "1-2", + "fulltime": "2-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571472, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-23T15:00:00+02:00", + "event_timestamp": 1598187600, + "firstHalfStart": 1598187600, + "secondHalfStart": 1598191200, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": "J. Hamel", + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": 3, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-1", + "fulltime": "3-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571478, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-23T15:00:00+02:00", + "event_timestamp": 1598187600, + "firstHalfStart": 1598187600, + "secondHalfStart": 1598191200, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade des Costières", + "referee": "J. Pignard", + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": 4, + "goalsAwayTeam": 0, + "score": { + "halftime": "2-0", + "fulltime": "4-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571479, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-23T17:00:00+02:00", + "event_timestamp": 1598194800, + "firstHalfStart": 1598194800, + "secondHalfStart": 1598198400, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Allianz Riviera", + "referee": "J. Miguelgorry", + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-1", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571482, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-28T21:00:00+02:00", + "event_timestamp": 1598641200, + "firstHalfStart": 1598641200, + "secondHalfStart": 1598644800, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Groupama Stadium", + "referee": "B. Millot", + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": 4, + "goalsAwayTeam": 1, + "score": { + "halftime": "3-1", + "fulltime": "4-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571489, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-29T17:00:00+02:00", + "event_timestamp": 1598713200, + "firstHalfStart": 1598713200, + "secondHalfStart": 1598716800, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Roazhon Park", + "referee": "W. Delajod", + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-0", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571491, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-29T21:00:00+02:00", + "event_timestamp": 1598727600, + "firstHalfStart": 1598727600, + "secondHalfStart": 1598731200, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade de la Meinau", + "referee": "J. Brisard", + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 2, + "score": { + "halftime": "0-1", + "fulltime": "0-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571490, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-30T13:00:00+02:00", + "event_timestamp": 1598785200, + "firstHalfStart": 1598785200, + "secondHalfStart": 1598788800, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Auguste-Delaune II", + "referee": "S. Frappart", + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-1", + "fulltime": "0-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571485, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-30T15:00:00+02:00", + "event_timestamp": 1598792400, + "firstHalfStart": 1598792400, + "secondHalfStart": 1598796000, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Raymond-Kopa", + "referee": "K. Abed", + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 2, + "score": { + "halftime": "0-2", + "fulltime": "0-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571486, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-30T15:00:00+02:00", + "event_timestamp": 1598792400, + "firstHalfStart": 1598792400, + "secondHalfStart": 1598796000, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Saint-Symphorien", + "referee": "J. Stinat", + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-1", + "fulltime": "0-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571487, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-30T15:00:00+02:00", + "event_timestamp": 1598792400, + "firstHalfStart": 1598792400, + "secondHalfStart": 1598796000, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": "H. Ben El Hadj", + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "2-0", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571488, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-30T15:00:00+02:00", + "event_timestamp": 1598792400, + "firstHalfStart": 1598792400, + "secondHalfStart": 1598796000, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Geoffroy-Guichard", + "referee": "F. Batta", + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 0, + "score": { + "halftime": "1-0", + "fulltime": "2-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571484, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-08-30T21:00:00+02:00", + "event_timestamp": 1598814000, + "firstHalfStart": 1598814000, + "secondHalfStart": 1598817600, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Francis-Le Blé", + "referee": "A. Delerue", + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 3, + "score": { + "halftime": "1-2", + "fulltime": "2-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571483, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-10T21:00:00+02:00", + "event_timestamp": 1599764400, + "firstHalfStart": 1599764400, + "secondHalfStart": 1599768000, + "round": "Regular Season - 2", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Bollaert-Delelis", + "referee": "H. Ben El Hadj", + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "1-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571493, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-11T21:00:00+02:00", + "event_timestamp": 1599850800, + "firstHalfStart": 1599850800, + "secondHalfStart": 1599854400, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Matmut-Atlantique", + "referee": "R. Buquet", + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "0-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571499, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-12T17:00:00+02:00", + "event_timestamp": 1599922800, + "firstHalfStart": 1599922800, + "secondHalfStart": 1599926400, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade de la Mosson", + "referee": "A. Gautier", + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": 3, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-0", + "fulltime": "3-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571498, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-12T21:00:00+02:00", + "event_timestamp": 1599937200, + "firstHalfStart": 1599937200, + "secondHalfStart": 1599940800, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Geoffroy-Guichard", + "referee": "E. Wattellier", + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "2-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571495, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-13T13:00:00+02:00", + "event_timestamp": 1599994800, + "firstHalfStart": 1599994800, + "secondHalfStart": 1599998400, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Pierre-Mauroy", + "referee": "J. Pignard", + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "1-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571492, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-13T15:00:00+02:00", + "event_timestamp": 1600002000, + "firstHalfStart": 1600002000, + "secondHalfStart": 1600005600, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Gaston-Gérard", + "referee": "B. Dechepy", + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 2, + "score": { + "halftime": "0-1", + "fulltime": "0-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571494, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-13T15:00:00+02:00", + "event_timestamp": 1600002000, + "firstHalfStart": 1600002000, + "secondHalfStart": 1600005600, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Raymond-Kopa", + "referee": "B. Bastien", + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "1-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571496, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-13T15:00:00+02:00", + "event_timestamp": 1600002000, + "firstHalfStart": 1600002000, + "secondHalfStart": 1600005600, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": "A. Petit", + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 3, + "score": { + "halftime": "1-2", + "fulltime": "2-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571497, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-13T15:00:00+02:00", + "event_timestamp": 1600002000, + "firstHalfStart": 1600002000, + "secondHalfStart": 1600005600, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade des Costières", + "referee": "M. Lesage", + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 4, + "score": { + "halftime": "1-2", + "fulltime": "2-4", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571500, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-13T17:00:00+02:00", + "event_timestamp": 1600009200, + "firstHalfStart": 1600009200, + "secondHalfStart": 1600012800, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Louis II", + "referee": "C. Turpin", + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-0", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571501, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-13T21:00:00+02:00", + "event_timestamp": 1600023600, + "firstHalfStart": 1600023600, + "secondHalfStart": 1600027200, + "round": "Regular Season - 3", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Parc des Princes", + "referee": "J. Brisard", + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-1", + "fulltime": "0-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571480, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-15T21:00:00+02:00", + "event_timestamp": 1600196400, + "firstHalfStart": 1600196400, + "secondHalfStart": 1600200000, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade de la Mosson", + "referee": "F. Letexier", + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-0", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571481, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-16T21:00:00+02:00", + "event_timestamp": 1600282800, + "firstHalfStart": 1600282800, + "secondHalfStart": 1600286400, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Parc des Princes", + "referee": "M. Lesage", + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "1-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571476, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-17T21:00:00+02:00", + "event_timestamp": 1600369200, + "firstHalfStart": 1600369200, + "secondHalfStart": 1600372800, + "round": "Regular Season - 1", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Orange Vélodrome", + "referee": "R. Buquet", + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 2, + "score": { + "halftime": "0-1", + "fulltime": "0-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571503, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-18T21:00:00+02:00", + "event_timestamp": 1600455600, + "firstHalfStart": 1600455600, + "secondHalfStart": 1600459200, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Groupama Stadium", + "referee": "A. Delerue", + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "0-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571504, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-19T17:00:00+02:00", + "event_timestamp": 1600527600, + "firstHalfStart": 1600527600, + "secondHalfStart": 1600531200, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Bollaert-Delelis", + "referee": "B. Millot", + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-0", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571508, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-19T21:00:00+02:00", + "event_timestamp": 1600542000, + "firstHalfStart": 1600542000, + "secondHalfStart": 1600545600, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Roazhon Park", + "referee": "J. Miguelgorry", + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-1", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571509, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-20T13:00:00+02:00", + "event_timestamp": 1600599600, + "firstHalfStart": 1600599600, + "secondHalfStart": 1600603200, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Allianz Riviera", + "referee": "B. Bastien", + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 3, + "score": { + "halftime": "0-2", + "fulltime": "0-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571505, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-20T15:00:00+02:00", + "event_timestamp": 1600606800, + "firstHalfStart": 1600606800, + "secondHalfStart": 1600610400, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Francis-Le Blé", + "referee": "K. Abed", + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": 3, + "goalsAwayTeam": 2, + "score": { + "halftime": "2-1", + "fulltime": "3-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571506, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-20T15:00:00+02:00", + "event_timestamp": 1600606800, + "firstHalfStart": 1600606800, + "secondHalfStart": 1600610400, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Saint-Symphorien", + "referee": "J. Hamel", + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-1", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571507, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-20T15:00:00+02:00", + "event_timestamp": 1600606800, + "firstHalfStart": 1600606800, + "secondHalfStart": 1600610400, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade de la Mosson", + "referee": "S. Frappart", + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": 4, + "goalsAwayTeam": 1, + "score": { + "halftime": "2-1", + "fulltime": "4-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571511, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-20T15:00:00+02:00", + "event_timestamp": 1600606800, + "firstHalfStart": 1600606800, + "secondHalfStart": 1600610400, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade de la Meinau", + "referee": "F. Batta", + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "1-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571510, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-20T17:00:00+02:00", + "event_timestamp": 1600614000, + "firstHalfStart": 1600614000, + "secondHalfStart": 1600617600, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": "A. Gautier", + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 2, + "score": { + "halftime": "0-1", + "fulltime": "2-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571502, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-20T21:00:00+02:00", + "event_timestamp": 1600628400, + "firstHalfStart": 1600628400, + "secondHalfStart": 1600632000, + "round": "Regular Season - 4", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Orange Vélodrome", + "referee": "H. Ben El Hadj", + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-0", + "fulltime": "1-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571512, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-25T21:00:00+02:00", + "event_timestamp": 1601060400, + "firstHalfStart": 1601060400, + "secondHalfStart": 1601064000, + "round": "Regular Season - 5", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Pierre-Mauroy", + "referee": "W. Delajod", + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 0, + "score": { + "halftime": "1-0", + "fulltime": "2-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571521, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-26T17:00:00+02:00", + "event_timestamp": 1601132400, + "firstHalfStart": 1601132400, + "secondHalfStart": 1601136000, + "round": "Regular Season - 5", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Geoffroy-Guichard", + "referee": "B. Bastien", + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 3, + "score": { + "halftime": "0-1", + "fulltime": "0-3", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571517, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-26T21:00:00+02:00", + "event_timestamp": 1601146800, + "firstHalfStart": 1601146800, + "secondHalfStart": 1601150400, + "round": "Regular Season - 5", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Orange Vélodrome", + "referee": "E. Wattellier", + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-0", + "fulltime": "1-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571514, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-27T13:00:00+02:00", + "event_timestamp": 1601204400, + "firstHalfStart": 1601204400, + "secondHalfStart": 1601208000, + "round": "Regular Season - 5", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Matmut-Atlantique", + "referee": "F. Letexier", + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 0, + "score": { + "halftime": "0-0", + "fulltime": "0-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571513, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-27T15:00:00+02:00", + "event_timestamp": 1601211600, + "firstHalfStart": 1601211600, + "secondHalfStart": 1601215200, + "round": "Regular Season - 5", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Gaston-Gérard", + "referee": "A. Petit", + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 2, + "score": { + "halftime": "1-0", + "fulltime": "2-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571515, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-27T15:00:00+02:00", + "event_timestamp": 1601211600, + "firstHalfStart": 1601211600, + "secondHalfStart": 1601215200, + "round": "Regular Season - 5", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Raymond-Kopa", + "referee": "J. Stinat", + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": 3, + "goalsAwayTeam": 2, + "score": { + "halftime": "1-2", + "fulltime": "3-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571519, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-27T15:00:00+02:00", + "event_timestamp": 1601211600, + "firstHalfStart": 1601211600, + "secondHalfStart": 1601215200, + "round": "Regular Season - 5", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade des Costières", + "referee": "F. Schneider", + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-1", + "fulltime": "1-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571520, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-27T15:00:00+02:00", + "event_timestamp": 1601211600, + "firstHalfStart": 1601211600, + "secondHalfStart": 1601215200, + "round": "Regular Season - 5", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Louis II", + "referee": "J. Pignard", + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": 3, + "goalsAwayTeam": 2, + "score": { + "halftime": "2-0", + "fulltime": "3-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571516, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-27T17:00:00+02:00", + "event_timestamp": 1601218800, + "firstHalfStart": 1601218800, + "secondHalfStart": 1601222400, + "round": "Regular Season - 5", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": "C. Turpin", + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": 1, + "goalsAwayTeam": 1, + "score": { + "halftime": "0-0", + "fulltime": "1-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571518, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-09-27T21:00:00+02:00", + "event_timestamp": 1601233200, + "firstHalfStart": 1601233200, + "secondHalfStart": 1601236800, + "round": "Regular Season - 5", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Auguste-Delaune II", + "referee": "R. Buquet", + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": 0, + "goalsAwayTeam": 2, + "score": { + "halftime": "0-1", + "fulltime": "0-2", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571529, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-02T21:00:00+02:00", + "event_timestamp": 1601665200, + "firstHalfStart": 1601665200, + "secondHalfStart": 1601668800, + "round": "Regular Season - 6", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Parc des Princes", + "referee": "Frank Schneider, France", + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": 6, + "goalsAwayTeam": 1, + "score": { + "halftime": "2-0", + "fulltime": "6-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571522, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-03T17:00:00+02:00", + "event_timestamp": 1601737200, + "firstHalfStart": 1601737200, + "secondHalfStart": 1601740800, + "round": "Regular Season - 6", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Stade Bollaert-Delelis", + "referee": "Bastein Dechepy, France", + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 0, + "score": { + "halftime": "1-0", + "fulltime": "2-0", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571530, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-03T21:00:00+02:00", + "event_timestamp": 1601751600, + "firstHalfStart": 1601751600, + "secondHalfStart": 1601755200, + "round": "Regular Season - 6", + "status": "Match Finished", + "statusShort": "FT", + "elapsed": 90, + "venue": "Allianz Riviera", + "referee": "Brisard Jerome, France", + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": 2, + "goalsAwayTeam": 1, + "score": { + "halftime": "1-1", + "fulltime": "2-1", + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571526, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-04T13:00:00+02:00", + "event_timestamp": 1601809200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": "B. Millot", + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571523, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-04T15:00:00+02:00", + "event_timestamp": 1601816400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": "J. Hamel", + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571524, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-04T15:00:00+02:00", + "event_timestamp": 1601816400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": "A. Gautier", + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571525, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-04T15:00:00+02:00", + "event_timestamp": 1601816400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": "J. Miguelgorry", + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571528, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-04T15:00:00+02:00", + "event_timestamp": 1601816400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": "M. Lesage", + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571527, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-04T17:00:00+02:00", + "event_timestamp": 1601823600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": "F. Batta", + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571531, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-04T21:00:00+02:00", + "event_timestamp": 1601838000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 6", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": "S. Frappart", + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571532, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-18T02:00:00+02:00", + "event_timestamp": 1602979200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571533, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-18T02:00:00+02:00", + "event_timestamp": 1602979200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571534, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-18T02:00:00+02:00", + "event_timestamp": 1602979200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571535, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-18T02:00:00+02:00", + "event_timestamp": 1602979200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571536, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-18T02:00:00+02:00", + "event_timestamp": 1602979200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571537, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-18T02:00:00+02:00", + "event_timestamp": 1602979200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571538, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-18T02:00:00+02:00", + "event_timestamp": 1602979200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571539, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-18T02:00:00+02:00", + "event_timestamp": 1602979200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571540, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-18T02:00:00+02:00", + "event_timestamp": 1602979200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571541, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-18T02:00:00+02:00", + "event_timestamp": 1602979200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 7", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571547, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-25T02:00:00+02:00", + "event_timestamp": 1603584000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571548, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-25T02:00:00+02:00", + "event_timestamp": 1603584000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571549, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-25T02:00:00+02:00", + "event_timestamp": 1603584000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571550, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-25T02:00:00+02:00", + "event_timestamp": 1603584000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571551, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-25T02:00:00+02:00", + "event_timestamp": 1603584000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571542, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-25T02:00:00+02:00", + "event_timestamp": 1603584000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571543, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-25T02:00:00+02:00", + "event_timestamp": 1603584000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571544, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-25T02:00:00+02:00", + "event_timestamp": 1603584000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571545, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-25T02:00:00+02:00", + "event_timestamp": 1603584000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571546, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-10-25T02:00:00+02:00", + "event_timestamp": 1603584000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 8", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571552, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-01T01:00:00+01:00", + "event_timestamp": 1604188800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571553, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-01T01:00:00+01:00", + "event_timestamp": 1604188800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571554, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-01T01:00:00+01:00", + "event_timestamp": 1604188800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571555, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-01T01:00:00+01:00", + "event_timestamp": 1604188800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571556, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-01T01:00:00+01:00", + "event_timestamp": 1604188800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571557, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-01T01:00:00+01:00", + "event_timestamp": 1604188800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571558, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-01T01:00:00+01:00", + "event_timestamp": 1604188800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571559, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-01T01:00:00+01:00", + "event_timestamp": 1604188800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571560, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-01T01:00:00+01:00", + "event_timestamp": 1604188800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571561, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-01T01:00:00+01:00", + "event_timestamp": 1604188800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 9", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571562, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-08T01:00:00+01:00", + "event_timestamp": 1604793600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571563, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-08T01:00:00+01:00", + "event_timestamp": 1604793600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571564, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-08T01:00:00+01:00", + "event_timestamp": 1604793600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571565, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-08T01:00:00+01:00", + "event_timestamp": 1604793600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571566, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-08T01:00:00+01:00", + "event_timestamp": 1604793600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571567, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-08T01:00:00+01:00", + "event_timestamp": 1604793600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571568, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-08T01:00:00+01:00", + "event_timestamp": 1604793600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571569, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-08T01:00:00+01:00", + "event_timestamp": 1604793600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571570, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-08T01:00:00+01:00", + "event_timestamp": 1604793600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571571, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-08T21:00:00+01:00", + "event_timestamp": 1604865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 10", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571572, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-22T01:00:00+01:00", + "event_timestamp": 1606003200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571573, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-22T01:00:00+01:00", + "event_timestamp": 1606003200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571574, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-22T01:00:00+01:00", + "event_timestamp": 1606003200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571575, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-22T01:00:00+01:00", + "event_timestamp": 1606003200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571576, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-22T01:00:00+01:00", + "event_timestamp": 1606003200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571577, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-22T01:00:00+01:00", + "event_timestamp": 1606003200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571578, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-22T01:00:00+01:00", + "event_timestamp": 1606003200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571579, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-22T01:00:00+01:00", + "event_timestamp": 1606003200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571580, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-22T01:00:00+01:00", + "event_timestamp": 1606003200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571581, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-22T01:00:00+01:00", + "event_timestamp": 1606003200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 11", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571582, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-29T01:00:00+01:00", + "event_timestamp": 1606608000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571583, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-29T01:00:00+01:00", + "event_timestamp": 1606608000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571584, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-29T01:00:00+01:00", + "event_timestamp": 1606608000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571585, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-29T01:00:00+01:00", + "event_timestamp": 1606608000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571586, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-29T01:00:00+01:00", + "event_timestamp": 1606608000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571587, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-29T01:00:00+01:00", + "event_timestamp": 1606608000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571588, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-29T01:00:00+01:00", + "event_timestamp": 1606608000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571589, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-29T01:00:00+01:00", + "event_timestamp": 1606608000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571590, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-29T01:00:00+01:00", + "event_timestamp": 1606608000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571591, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-11-29T01:00:00+01:00", + "event_timestamp": 1606608000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 12", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571592, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-06T01:00:00+01:00", + "event_timestamp": 1607212800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571593, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-06T01:00:00+01:00", + "event_timestamp": 1607212800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571594, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-06T01:00:00+01:00", + "event_timestamp": 1607212800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571595, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-06T01:00:00+01:00", + "event_timestamp": 1607212800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571596, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-06T01:00:00+01:00", + "event_timestamp": 1607212800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571597, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-06T01:00:00+01:00", + "event_timestamp": 1607212800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571598, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-06T01:00:00+01:00", + "event_timestamp": 1607212800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571599, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-06T01:00:00+01:00", + "event_timestamp": 1607212800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571600, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-06T01:00:00+01:00", + "event_timestamp": 1607212800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571601, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-06T01:00:00+01:00", + "event_timestamp": 1607212800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 13", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571602, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571603, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571604, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571605, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571606, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571607, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571608, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571609, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571610, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-13T01:00:00+01:00", + "event_timestamp": 1607817600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571611, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-13T21:00:00+01:00", + "event_timestamp": 1607889600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 14", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571612, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-16T01:00:00+01:00", + "event_timestamp": 1608076800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571613, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-16T01:00:00+01:00", + "event_timestamp": 1608076800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571614, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-16T01:00:00+01:00", + "event_timestamp": 1608076800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571615, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-16T01:00:00+01:00", + "event_timestamp": 1608076800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571616, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-16T01:00:00+01:00", + "event_timestamp": 1608076800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571617, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-16T01:00:00+01:00", + "event_timestamp": 1608076800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571618, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-16T01:00:00+01:00", + "event_timestamp": 1608076800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571619, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-16T01:00:00+01:00", + "event_timestamp": 1608076800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571620, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-16T01:00:00+01:00", + "event_timestamp": 1608076800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571621, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-16T01:00:00+01:00", + "event_timestamp": 1608076800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 15", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571622, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-20T01:00:00+01:00", + "event_timestamp": 1608422400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571623, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-20T01:00:00+01:00", + "event_timestamp": 1608422400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571624, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-20T01:00:00+01:00", + "event_timestamp": 1608422400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571625, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-20T01:00:00+01:00", + "event_timestamp": 1608422400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571626, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-20T01:00:00+01:00", + "event_timestamp": 1608422400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571627, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-20T01:00:00+01:00", + "event_timestamp": 1608422400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571628, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-20T01:00:00+01:00", + "event_timestamp": 1608422400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571629, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-20T01:00:00+01:00", + "event_timestamp": 1608422400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571630, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-20T01:00:00+01:00", + "event_timestamp": 1608422400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571631, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-20T21:00:00+01:00", + "event_timestamp": 1608494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 16", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571632, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-23T01:00:00+01:00", + "event_timestamp": 1608681600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571633, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-23T01:00:00+01:00", + "event_timestamp": 1608681600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571634, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-23T01:00:00+01:00", + "event_timestamp": 1608681600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571635, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-23T01:00:00+01:00", + "event_timestamp": 1608681600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571636, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-23T01:00:00+01:00", + "event_timestamp": 1608681600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571637, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-23T01:00:00+01:00", + "event_timestamp": 1608681600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571638, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-23T01:00:00+01:00", + "event_timestamp": 1608681600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571639, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-23T01:00:00+01:00", + "event_timestamp": 1608681600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571640, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-23T01:00:00+01:00", + "event_timestamp": 1608681600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571641, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2020-12-23T01:00:00+01:00", + "event_timestamp": 1608681600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 17", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571642, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-06T01:00:00+01:00", + "event_timestamp": 1609891200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571643, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-06T01:00:00+01:00", + "event_timestamp": 1609891200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571644, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-06T01:00:00+01:00", + "event_timestamp": 1609891200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571645, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-06T01:00:00+01:00", + "event_timestamp": 1609891200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571646, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-06T01:00:00+01:00", + "event_timestamp": 1609891200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571647, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-06T01:00:00+01:00", + "event_timestamp": 1609891200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571648, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-06T01:00:00+01:00", + "event_timestamp": 1609891200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571649, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-06T01:00:00+01:00", + "event_timestamp": 1609891200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571650, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-06T01:00:00+01:00", + "event_timestamp": 1609891200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571651, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-06T01:00:00+01:00", + "event_timestamp": 1609891200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 18", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571652, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-10T01:00:00+01:00", + "event_timestamp": 1610236800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571653, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-10T01:00:00+01:00", + "event_timestamp": 1610236800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571654, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-10T01:00:00+01:00", + "event_timestamp": 1610236800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571655, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-10T01:00:00+01:00", + "event_timestamp": 1610236800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571656, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-10T01:00:00+01:00", + "event_timestamp": 1610236800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571657, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-10T01:00:00+01:00", + "event_timestamp": 1610236800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571658, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-10T01:00:00+01:00", + "event_timestamp": 1610236800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571659, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-10T01:00:00+01:00", + "event_timestamp": 1610236800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571660, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-10T01:00:00+01:00", + "event_timestamp": 1610236800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571661, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-10T01:00:00+01:00", + "event_timestamp": 1610236800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 19", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571662, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-20T01:00:00+01:00", + "event_timestamp": 1611100800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571663, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-20T01:00:00+01:00", + "event_timestamp": 1611100800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571664, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-20T01:00:00+01:00", + "event_timestamp": 1611100800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571665, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-20T01:00:00+01:00", + "event_timestamp": 1611100800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571666, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-20T01:00:00+01:00", + "event_timestamp": 1611100800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571667, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-20T01:00:00+01:00", + "event_timestamp": 1611100800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571668, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-20T01:00:00+01:00", + "event_timestamp": 1611100800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571669, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-20T01:00:00+01:00", + "event_timestamp": 1611100800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571670, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-20T01:00:00+01:00", + "event_timestamp": 1611100800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571671, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-20T01:00:00+01:00", + "event_timestamp": 1611100800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 20", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571672, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-24T01:00:00+01:00", + "event_timestamp": 1611446400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571673, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-24T01:00:00+01:00", + "event_timestamp": 1611446400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571674, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-24T01:00:00+01:00", + "event_timestamp": 1611446400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571675, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-24T01:00:00+01:00", + "event_timestamp": 1611446400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571676, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-24T01:00:00+01:00", + "event_timestamp": 1611446400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571677, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-24T01:00:00+01:00", + "event_timestamp": 1611446400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571678, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-24T01:00:00+01:00", + "event_timestamp": 1611446400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571679, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-24T01:00:00+01:00", + "event_timestamp": 1611446400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571680, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-24T01:00:00+01:00", + "event_timestamp": 1611446400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571681, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-24T21:00:00+01:00", + "event_timestamp": 1611518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 21", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571682, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-31T01:00:00+01:00", + "event_timestamp": 1612051200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571683, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-31T01:00:00+01:00", + "event_timestamp": 1612051200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571684, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-31T01:00:00+01:00", + "event_timestamp": 1612051200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571685, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-31T01:00:00+01:00", + "event_timestamp": 1612051200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571686, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-31T01:00:00+01:00", + "event_timestamp": 1612051200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571687, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-31T01:00:00+01:00", + "event_timestamp": 1612051200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571688, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-31T01:00:00+01:00", + "event_timestamp": 1612051200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571689, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-31T01:00:00+01:00", + "event_timestamp": 1612051200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571690, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-31T01:00:00+01:00", + "event_timestamp": 1612051200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571691, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-01-31T01:00:00+01:00", + "event_timestamp": 1612051200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 22", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571692, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-03T01:00:00+01:00", + "event_timestamp": 1612310400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571693, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-03T01:00:00+01:00", + "event_timestamp": 1612310400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571694, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-03T01:00:00+01:00", + "event_timestamp": 1612310400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571695, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-03T01:00:00+01:00", + "event_timestamp": 1612310400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571696, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-03T01:00:00+01:00", + "event_timestamp": 1612310400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571697, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-03T01:00:00+01:00", + "event_timestamp": 1612310400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571698, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-03T01:00:00+01:00", + "event_timestamp": 1612310400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571699, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-03T01:00:00+01:00", + "event_timestamp": 1612310400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571700, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-03T01:00:00+01:00", + "event_timestamp": 1612310400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571701, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-03T01:00:00+01:00", + "event_timestamp": 1612310400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 23", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571702, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-07T01:00:00+01:00", + "event_timestamp": 1612656000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571703, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-07T01:00:00+01:00", + "event_timestamp": 1612656000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571704, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-07T01:00:00+01:00", + "event_timestamp": 1612656000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571705, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-07T01:00:00+01:00", + "event_timestamp": 1612656000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571706, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-07T01:00:00+01:00", + "event_timestamp": 1612656000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571707, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-07T01:00:00+01:00", + "event_timestamp": 1612656000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571708, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-07T01:00:00+01:00", + "event_timestamp": 1612656000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571709, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-07T01:00:00+01:00", + "event_timestamp": 1612656000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571710, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-07T01:00:00+01:00", + "event_timestamp": 1612656000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571711, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-07T21:00:00+01:00", + "event_timestamp": 1612728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 24", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571712, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-14T01:00:00+01:00", + "event_timestamp": 1613260800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571713, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-14T01:00:00+01:00", + "event_timestamp": 1613260800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571714, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-14T01:00:00+01:00", + "event_timestamp": 1613260800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571715, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-14T01:00:00+01:00", + "event_timestamp": 1613260800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571716, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-14T01:00:00+01:00", + "event_timestamp": 1613260800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571717, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-14T01:00:00+01:00", + "event_timestamp": 1613260800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571718, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-14T01:00:00+01:00", + "event_timestamp": 1613260800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571719, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-14T01:00:00+01:00", + "event_timestamp": 1613260800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571720, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-14T01:00:00+01:00", + "event_timestamp": 1613260800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571721, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-14T01:00:00+01:00", + "event_timestamp": 1613260800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 25", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571722, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-21T01:00:00+01:00", + "event_timestamp": 1613865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571723, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-21T01:00:00+01:00", + "event_timestamp": 1613865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571724, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-21T01:00:00+01:00", + "event_timestamp": 1613865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571725, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-21T01:00:00+01:00", + "event_timestamp": 1613865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571726, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-21T01:00:00+01:00", + "event_timestamp": 1613865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571727, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-21T01:00:00+01:00", + "event_timestamp": 1613865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571728, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-21T01:00:00+01:00", + "event_timestamp": 1613865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571729, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-21T01:00:00+01:00", + "event_timestamp": 1613865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571730, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-21T01:00:00+01:00", + "event_timestamp": 1613865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571731, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-21T01:00:00+01:00", + "event_timestamp": 1613865600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 26", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571732, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-28T01:00:00+01:00", + "event_timestamp": 1614470400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571733, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-28T01:00:00+01:00", + "event_timestamp": 1614470400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571734, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-28T01:00:00+01:00", + "event_timestamp": 1614470400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571735, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-28T01:00:00+01:00", + "event_timestamp": 1614470400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571736, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-28T01:00:00+01:00", + "event_timestamp": 1614470400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571737, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-28T01:00:00+01:00", + "event_timestamp": 1614470400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571738, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-28T01:00:00+01:00", + "event_timestamp": 1614470400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571739, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-28T01:00:00+01:00", + "event_timestamp": 1614470400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571740, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-28T01:00:00+01:00", + "event_timestamp": 1614470400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571741, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-02-28T21:00:00+01:00", + "event_timestamp": 1614542400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 27", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571742, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-07T01:00:00+01:00", + "event_timestamp": 1615075200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571743, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-07T01:00:00+01:00", + "event_timestamp": 1615075200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571744, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-07T01:00:00+01:00", + "event_timestamp": 1615075200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571745, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-07T01:00:00+01:00", + "event_timestamp": 1615075200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571746, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-07T01:00:00+01:00", + "event_timestamp": 1615075200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571747, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-07T01:00:00+01:00", + "event_timestamp": 1615075200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571748, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-07T01:00:00+01:00", + "event_timestamp": 1615075200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571749, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-07T01:00:00+01:00", + "event_timestamp": 1615075200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571750, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-07T01:00:00+01:00", + "event_timestamp": 1615075200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571751, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-07T01:00:00+01:00", + "event_timestamp": 1615075200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 28", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571752, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-14T01:00:00+01:00", + "event_timestamp": 1615680000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571753, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-14T01:00:00+01:00", + "event_timestamp": 1615680000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571754, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-14T01:00:00+01:00", + "event_timestamp": 1615680000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571755, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-14T01:00:00+01:00", + "event_timestamp": 1615680000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571756, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-14T01:00:00+01:00", + "event_timestamp": 1615680000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571757, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-14T01:00:00+01:00", + "event_timestamp": 1615680000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571758, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-14T01:00:00+01:00", + "event_timestamp": 1615680000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571759, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-14T01:00:00+01:00", + "event_timestamp": 1615680000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571760, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-14T01:00:00+01:00", + "event_timestamp": 1615680000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571761, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-14T01:00:00+01:00", + "event_timestamp": 1615680000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 29", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571762, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-21T01:00:00+01:00", + "event_timestamp": 1616284800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571763, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-21T01:00:00+01:00", + "event_timestamp": 1616284800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571764, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-21T01:00:00+01:00", + "event_timestamp": 1616284800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571765, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-21T01:00:00+01:00", + "event_timestamp": 1616284800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571766, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-21T01:00:00+01:00", + "event_timestamp": 1616284800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571767, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-21T01:00:00+01:00", + "event_timestamp": 1616284800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571768, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-21T01:00:00+01:00", + "event_timestamp": 1616284800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571769, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-21T01:00:00+01:00", + "event_timestamp": 1616284800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571770, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-21T01:00:00+01:00", + "event_timestamp": 1616284800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571771, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-03-21T21:00:00+01:00", + "event_timestamp": 1616356800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 30", + "status": "Not Started", + "statusShort": "NS", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571772, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-04T02:00:00+02:00", + "event_timestamp": 1617494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571773, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-04T02:00:00+02:00", + "event_timestamp": 1617494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571774, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-04T02:00:00+02:00", + "event_timestamp": 1617494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571775, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-04T02:00:00+02:00", + "event_timestamp": 1617494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571776, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-04T02:00:00+02:00", + "event_timestamp": 1617494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571777, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-04T02:00:00+02:00", + "event_timestamp": 1617494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571778, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-04T02:00:00+02:00", + "event_timestamp": 1617494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571779, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-04T02:00:00+02:00", + "event_timestamp": 1617494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571780, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-04T02:00:00+02:00", + "event_timestamp": 1617494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571781, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-04T02:00:00+02:00", + "event_timestamp": 1617494400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 31", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571782, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-11T02:00:00+02:00", + "event_timestamp": 1618099200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571783, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-11T02:00:00+02:00", + "event_timestamp": 1618099200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571784, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-11T02:00:00+02:00", + "event_timestamp": 1618099200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571785, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-11T02:00:00+02:00", + "event_timestamp": 1618099200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571786, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-11T02:00:00+02:00", + "event_timestamp": 1618099200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571787, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-11T02:00:00+02:00", + "event_timestamp": 1618099200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571788, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-11T02:00:00+02:00", + "event_timestamp": 1618099200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571789, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-11T02:00:00+02:00", + "event_timestamp": 1618099200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571790, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-11T02:00:00+02:00", + "event_timestamp": 1618099200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571791, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-11T02:00:00+02:00", + "event_timestamp": 1618099200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 32", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571792, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-18T02:00:00+02:00", + "event_timestamp": 1618704000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571793, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-18T02:00:00+02:00", + "event_timestamp": 1618704000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571794, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-18T02:00:00+02:00", + "event_timestamp": 1618704000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571795, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-18T02:00:00+02:00", + "event_timestamp": 1618704000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571796, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-18T02:00:00+02:00", + "event_timestamp": 1618704000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571797, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-18T02:00:00+02:00", + "event_timestamp": 1618704000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571798, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-18T02:00:00+02:00", + "event_timestamp": 1618704000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571799, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-18T02:00:00+02:00", + "event_timestamp": 1618704000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571800, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-18T02:00:00+02:00", + "event_timestamp": 1618704000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571801, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-18T02:00:00+02:00", + "event_timestamp": 1618704000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 33", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571803, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-25T02:00:00+02:00", + "event_timestamp": 1619308800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571804, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-25T02:00:00+02:00", + "event_timestamp": 1619308800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571805, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-25T02:00:00+02:00", + "event_timestamp": 1619308800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571806, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-25T02:00:00+02:00", + "event_timestamp": 1619308800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571807, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-25T02:00:00+02:00", + "event_timestamp": 1619308800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571808, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-25T02:00:00+02:00", + "event_timestamp": 1619308800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571809, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-25T02:00:00+02:00", + "event_timestamp": 1619308800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571810, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-25T02:00:00+02:00", + "event_timestamp": 1619308800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571811, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-25T02:00:00+02:00", + "event_timestamp": 1619308800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571802, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-04-25T02:00:00+02:00", + "event_timestamp": 1619308800, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 34", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571812, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-02T02:00:00+02:00", + "event_timestamp": 1619913600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571813, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-02T02:00:00+02:00", + "event_timestamp": 1619913600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571814, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-02T02:00:00+02:00", + "event_timestamp": 1619913600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571815, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-02T02:00:00+02:00", + "event_timestamp": 1619913600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571816, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-02T02:00:00+02:00", + "event_timestamp": 1619913600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571817, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-02T02:00:00+02:00", + "event_timestamp": 1619913600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571818, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-02T02:00:00+02:00", + "event_timestamp": 1619913600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571819, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-02T02:00:00+02:00", + "event_timestamp": 1619913600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571820, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-02T02:00:00+02:00", + "event_timestamp": 1619913600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571821, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-02T02:00:00+02:00", + "event_timestamp": 1619913600, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 35", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571822, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-09T02:00:00+02:00", + "event_timestamp": 1620518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571823, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-09T02:00:00+02:00", + "event_timestamp": 1620518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571824, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-09T02:00:00+02:00", + "event_timestamp": 1620518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571825, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-09T02:00:00+02:00", + "event_timestamp": 1620518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571826, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-09T02:00:00+02:00", + "event_timestamp": 1620518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571827, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-09T02:00:00+02:00", + "event_timestamp": 1620518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571828, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-09T02:00:00+02:00", + "event_timestamp": 1620518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571829, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-09T02:00:00+02:00", + "event_timestamp": 1620518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571830, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-09T02:00:00+02:00", + "event_timestamp": 1620518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571831, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-09T02:00:00+02:00", + "event_timestamp": 1620518400, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 36", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": null, + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571832, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-16T02:00:00+02:00", + "event_timestamp": 1621123200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Yves Allainmat - Le Moustoir", + "referee": null, + "homeTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.png" + }, + "awayTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571833, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-16T02:00:00+02:00", + "event_timestamp": 1621123200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Pierre-Mauroy", + "referee": null, + "homeTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "awayTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571834, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-16T02:00:00+02:00", + "event_timestamp": 1621123200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Gaston-Gérard", + "referee": null, + "homeTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "awayTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571835, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-16T02:00:00+02:00", + "event_timestamp": 1621123200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Matmut-Atlantique", + "referee": null, + "homeTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "awayTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571836, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-16T02:00:00+02:00", + "event_timestamp": 1621123200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Orange Vélodrome", + "referee": null, + "homeTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "awayTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571837, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-16T02:00:00+02:00", + "event_timestamp": 1621123200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Louis II", + "referee": null, + "homeTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "awayTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571838, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-16T02:00:00+02:00", + "event_timestamp": 1621123200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade des Costières", + "referee": null, + "homeTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "awayTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571839, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-16T02:00:00+02:00", + "event_timestamp": 1621123200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Allianz Riviera", + "referee": null, + "homeTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "awayTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571840, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-16T02:00:00+02:00", + "event_timestamp": 1621123200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Mosson", + "referee": null, + "homeTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "awayTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571841, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-16T02:00:00+02:00", + "event_timestamp": 1621123200, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 37", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Parc des Princes", + "referee": null, + "homeTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "awayTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571842, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-23T02:00:00+02:00", + "event_timestamp": 1621728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Groupama Stadium", + "referee": null, + "homeTeam": { + "team_id": 80, + "team_name": "Lyon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/80.png" + }, + "awayTeam": { + "team_id": 84, + "team_name": "Nice", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/84.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571843, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-23T02:00:00+02:00", + "event_timestamp": 1621728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Bollaert-Delelis", + "referee": null, + "homeTeam": { + "team_id": 116, + "team_name": "Lens", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/116.png" + }, + "awayTeam": { + "team_id": 91, + "team_name": "Monaco", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/91.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571844, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-23T02:00:00+02:00", + "event_timestamp": 1621728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Francis-Le Blé", + "referee": null, + "homeTeam": { + "team_id": 106, + "team_name": "Stade Brestois 29", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/106.png" + }, + "awayTeam": { + "team_id": 85, + "team_name": "Paris Saint Germain", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/85.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571845, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-23T02:00:00+02:00", + "event_timestamp": 1621728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Raymond-Kopa", + "referee": null, + "homeTeam": { + "team_id": 77, + "team_name": "Angers", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/77.png" + }, + "awayTeam": { + "team_id": 79, + "team_name": "Lille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/79.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571846, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-23T02:00:00+02:00", + "event_timestamp": 1621728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Saint-Symphorien", + "referee": null, + "homeTeam": { + "team_id": 112, + "team_name": "Metz", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/112.png" + }, + "awayTeam": { + "team_id": 81, + "team_name": "Marseille", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/81.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571847, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-23T02:00:00+02:00", + "event_timestamp": 1621728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Beaujoire - Louis Fonteneau", + "referee": null, + "homeTeam": { + "team_id": 83, + "team_name": "Nantes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/83.png" + }, + "awayTeam": { + "team_id": 82, + "team_name": "Montpellier", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/82.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571848, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-23T02:00:00+02:00", + "event_timestamp": 1621728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Geoffroy-Guichard", + "referee": null, + "homeTeam": { + "team_id": 1063, + "team_name": "Saint Etienne", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/1063.png" + }, + "awayTeam": { + "team_id": 89, + "team_name": "Dijon", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/89.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571849, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-23T02:00:00+02:00", + "event_timestamp": 1621728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Roazhon Park", + "referee": null, + "homeTeam": { + "team_id": 94, + "team_name": "Rennes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/94.png" + }, + "awayTeam": { + "team_id": 92, + "team_name": "Nimes", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/92.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571850, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-23T02:00:00+02:00", + "event_timestamp": 1621728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade Auguste-Delaune II", + "referee": null, + "homeTeam": { + "team_id": 93, + "team_name": "Reims", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/93.png" + }, + "awayTeam": { + "team_id": 78, + "team_name": "Bordeaux", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/78.png" + }, + "goalsHomeTeam": null, + "goalsAwayTeam": null, + "score": { + "halftime": null, + "fulltime": null, + "extratime": null, + "penalty": null + } + }, + { + "fixture_id": 571851, + "league_id": 2664, + "league": { + "name": "Ligue 1", + "country": "France", + "logo": "https:\/\/media.api-sports.io\/football\/leagues\/61.png", + "flag": "https:\/\/media.api-sports.io\/flags\/fr.svg" + }, + "event_date": "2021-05-23T02:00:00+02:00", + "event_timestamp": 1621728000, + "firstHalfStart": null, + "secondHalfStart": null, + "round": "Regular Season - 38", + "status": "Time to be defined", + "statusShort": "TBD", + "elapsed": 0, + "venue": "Stade de la Meinau", + "referee": "M. Kristoffersen", + "homeTeam": { + "team_id": 95, + "team_name": "Strasbourg", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/95.png" + }, + "awayTeam": { + "team_id": 97, + "team_name": "Lorient", + "logo": "https:\/\/media.api-sports.io\/football\/teams\/97.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/rounds_2664.json b/src/main/resources/2021/API-Football/rounds_2664.json index e69de29..4f789da 100644 --- a/src/main/resources/2021/API-Football/rounds_2664.json +++ b/src/main/resources/2021/API-Football/rounds_2664.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/API-Football/rounds_2795.json b/src/main/resources/2021/API-Football/rounds_2795.json index e69de29..4f789da 100644 --- a/src/main/resources/2021/API-Football/rounds_2795.json +++ b/src/main/resources/2021/API-Football/rounds_2795.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/test/java/de/jeyp91/tippliga/TLWMatchesUpdaterFootballTest.java b/src/test/java/de/jeyp91/tippliga/TLWMatchesUpdaterFootballTest.java index 8ba737d..c8e4fa3 100644 --- a/src/test/java/de/jeyp91/tippliga/TLWMatchesUpdaterFootballTest.java +++ b/src/test/java/de/jeyp91/tippliga/TLWMatchesUpdaterFootballTest.java @@ -1,2 +1,18 @@ +<<<<<<< HEAD +package de.jeyp91.tippliga; + +import org.junit.Test; + +public class TLWMatchesUpdaterFootballTest { + + @Test + public void getMatchesTest() throws Exception { + TLWMatchesUpdaterFootball updater = new TLWMatchesUpdaterFootball(2021, 1, "Tippliga.json"); + String sql = updater.getUpdateSQL(); + + System.out.println(sql); + } +======= package de.jeyp91.tippliga;public class TLWMatchesUpdaterFootball { +>>>>>>> origin/master } diff --git a/src/test/java/de/jeyp91/tippliga/TLWTeamsUpdaterTest.java b/src/test/java/de/jeyp91/tippliga/TLWTeamsUpdaterTest.java index abe9012..a300320 100644 --- a/src/test/java/de/jeyp91/tippliga/TLWTeamsUpdaterTest.java +++ b/src/test/java/de/jeyp91/tippliga/TLWTeamsUpdaterTest.java @@ -1,2 +1,21 @@ +<<<<<<< HEAD +package de.jeyp91.tippliga; + +import org.junit.Test; + +public class TLWTeamsUpdaterTest { + + @Test + public void getTeamsTest() throws Exception { + TLWMatchesUpdaterFootball matchesUpdater = new TLWMatchesUpdaterFootball(2021, 1, "Tippliga.json"); + TLWTeamsUpdater teamsUpdater = new TLWTeamsUpdater(2021, 1, matchesUpdater.tlwMatchesUpdated); + + String sql = teamsUpdater.getInsertSQL(); + + System.out.println(sql); + } + +======= package de.jeyp91.tippliga;public class TLWTeamsUpdaterTest { +>>>>>>> origin/master }