
Contents
While our Football API was built by football-loving developers and designed for ease of use and flexibility, accessing this wealth of data can be difficult without the right kind of knowledge.
This is the reason we took it upon ourselves to provide five-star documentation and several guides to help you unlock the power of Sportmonks Football API with a host of programming languages.
So, no matter what your skillset is, or whether you are building a betting platform, creating a fantasy football application, performing in-depth statistical analysis, or just building a media app, you too can access the best football-related data on the planet.
In this episode of our guide, we will unleash the power of Sportmonks’ Football API using Scala, a strong statically typed high-level general-purpose programming language. Influenced by Java and Common Lisp, Scala supports both object-oriented programming and functional programming.
The programming language, which was designed by a German computer scientist named Martin Odersky, first appeared two decades ago in 2004.
Designed with scalability in mind, just as its name suggests, Scala’s active community, conciseness, and interoperability with Java makes it an ideal choice for integrating with Sportmonks’ Football API.
Now that we have the introduction out of the way, let’s get right into it!
What can you build with Scala?
Scala is the language of choice for big data applications due to its speed and scalability, and while you may be scratching your head for practical examples, Twitter relies on Scala. Your favorite movie app, Netflix, also uses Scala. The next time you hail a cab using the popular ride-sharing app Uber, you will interact with Scala.
Scala can be used to build web applications and services, write back-end code for mobile apps, or create big data systems. Hence, it is an ideal choice for making requests to Sportmonks’ Football API.
Sportmonks Football API meets Scala.
In the upcoming sections, we’ll walk you through configuring your development environment by installing an IDE, initiating fundamental API calls, and accessing data from the Football API. Each segment will build on the next, showcasing examples and code snippets.
At the end of this guide, you’ll possess the expertise and resources to fully leverage Sportmonks’ Football API, empowering you as you embark on the journey to build the next big thing with Scala.
Chapter 1. Setting up your environment
Successfully using Sportmonks’ Football API with Scala requires installing an environment where we can write and compile Scala.
1.1 Setting up an IDE for Scala.
If you read the previous episode, Leveraging Sportmonks’ Football API with Kotlin, you should have IntelliJ IDEA, which we downloaded from the official website, installed on your workstation.
Designed by JetBrains, IntelliJ IDEA is a cross-platform IDE and an ideal solution for today’s exercise as it is available on Mac, Windows, and Linux.
If you haven’t yet, download an appropriate version and have IntelliJ IDEA installed. You will need to add the plugin for Scala from the marketplace to ensure you can compile and run Scala files. You may see the image below.
After doing so, create a new project and select Scala. This will create a new project structure with a build.sbt file.
1.2 Getting Started with Scala
Now that we have our environment set up properly, we have to contend with authentication. To do so, we shall obtain an API token, which will be included in our URL to authenticate all our requests.
1.3 Obtaining an API Token
To use the API, sign up for an account. Your account automatically comes with the Danish Super Liga and Scottish Premier League plans. These are free forever.
However, for today’s exercise, you can take advantage of the 14-day free trial on any of the other plans.
Using the advanced option on the European plan, you can begin your 14-day free trial after filling out the form.
Head over to the Create an API Token section. Once you have your API token, which is required for authentication and accessing the data endpoints, you must keep it private.
More information about authentication is available on our documentation page.
With your API token ready and your environment set up, you’re ready to start making requests to Sportmonks’ Football API.
Chapter 2. Retrieving Seasons using Scala.
In our previous blog, where we made use of C# extensively, we retrieved league details and went further with a few more exercises. In this blog, we will take another direction by retrieving seasons’ data from the Football API.
Create a new file in the ‘SCALA’ folder of your project and name Seasons.
Select ‘Object’ on file type as shown below.
import java.io.BufferedReader import java.io.InputStreamReader import java.net.{HttpURLConnection, URL} import scala.util.{Try, Using} object Seasons extends App { def sendGetRequest(apiUrl: String): Try[String] = { val url = new URL(apiUrl) val connection = url.openConnection().asInstanceOf[HttpURLConnection] connection.setRequestMethod("GET") connection.setRequestProperty("Accept", "application/json") // Execute the request and handle the response val result = Try { val responseCode = connection.getResponseCode if (responseCode == HttpURLConnection.HTTP_OK) { // Read the response Using(new BufferedReader(new InputStreamReader(connection.getInputStream))) { reader => Iterator.continually(reader.readLine()).takeWhile(_ != null).mkString }.getOrElse("") } else { s"Error: HTTP response code $responseCode" } } // Ensure the connection is closed connection.disconnect() result } // Define the API endpoint val apiUrl = "https://api.sportmonks.com/v3/football/seasons?api_token=API_Token" //replace with your API Token // Send the request and print the response sendGetRequest(apiUrl) match { case scala.util.Success(data) => println(s"Response data: $data") case scala.util.Failure(exception) => println(s"Error: ${exception.getMessage}") } }
{"data":[{"id":1,"sport_id":1,"league_id":66,"tie_breaker_rule_id":169,"name":"2013\/2014","finished":true,"pending":false,"is_current":false,"starting_at":"2013-08-17","ending_at":"2014-04-26","standings_recalculated_at":"2023-03-29 09:00:56","games_in_current_week":false},{"id":2,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2010\/2011","finished":true,"pending":false,"is_current":false,"starting_at":"2010-08-14","ending_at":"2011-05-22","standings_recalculated_at":"2023-05-24 08:28:07","games_in_current_week":false},{"id":3,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2013\/2014","finished":true,"pending":false,"is_current":false,"starting_at":"2013-08-17","ending_at":"2014-05-11","standings_recalculated_at":"2023-05-24 08:28:09","games_in_current_week":false},{"id":6,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2008\/2009","finished":true,"pending":false,"is_current":false,"starting_at":"2008-08-16","ending_at":"2009-05-24","standings_recalculated_at":"2023-11-30 13:38:48","games_in_current_week":false},{"id":7,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2012\/2013","finished":true,"pending":false,"is_current":false,"starting_at":"2012-08-18","ending_at":"2013-05-19","standings_recalculated_at":"2023-05-24 08:28:13","games_in_current_week":false},{"id":8,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2006\/2007","finished":true,"pending":false,"is_current":false,"starting_at":"2006-08-19","ending_at":"2007-05-13","standings_recalculated_at":"2023-05-24 08:28:14","games_in_current_week":false},{"id":9,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2011\/2012","finished":true,"pending":false,"is_current":false,"starting_at":"2011-08-13","ending_at":"2012-05-13","standings_recalculated_at":"2023-05-24 08:28:16","games_in_current_week":false},{"id":10,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2015\/2016","finished":true,"pending":false,"is_current":false,"starting_at":"2015-08-08","ending_at":"2016-05-17","standings_recalculated_at":"2023-05-24 08:28:17","games_in_current_week":false},{"id":11,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2009\/2010","finished":true,"pending":false,"is_current":false,"starting_at":"2009-08-15","ending_at":"2010-05-09","standings_recalculated_at":"2023-05-24 08:28:19","games_in_current_week":false},{"id":12,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2014\/2015","finished":true,"pending":false,"is_current":false,"starting_at":"2014-08-16","ending_at":"2015-05-24","standings_recalculated_at":"2023-05-24 08:28:20","games_in_current_week":false},{"id":13,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2016\/2017","finished":true,"pending":false,"is_current":false,"starting_at":"2016-08-13","ending_at":"2017-05-21","standings_recalculated_at":"2023-05-24 08:28:21","games_in_current_week":false},{"id":14,"sport_id":1,"league_id":8,"tie_breaker_rule_id":1526,"name":"2007\/2008","finished":true,"pending":false,"is_current":false,"starting_at":"2007-08-11","ending_at":"2008-05-11","standings_recalculated_at":"2023-05-24 08:28:22","games_in_current_week":false},{"id":15,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2005\/2006","finished":true,"pending":false,"is_current":false,"starting_at":"2005-08-05","ending_at":"2006-05-20","standings_recalculated_at":"2023-05-24 08:28:24","games_in_current_week":false},{"id":16,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2006\/2007","finished":true,"pending":false,"is_current":false,"starting_at":"2006-08-05","ending_at":"2007-05-28","standings_recalculated_at":"2023-05-24 08:28:26","games_in_current_week":false},{"id":17,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2007\/2008","finished":true,"pending":false,"is_current":false,"starting_at":"2007-08-11","ending_at":"2008-05-24","standings_recalculated_at":"2023-05-24 08:28:28","games_in_current_week":false},{"id":18,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2008\/2009","finished":true,"pending":false,"is_current":false,"starting_at":"2008-08-09","ending_at":"2009-05-25","standings_recalculated_at":"2024-03-04 14:58:46","games_in_current_week":false},{"id":19,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2009\/2010","finished":true,"pending":false,"is_current":false,"starting_at":"2009-08-07","ending_at":"2010-05-22","standings_recalculated_at":"2023-05-24 08:28:30","games_in_current_week":false},{"id":20,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2010\/2011","finished":true,"pending":false,"is_current":false,"starting_at":"2010-08-06","ending_at":"2011-05-30","standings_recalculated_at":"2023-05-24 08:28:32","games_in_current_week":false},{"id":21,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2011\/2012","finished":true,"pending":false,"is_current":false,"starting_at":"2011-08-05","ending_at":"2012-05-19","standings_recalculated_at":"2023-05-24 08:28:34","games_in_current_week":false},{"id":22,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2012\/2013","finished":true,"pending":false,"is_current":false,"starting_at":"2012-08-17","ending_at":"2013-05-27","standings_recalculated_at":"2023-05-24 08:29:22","games_in_current_week":false},{"id":23,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2013\/2014","finished":true,"pending":false,"is_current":false,"starting_at":"2013-08-03","ending_at":"2014-05-24","standings_recalculated_at":"2023-05-24 08:29:23","games_in_current_week":false},{"id":24,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2014\/2015","finished":true,"pending":false,"is_current":false,"starting_at":"2014-08-08","ending_at":"2015-05-25","standings_recalculated_at":"2023-05-24 08:29:25","games_in_current_week":false},{"id":25,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2015\/2016","finished":true,"pending":false,"is_current":false,"starting_at":"2015-08-07","ending_at":"2016-05-28","standings_recalculated_at":"2023-11-30 13:39:47","games_in_current_week":false},{"id":26,"sport_id":1,"league_id":9,"tie_breaker_rule_id":169,"name":"2016\/2017","finished":true,"pending":false,"is_current":false,"starting_at":"2016-08-05","ending_at":"2017-05-29","standings_recalculated_at":"2023-05-24 08:29:28","games_in_current_week":false},{"id":27,"sport_id":1,"league_id":12,"tie_breaker_rule_id":169,"name":"2005\/2006","finished":true,"pending":false,"is_current":false,"starting_at":"2005-08-05","ending_at":"2006-05-26","standings_recalculated_at":"2023-05-24 08:29:29","games_in_current_week":false}],"pagination":{"count":25,"per_page":25,"current_page":1,"next_page":"https:\/\/api.sportmonks.com\/v3\/football\/seasons?page=2","has_more":true},"subscription":[{"meta":{"trial_ends_at":"2024-10-16 14:50:45","ends_at":null,"current_timestamp":1730995538},"plans":[{"plan":"Enterprise plan (loyal)","sport":"Football","category":"Advanced"},{"plan":"Enterprise Plan","sport":"Cricket","category":"Standard"},{"plan":"Formula One","sport":"Formula One","category":"Standard"}],"add_ons":[{"add_on":"All-in News API","sport":"Football","category":"News"},{"add_on":"pressure index add-on","sport":"Football","category":"Default"},{"add_on":"Enterprise Plan Predictions","sport":"Football","category":"Predictions"},{"add_on":"xG Advanced","sport":"Football","category":"Expected"}],"widgets":[{"widget":"Sportmonks Widgets","sport":"Football"}]}],"rate_limit":{"resets_in_seconds":3600,"remaining":2999,"requested_entity":"Season"},"timezone":"UTC"}
Paste the piece of code above and run the Scala file as shown in the image below.
Explanation.
The URL and HttpURLConnection: Creates a connection to the specified API URL.
Setting request properties: Sets the request method to GET and adds a header to accept JSON responses.
Reading the response: Reads the response line by line and combines it into a single string.
Taking a look at the result, which displays a JSON response, you will find seasons with the data structure, which includes id, league_id, name, and starting_at among many others.
Chapter 3. ADDING A REQUIRED LIBRARY.
To format the JSON response, we shall include an external library named json4s. To include this, look for your build.sbt file and add the line below.
libraryDependencies += "org.json4s" %% "json4s-native" % "4.0.7"
Refresh or reload the file to ensure json4s has been added. Once added, we will take steps to format our JSON response.
Chapter 3.1 Formatting our JSON Response.
Using the same url from Chapter 2.0, our piece of code is modified to display its response in a more readable format.
import java.io.{BufferedReader, InputStreamReader} import java.net.HttpURLConnection import java.net.URL import org.json4s._ import org.json4s.native.JsonMethods._ object Seasons_Formatted { // Specify the implicit formats with an explicit type implicit val formats: Formats = DefaultFormats // Method to send GET request and retrieve JSON response def fetchJson(url: String): String = { val connection = new URL(url).openConnection().asInstanceOf[HttpURLConnection] connection.setRequestMethod("GET") connection.setRequestProperty("Accept", "application/json") var reader: BufferedReader = null try { val responseCode = connection.getResponseCode if (responseCode == HttpURLConnection.HTTP_OK) { reader = new BufferedReader(new InputStreamReader(connection.getInputStream)) val response = new StringBuilder var line: String = null while ({ line = reader.readLine(); line != null }) { response.append(line) } response.toString() } else { s"Error: HTTP response code $responseCode" } } finally { if (reader != null) { reader.close() // Ensure the reader is closed } connection.disconnect() // Disconnect the connection } } // Method to format JSON response with each field on a new line def formatJsonWithoutBrackets(jsonString: String): String = { val json = parse(jsonString) // Extracting the seasons array from the JSON response val seasons = (json \ "data").extract[List[Map[String, Any]]] // Format each season with each field on a new line seasons.map { season => season.map { case (key, value) => s"$key: $value" }.mkString("\n") + "\n" + "-" * 10 // 10 dashes as a separator }.mkString("\n\n") // Add double line breaks between seasons } def main(args: Array[String]): Unit = { val apiUrl = "https://api.sportmonks.com/v3/football/seasons?api_token=API_Token" //replace with you API Token val jsonResponse = fetchJson(apiUrl) println(formatJsonWithoutBrackets(jsonResponse)) } }
is_current: false finished: true standings_recalculated_at: 2023-03-29 09:00:56 id: 1 games_in_current_week: false league_id: 66 ending_at: 2014-04-26 pending: false name: 2013/2014 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2013-08-17 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:07 id: 2 games_in_current_week: false league_id: 8 ending_at: 2011-05-22 pending: false name: 2010/2011 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2010-08-14 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:09 id: 3 games_in_current_week: false league_id: 8 ending_at: 2014-05-11 pending: false name: 2013/2014 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2013-08-17 ---------- is_current: false finished: true standings_recalculated_at: 2023-11-30 13:38:48 id: 6 games_in_current_week: false league_id: 8 ending_at: 2009-05-24 pending: false name: 2008/2009 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2008-08-16 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:13 id: 7 games_in_current_week: false league_id: 8 ending_at: 2013-05-19 pending: false name: 2012/2013 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2012-08-18 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:14 id: 8 games_in_current_week: false league_id: 8 ending_at: 2007-05-13 pending: false name: 2006/2007 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2006-08-19 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:16 id: 9 games_in_current_week: false league_id: 8 ending_at: 2012-05-13 pending: false name: 2011/2012 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2011-08-13 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:17 id: 10 games_in_current_week: false league_id: 8 ending_at: 2016-05-17 pending: false name: 2015/2016 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2015-08-08 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:19 id: 11 games_in_current_week: false league_id: 8 ending_at: 2010-05-09 pending: false name: 2009/2010 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2009-08-15 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:20 id: 12 games_in_current_week: false league_id: 8 ending_at: 2015-05-24 pending: false name: 2014/2015 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2014-08-16 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:21 id: 13 games_in_current_week: false league_id: 8 ending_at: 2017-05-21 pending: false name: 2016/2017 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2016-08-13 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:22 id: 14 games_in_current_week: false league_id: 8 ending_at: 2008-05-11 pending: false name: 2007/2008 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2007-08-11 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:24 id: 15 games_in_current_week: false league_id: 9 ending_at: 2006-05-20 pending: false name: 2005/2006 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2005-08-05 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:26 id: 16 games_in_current_week: false league_id: 9 ending_at: 2007-05-28 pending: false name: 2006/2007 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2006-08-05 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:28 id: 17 games_in_current_week: false league_id: 9 ending_at: 2008-05-24 pending: false name: 2007/2008 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2007-08-11 ---------- is_current: false finished: true standings_recalculated_at: 2024-03-04 14:58:46 id: 18 games_in_current_week: false league_id: 9 ending_at: 2009-05-25 pending: false name: 2008/2009 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2008-08-09 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:30 id: 19 games_in_current_week: false league_id: 9 ending_at: 2010-05-22 pending: false name: 2009/2010 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2009-08-07 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:32 id: 20 games_in_current_week: false league_id: 9 ending_at: 2011-05-30 pending: false name: 2010/2011 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2010-08-06 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:34 id: 21 games_in_current_week: false league_id: 9 ending_at: 2012-05-19 pending: false name: 2011/2012 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2011-08-05 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:29:22 id: 22 games_in_current_week: false league_id: 9 ending_at: 2013-05-27 pending: false name: 2012/2013 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2012-08-17 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:29:23 id: 23 games_in_current_week: false league_id: 9 ending_at: 2014-05-24 pending: false name: 2013/2014 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2013-08-03 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:29:25 id: 24 games_in_current_week: false league_id: 9 ending_at: 2015-05-25 pending: false name: 2014/2015 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2014-08-08 ---------- is_current: false finished: true standings_recalculated_at: 2023-11-30 13:39:47 id: 25 games_in_current_week: false league_id: 9 ending_at: 2016-05-28 pending: false name: 2015/2016 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2015-08-07 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:29:28 id: 26 games_in_current_week: false league_id: 9 ending_at: 2017-05-29 pending: false name: 2016/2017 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2016-08-05 ---------- is_current: false finished: true standings_recalculated_at: 2023-05-24 08:29:29 id: 27 games_in_current_week: false league_id: 12 ending_at: 2006-05-26 pending: false name: 2005/2006 tie_breaker_rule_id: 169 sport_id: 1 starting_at: 2005-08-05 ----------
Explanation.
The main method defines the API URL and calls fetchJson to retrieve the JSON.
In line 9, implicit val formats: Formats = DefaultFormats specifies the JSON format needed by json4s to parse JSON data. DefaultFormats is a standard configuration for parsing JSON in Scala.
The Fetching JSON Data (fetchJson method) method sends an HTTP GET request to the specified API URL.
If the response code is 200 OK, it reads the response line by line and combines it into a single JSON string. Otherwise, it returns an error message. The JSON string is then parsed, and the “data” array [the list of seasons] is displayed.
Each season is formatted with each key-value pair on its own line using map and mkString.
Chapter 3.2. Get Season by ID
Now that we are able to print out our response in a readable format, we will take the next step where we shall use an ID to retrieve the current season. Head over to the ID Finder on your dashboard for a list of IDs.
As shown in the image, we have selected the season ID for the Premier League.
If you are on a free plan, you may get the current season ID for the Danish SuperLiga or Scottish Premier League by using the League ID finder. Select Denmark or Scotland on the search bar.
Here’s our url: https://api.sportmonks.com/v3/football/seasons/SeasonID?api_token=API_Token
import java.io.{BufferedReader, InputStreamReader} import java.net.HttpURLConnection import java.net.URL import org.json4s._ import org.json4s.native.JsonMethods._ object Season_Filtered { // Specify the implicit formats with an explicit type implicit val formats: Formats = DefaultFormats // Method to send GET request and retrieve JSON response def fetchJson(url: String): String = { val connection = new URL(url).openConnection().asInstanceOf[HttpURLConnection] connection.setRequestMethod("GET") connection.setRequestProperty("Accept", "application/json") var reader: BufferedReader = null try { val responseCode = connection.getResponseCode if (responseCode == HttpURLConnection.HTTP_OK) { reader = new BufferedReader(new InputStreamReader(connection.getInputStream)) val response = new StringBuilder var line: String = null while ({ line = reader.readLine(); line != null }) { response.append(line) } response.toString() } else { s"Error: HTTP response code $responseCode" } } finally { if (reader != null) { reader.close() // Ensure the reader is closed } connection.disconnect() // Disconnect the connection } } // Method to format JSON response for a single object def formatJson(jsonString: String): String = { val json = parse(jsonString) // Extract the fields from the JSON object and format them on new lines val season = json \ "data" season.extract[Map[String, Any]] .map { case (key, value) => s"$key: $value" } .mkString("\n") } def main(args: Array[String]): Unit = { val apiUrl = "https://api.sportmonks.com/v3/football/seasons/23614?api_token=API_Token" //replace with your API Token val jsonResponse = fetchJson(apiUrl) println(formatJson(jsonResponse)) } }
is_current: true finished: false standings_recalculated_at: 2024-11-04 22:00:22 id: 23614 games_in_current_week: true league_id: 8 ending_at: 2025-05-25 pending: false name: 2024/2025 tie_breaker_rule_id: 171 sport_id: 1 starting_at: 2024-08-16
Explanation.
Rather than treating the JSON response as an array, we now assume it contains a single JSON object.
We extract the “data” field directly from the JSON response, which should be a single object in the formatJson method.
The fields of this object are extracted into a Map[String, Any], and each key-value pair is formatted onto a new line.
Chapter 4. USING INCLUDES.
In this final chapter, we shall demonstrate how to add some depth to our JSON response by using Includes. ‘Includes’ are a powerful tool built into Sportmonks’ Football API to allow for quick retrieval of additional data.
Chapter 4.1. Including Fixtures from any season.
Using an ‘include’ we shall display all the fixtures of the 2016/17 Premier League season using the season_id 13.
Here is our URL: https://api.sportmonks.com/v3/football/seasons/13?api_token=API_Token&include=fixtures
import java.io.{BufferedReader, InputStreamReader} import java.net.HttpURLConnection import java.net.URL import org.json4s._ import org.json4s.native.JsonMethods._ object Season_Include_Fixture { // Specify the implicit formats with an explicit type implicit val formats: Formats = DefaultFormats // Method to send GET request and retrieve JSON response def fetchJson(url: String): String = { val connection = new URL(url).openConnection().asInstanceOf[HttpURLConnection] connection.setRequestMethod("GET") connection.setRequestProperty("Accept", "application/json") var reader: BufferedReader = null try { val responseCode = connection.getResponseCode if (responseCode == HttpURLConnection.HTTP_OK) { reader = new BufferedReader(new InputStreamReader(connection.getInputStream)) val response = new StringBuilder var line: String = null while ({ line = reader.readLine(); line != null }) { response.append(line) } response.toString() } else { s"Error: HTTP response code $responseCode" } } finally { if (reader != null) { reader.close() // Ensure the reader is closed } connection.disconnect() // Disconnect the connection } } // Method to format JSON response for a single season with fixtures def formatJsonWithFixtures(jsonString: String): String = { val json = parse(jsonString) // Extract the main season data, excluding fixtures val season = (json \ "data").extract[Map[String, Any]] val seasonInfo = season.collect { case (key, value) if key != "fixtures" => s"$key: $value" }.mkString("\n") // Extract and format fixtures if they are available val fixturesInfo = (json \ "data" \ "fixtures").extractOpt[List[Map[String, Any]]] match { case Some(fixtures) => fixtures.map { fixture => fixture.map { case (key, value) => s"$key: $value" }.mkString("\n") }.mkString("\n\n" + "-" * 10 + "\n\n") // Separate fixtures with a line of dashes case None => "No fixtures available" } s"$seasonInfo\n\nFixtures:\n$fixturesInfo" } def main(args: Array[String]): Unit = { val apiUrl = "https://api.sportmonks.com/v3/football/seasons/13?api_token=API_Token&include=fixtures" val jsonResponse = fetchJson(apiUrl) println(formatJsonWithFixtures(jsonResponse)) } }
is_current: false finished: true standings_recalculated_at: 2023-05-24 08:28:21 id: 13 games_in_current_week: false league_id: 8 ending_at: 2017-05-21 pending: false name: 2016/2017 tie_breaker_rule_id: 1526 sport_id: 1 starting_at: 2016-08-13 Fixtures: result_info: Stoke City won after full-time. group_id: null name: Southampton vs Stoke City has_premium_odds: false venue_id: 167 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495375200 state_id: 5 sport_id: 1 starting_at: 2017-05-21 14:00:00 round_id: 748 id: 7629 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: Southampton vs Swansea City has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474204500 state_id: 5 sport_id: 1 starting_at: 2016-09-18 13:15:00 round_id: 258 id: 2666 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: Leicester City vs Hull City has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488639600 state_id: 5 sport_id: 1 starting_at: 2017-03-04 15:00:00 round_id: 653 id: 6596 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Arsenal has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493566200 state_id: 5 sport_id: 1 starting_at: 2017-04-30 15:30:00 round_id: 726 id: 7494 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs Manchester City has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1484487000 state_id: 5 sport_id: 1 starting_at: 2017-01-15 13:30:00 round_id: 594 id: 6029 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: AFC Bournemouth vs Hull City has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1476540000 state_id: 5 sport_id: 1 starting_at: 2016-10-15 14:00:00 round_id: 290 id: 2914 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: Leicester City vs Stoke City has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491055200 state_id: 5 sport_id: 1 starting_at: 2017-04-01 14:00:00 round_id: 681 id: 6935 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: West Ham United vs Chelsea has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488830400 state_id: 5 sport_id: 1 starting_at: 2017-03-06 20:00:00 round_id: 653 id: 6685 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Stoke City has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488115800 state_id: 5 sport_id: 1 starting_at: 2017-02-26 13:30:00 round_id: 645 id: 6552 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: Watford vs Sunderland has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491055200 state_id: 5 sport_id: 1 starting_at: 2017-04-01 14:00:00 round_id: 681 id: 6956 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Hull City vs Burnley has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488034800 state_id: 5 sport_id: 1 starting_at: 2017-02-25 15:00:00 round_id: 645 id: 6518 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Stoke City vs Liverpool has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491660000 state_id: 5 sport_id: 1 starting_at: 2017-04-08 14:00:00 round_id: 701 id: 7143 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Sunderland vs Swansea City has_premium_odds: false venue_id: 212 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494684000 state_id: 5 sport_id: 1 starting_at: 2017-05-13 14:00:00 round_id: 747 id: 7617 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Liverpool vs Manchester United has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1476730800 state_id: 5 sport_id: 1 starting_at: 2016-10-17 19:00:00 round_id: 290 id: 3004 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: AFC Bournemouth vs Everton has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474725600 state_id: 5 sport_id: 1 starting_at: 2016-09-24 14:00:00 round_id: 269 id: 2698 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester United vs Hull City has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485979200 state_id: 5 sport_id: 1 starting_at: 2017-02-01 20:00:00 round_id: 613 id: 6247 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Arsenal vs Middlesbrough has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477144800 state_id: 5 sport_id: 1 starting_at: 2016-10-22 14:00:00 round_id: 302 id: 3023 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Manchester United has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477234800 state_id: 5 sport_id: 1 starting_at: 2016-10-23 15:00:00 round_id: 302 id: 3106 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Arsenal vs Tottenham Hotspur has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1478433600 state_id: 5 sport_id: 1 starting_at: 2016-11-06 12:00:00 round_id: 322 id: 4403 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Crystal Palace vs Chelsea has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481977800 state_id: 5 sport_id: 1 starting_at: 2016-12-17 12:30:00 round_id: 553 id: 5506 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester United vs West Ham United has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480264200 state_id: 5 sport_id: 1 starting_at: 2016-11-27 16:30:00 round_id: 482 id: 5032 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: West Ham United vs Arsenal has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480786200 state_id: 5 sport_id: 1 starting_at: 2016-12-03 17:30:00 round_id: 510 id: 5249 stage_id: 11 leg: 1/1 ---------- result_info: Middlesbrough won after full-time. group_id: null name: Middlesbrough vs Swansea City has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481986800 state_id: 5 sport_id: 1 starting_at: 2016-12-17 15:00:00 round_id: 553 id: 5516 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs Arsenal has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481658300 state_id: 5 sport_id: 1 starting_at: 2016-12-13 19:45:00 round_id: 541 id: 5412 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: AFC Bournemouth vs Arsenal has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483472700 state_id: 5 sport_id: 1 starting_at: 2017-01-03 19:45:00 round_id: 582 id: 5898 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Hull City vs Everton has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483128000 state_id: 5 sport_id: 1 starting_at: 2016-12-30 20:00:00 round_id: 573 id: 5726 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Sunderland vs Liverpool has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483369200 state_id: 5 sport_id: 1 starting_at: 2017-01-02 15:00:00 round_id: 582 id: 5863 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Crystal Palace vs Everton has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485010800 state_id: 5 sport_id: 1 starting_at: 2017-01-21 15:00:00 round_id: 603 id: 6073 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Sunderland vs Tottenham Hotspur has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485891900 state_id: 5 sport_id: 1 starting_at: 2017-01-31 19:45:00 round_id: 613 id: 6206 stage_id: 11 leg: 1/1 ---------- result_info: Hull City won after full-time. group_id: null name: Hull City vs Liverpool has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486220400 state_id: 5 sport_id: 1 starting_at: 2017-02-04 15:00:00 round_id: 623 id: 6304 stage_id: 11 leg: 1/1 ---------- result_info: Stoke City won after full-time. group_id: null name: Stoke City vs Crystal Palace has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486825200 state_id: 5 sport_id: 1 starting_at: 2017-02-11 15:00:00 round_id: 634 id: 6411 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: Watford vs Burnley has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486220400 state_id: 5 sport_id: 1 starting_at: 2017-02-04 15:00:00 round_id: 623 id: 6323 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Southampton vs Arsenal has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494441900 state_id: 5 sport_id: 1 starting_at: 2017-05-10 18:45:00 round_id: 645 id: 6585 stage_id: 11 leg: 1/1 ---------- result_info: Stoke City won after full-time. group_id: null name: Stoke City vs Middlesbrough has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488639600 state_id: 5 sport_id: 1 starting_at: 2017-03-04 15:00:00 round_id: 653 id: 6607 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs Hull City has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489849200 state_id: 5 sport_id: 1 starting_at: 2017-03-18 15:00:00 round_id: 672 id: 6805 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: AFC Bournemouth vs West Ham United has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489244400 state_id: 5 sport_id: 1 starting_at: 2017-03-11 15:00:00 round_id: 663 id: 6706 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Middlesbrough vs Manchester United has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489924800 state_id: 5 sport_id: 1 starting_at: 2017-03-19 12:00:00 round_id: 672 id: 6860 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Everton has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491046200 state_id: 5 sport_id: 1 starting_at: 2017-04-01 11:30:00 round_id: 681 id: 6893 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: Watford vs West Bromwich Albion has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491331500 state_id: 5 sport_id: 1 starting_at: 2017-04-04 18:45:00 round_id: 692 id: 7019 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs Leicester City has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491750000 state_id: 5 sport_id: 1 starting_at: 2017-04-09 15:00:00 round_id: 701 id: 7198 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Crystal Palace vs Leicester City has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492264800 state_id: 5 sport_id: 1 starting_at: 2017-04-15 14:00:00 round_id: 710 id: 7230 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Swansea City vs Stoke City has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492869600 state_id: 5 sport_id: 1 starting_at: 2017-04-22 14:00:00 round_id: 721 id: 7350 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: West Ham United vs Everton has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492869600 state_id: 5 sport_id: 1 starting_at: 2017-04-22 14:00:00 round_id: 721 id: 7360 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Southampton has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493145900 state_id: 5 sport_id: 1 starting_at: 2017-04-25 18:45:00 round_id: 721 id: 7392 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Stoke City vs Arsenal has_premium_odds: false venue_id: 207 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494693000 state_id: 5 sport_id: 1 starting_at: 2017-05-13 16:30:00 round_id: 747 id: 7618 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs Crystal Palace has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494070200 state_id: 5 sport_id: 1 starting_at: 2017-05-06 11:30:00 round_id: 737 id: 7527 stage_id: 11 leg: 1/1 ---------- result_info: Sunderland won after full-time. group_id: null name: Hull City vs Sunderland has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494079200 state_id: 5 sport_id: 1 starting_at: 2017-05-06 14:00:00 round_id: 737 id: 7560 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Hull City vs Manchester United has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1472315400 state_id: 5 sport_id: 1 starting_at: 2016-08-27 16:30:00 round_id: 238 id: 2449 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs Stoke City has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1472306400 state_id: 5 sport_id: 1 starting_at: 2016-08-27 14:00:00 round_id: 238 id: 2411 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs AFC Bournemouth has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482764400 state_id: 5 sport_id: 1 starting_at: 2016-12-26 15:00:00 round_id: 562 id: 5645 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: West Ham United vs Middlesbrough has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1475330400 state_id: 5 sport_id: 1 starting_at: 2016-10-01 14:00:00 round_id: 279 id: 2852 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: AFC Bournemouth vs Manchester United has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471177800 state_id: 5 sport_id: 1 starting_at: 2016-08-14 12:30:00 round_id: 219 id: 2254 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Hull City has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474725600 state_id: 5 sport_id: 1 starting_at: 2016-09-24 14:00:00 round_id: 269 id: 2710 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Chelsea has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474734600 state_id: 5 sport_id: 1 starting_at: 2016-09-24 16:30:00 round_id: 269 id: 2767 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: Southampton vs West Bromwich Albion has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483196400 state_id: 5 sport_id: 1 starting_at: 2016-12-31 15:00:00 round_id: 573 id: 5775 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Swansea City vs Watford has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477144800 state_id: 5 sport_id: 1 starting_at: 2016-10-22 14:00:00 round_id: 302 id: 3065 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Hull City vs Crystal Palace has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481382000 state_id: 5 sport_id: 1 starting_at: 2016-12-10 15:00:00 round_id: 528 id: 5323 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester United vs Manchester City has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1473507000 state_id: 5 sport_id: 1 starting_at: 2016-09-10 11:30:00 round_id: 247 id: 2476 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Leicester City vs Southampton has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1475414100 state_id: 5 sport_id: 1 starting_at: 2016-10-02 13:15:00 round_id: 279 id: 2874 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Southampton vs Manchester City has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492273800 state_id: 5 sport_id: 1 starting_at: 2017-04-15 16:30:00 round_id: 710 id: 7286 stage_id: 11 leg: 1/1 ---------- result_info: Stoke City won after full-time. group_id: null name: Hull City vs Stoke City has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477144800 state_id: 5 sport_id: 1 starting_at: 2016-10-22 14:00:00 round_id: 302 id: 3044 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Liverpool vs West Ham United has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481473800 state_id: 5 sport_id: 1 starting_at: 2016-12-11 16:30:00 round_id: 528 id: 5389 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Manchester United vs Leicester City has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474716600 state_id: 5 sport_id: 1 starting_at: 2016-09-24 11:30:00 round_id: 269 id: 2688 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Swansea City has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1476540000 state_id: 5 sport_id: 1 starting_at: 2016-10-15 14:00:00 round_id: 290 id: 2928 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Burnley vs AFC Bournemouth has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481382000 state_id: 5 sport_id: 1 starting_at: 2016-12-10 15:00:00 round_id: 528 id: 5312 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Everton vs Crystal Palace has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1475262000 state_id: 5 sport_id: 1 starting_at: 2016-09-30 19:00:00 round_id: 279 id: 2799 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: West Bromwich Albion vs Tottenham Hotspur has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1476540000 state_id: 5 sport_id: 1 starting_at: 2016-10-15 14:00:00 round_id: 290 id: 2959 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs AFC Bournemouth has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474120800 state_id: 5 sport_id: 1 starting_at: 2016-09-17 14:00:00 round_id: 258 id: 2610 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs Leicester City has_premium_odds: false venue_id: null placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494675000 state_id: 5 sport_id: 1 starting_at: 2017-05-13 11:30:00 round_id: 747 id: 7614 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs West Bromwich Albion has_premium_odds: false venue_id: null placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494961200 state_id: 5 sport_id: 1 starting_at: 2017-05-16 19:00:00 round_id: 721 id: 7405 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs Burnley has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483369200 state_id: 5 sport_id: 1 starting_at: 2017-01-02 15:00:00 round_id: 582 id: 5853 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs Arsenal has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482076800 state_id: 5 sport_id: 1 starting_at: 2016-12-18 16:00:00 round_id: 553 id: 5583 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs Watford has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481745600 state_id: 5 sport_id: 1 starting_at: 2016-12-14 20:00:00 round_id: 541 id: 5474 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester City vs Everton has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1476540000 state_id: 5 sport_id: 1 starting_at: 2016-10-15 14:00:00 round_id: 290 id: 2939 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs Sunderland has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471105800 state_id: 5 sport_id: 1 starting_at: 2016-08-13 16:30:00 round_id: 219 id: 2244 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: AFC Bournemouth vs Leicester City has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481658300 state_id: 5 sport_id: 1 starting_at: 2016-12-13 19:45:00 round_id: 541 id: 5399 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Burnley vs Watford has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474916400 state_id: 5 sport_id: 1 starting_at: 2016-09-26 19:00:00 round_id: 269 id: 2787 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: Crystal Palace vs West Ham United has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1476549000 state_id: 5 sport_id: 1 starting_at: 2016-10-15 16:30:00 round_id: 290 id: 2971 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Burnley vs Sunderland has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483196400 state_id: 5 sport_id: 1 starting_at: 2016-12-31 15:00:00 round_id: 573 id: 5736 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: Sunderland vs Southampton has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486825200 state_id: 5 sport_id: 1 starting_at: 2017-02-11 15:00:00 round_id: 634 id: 6419 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs Swansea City has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486301400 state_id: 5 sport_id: 1 starting_at: 2017-02-05 13:30:00 round_id: 623 id: 6356 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Burnley has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489334400 state_id: 5 sport_id: 1 starting_at: 2017-03-12 16:00:00 round_id: 663 id: 6739 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Swansea City vs Tottenham Hotspur has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491417900 state_id: 5 sport_id: 1 starting_at: 2017-04-05 18:45:00 round_id: 692 id: 7063 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Manchester United has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494169200 state_id: 5 sport_id: 1 starting_at: 2017-05-07 15:00:00 round_id: 737 id: 7600 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Hull City vs Chelsea has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1475330400 state_id: 5 sport_id: 1 starting_at: 2016-10-01 14:00:00 round_id: 279 id: 2820 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Tottenham Hotspur vs Leicester City has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477749600 state_id: 5 sport_id: 1 starting_at: 2016-10-29 14:00:00 round_id: 312 id: 3152 stage_id: 11 leg: 1/1 ---------- result_info: Hull City won after full-time. group_id: null name: Swansea City vs Hull City has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471701600 state_id: 5 sport_id: 1 starting_at: 2016-08-20 14:00:00 round_id: 229 id: 2306 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: Leicester City vs Swansea City has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1472306400 state_id: 5 sport_id: 1 starting_at: 2016-08-27 14:00:00 round_id: 238 id: 2420 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Swansea City vs Liverpool has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1475321400 state_id: 5 sport_id: 1 starting_at: 2016-10-01 11:30:00 round_id: 279 id: 2809 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: AFC Bournemouth vs Tottenham Hotspur has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477135800 state_id: 5 sport_id: 1 starting_at: 2016-10-22 11:30:00 round_id: 302 id: 3014 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs West Bromwich Albion has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477153800 state_id: 5 sport_id: 1 starting_at: 2016-10-22 16:30:00 round_id: 302 id: 3085 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Everton vs Liverpool has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482177600 state_id: 5 sport_id: 1 starting_at: 2016-12-19 20:00:00 round_id: 553 id: 5603 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Everton has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1478367000 state_id: 5 sport_id: 1 starting_at: 2016-11-05 17:30:00 round_id: 322 id: 4380 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Watford has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1478441700 state_id: 5 sport_id: 1 starting_at: 2016-11-06 14:15:00 round_id: 322 id: 4453 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Leicester City vs Middlesbrough has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480172400 state_id: 5 sport_id: 1 starting_at: 2016-11-26 15:00:00 round_id: 482 id: 4857 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Middlesbrough vs Chelsea has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1479657600 state_id: 5 sport_id: 1 starting_at: 2016-11-20 16:00:00 round_id: 454 id: 4751 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Tottenham Hotspur has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480181400 state_id: 5 sport_id: 1 starting_at: 2016-11-26 17:30:00 round_id: 482 id: 4948 stage_id: 11 leg: 1/1 ---------- result_info: Hull City won after full-time. group_id: null name: Hull City vs AFC Bournemouth has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1484406000 state_id: 5 sport_id: 1 starting_at: 2017-01-14 15:00:00 round_id: 594 id: 5964 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Stoke City has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482858900 state_id: 5 sport_id: 1 starting_at: 2016-12-27 17:15:00 round_id: 562 id: 5704 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: West Ham United vs Hull City has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481986800 state_id: 5 sport_id: 1 starting_at: 2016-12-17 15:00:00 round_id: 553 id: 5548 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Burnley vs Middlesbrough has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482764400 state_id: 5 sport_id: 1 starting_at: 2016-12-26 15:00:00 round_id: 562 id: 5636 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Southampton vs Tottenham Hotspur has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482954300 state_id: 5 sport_id: 1 starting_at: 2016-12-28 19:45:00 round_id: 562 id: 5714 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Arsenal vs Manchester City has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491145200 state_id: 5 sport_id: 1 starting_at: 2017-04-02 15:00:00 round_id: 681 id: 6985 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: West Ham United vs Crystal Palace has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1484406000 state_id: 5 sport_id: 1 starting_at: 2017-01-14 15:00:00 round_id: 594 id: 6008 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Liverpool vs Swansea City has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485001800 state_id: 5 sport_id: 1 starting_at: 2017-01-21 12:30:00 round_id: 603 id: 6049 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Middlesbrough has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486229400 state_id: 5 sport_id: 1 starting_at: 2017-02-04 17:30:00 round_id: 623 id: 6346 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: Leicester City vs Liverpool has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488225600 state_id: 5 sport_id: 1 starting_at: 2017-02-27 20:00:00 round_id: 645 id: 6563 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: Crystal Palace vs Arsenal has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491850800 state_id: 5 sport_id: 1 starting_at: 2017-04-10 19:00:00 round_id: 701 id: 7208 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: Sunderland vs AFC Bournemouth has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493474400 state_id: 5 sport_id: 1 starting_at: 2017-04-29 14:00:00 round_id: 726 id: 7427 stage_id: 11 leg: 1/1 ---------- result_info: Stoke City won after full-time. group_id: null name: Stoke City vs Watford has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483473600 state_id: 5 sport_id: 1 starting_at: 2017-01-03 20:00:00 round_id: 582 id: 5921 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Middlesbrough vs West Bromwich Albion has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485891900 state_id: 5 sport_id: 1 starting_at: 2017-01-31 19:45:00 round_id: 613 id: 6195 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Chelsea has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483560000 state_id: 5 sport_id: 1 starting_at: 2017-01-04 20:00:00 round_id: 582 id: 5932 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Hull City vs Arsenal has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474120800 state_id: 5 sport_id: 1 starting_at: 2016-09-17 14:00:00 round_id: 258 id: 2589 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Everton vs Manchester United has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480867200 state_id: 5 sport_id: 1 starting_at: 2016-12-04 16:00:00 round_id: 510 id: 5269 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs West Ham United has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477834200 state_id: 5 sport_id: 1 starting_at: 2016-10-30 13:30:00 round_id: 312 id: 3195 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Leicester City vs Arsenal has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471710600 state_id: 5 sport_id: 1 starting_at: 2016-08-20 16:30:00 round_id: 229 id: 2353 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Everton vs Tottenham Hotspur has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471096800 state_id: 5 sport_id: 1 starting_at: 2016-08-13 14:00:00 round_id: 219 id: 2216 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: Leicester City vs Burnley has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474120800 state_id: 5 sport_id: 1 starting_at: 2016-09-17 14:00:00 round_id: 258 id: 2600 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: AFC Bournemouth vs Stoke City has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494079200 state_id: 5 sport_id: 1 starting_at: 2017-05-06 14:00:00 round_id: 737 id: 7537 stage_id: 11 leg: 1/1 ---------- result_info: Stoke City won after full-time. group_id: null name: Watford vs Stoke City has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480248000 state_id: 5 sport_id: 1 starting_at: 2016-11-27 12:00:00 round_id: 482 id: 4979 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Swansea City vs Arsenal has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1484406000 state_id: 5 sport_id: 1 starting_at: 2017-01-14 15:00:00 round_id: 594 id: 5986 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Hull City vs Manchester City has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482772500 state_id: 5 sport_id: 1 starting_at: 2016-12-26 17:15:00 round_id: 562 id: 5693 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Leicester City has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493232300 state_id: 5 sport_id: 1 starting_at: 2017-04-26 18:45:00 round_id: 663 id: 6750 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: Southampton vs West Ham United has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486220400 state_id: 5 sport_id: 1 starting_at: 2017-02-04 15:00:00 round_id: 623 id: 6313 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Hull City vs Tottenham Hotspur has_premium_odds: false venue_id: 199 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495375200 state_id: 5 sport_id: 1 starting_at: 2017-05-21 14:00:00 round_id: 748 id: 7625 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Watford has_premium_odds: false venue_id: 321614 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494874800 state_id: 5 sport_id: 1 starting_at: 2017-05-15 19:00:00 round_id: 663 id: 6781 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: West Bromwich Albion vs AFC Bournemouth has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488034800 state_id: 5 sport_id: 1 starting_at: 2017-02-25 15:00:00 round_id: 645 id: 6530 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: Leicester City vs West Ham United has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483196400 state_id: 5 sport_id: 1 starting_at: 2016-12-31 15:00:00 round_id: 573 id: 5756 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: Sunderland vs Crystal Palace has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474725600 state_id: 5 sport_id: 1 starting_at: 2016-09-24 14:00:00 round_id: 269 id: 2744 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs AFC Bournemouth has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486220400 state_id: 5 sport_id: 1 starting_at: 2017-02-04 15:00:00 round_id: 623 id: 6291 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester United vs AFC Bournemouth has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488630600 state_id: 5 sport_id: 1 starting_at: 2017-03-04 12:30:00 round_id: 653 id: 6586 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Leicester City vs AFC Bournemouth has_premium_odds: false venue_id: 117 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495375200 state_id: 5 sport_id: 1 starting_at: 2017-05-21 14:00:00 round_id: 748 id: 7626 stage_id: 11 leg: 1/1 ---------- result_info: Sunderland won after full-time. group_id: null name: Sunderland vs Watford has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481986800 state_id: 5 sport_id: 1 starting_at: 2016-12-17 15:00:00 round_id: 553 id: 5538 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Watford vs Arsenal has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1472306400 state_id: 5 sport_id: 1 starting_at: 2016-08-27 14:00:00 round_id: 238 id: 2438 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: Leicester City vs Sunderland has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491331500 state_id: 5 sport_id: 1 starting_at: 2017-04-04 18:45:00 round_id: 692 id: 7007 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: West Bromwich Albion vs Chelsea has_premium_odds: false venue_id: 119 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494615600 state_id: 5 sport_id: 1 starting_at: 2017-05-12 19:00:00 round_id: 747 id: 7613 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Arsenal vs Liverpool has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471186800 state_id: 5 sport_id: 1 starting_at: 2016-08-14 15:00:00 round_id: 219 id: 2263 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: West Bromwich Albion vs Swansea City has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481745600 state_id: 5 sport_id: 1 starting_at: 2016-12-14 20:00:00 round_id: 541 id: 5464 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Stoke City vs Manchester United has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485010800 state_id: 5 sport_id: 1 starting_at: 2017-01-21 15:00:00 round_id: 603 id: 6093 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Burnley vs Hull City has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1473516000 state_id: 5 sport_id: 1 starting_at: 2016-09-10 14:00:00 round_id: 247 id: 2505 stage_id: 11 leg: 1/1 ---------- result_info: Middlesbrough won after full-time. group_id: null name: Middlesbrough vs Hull City has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480968000 state_id: 5 sport_id: 1 starting_at: 2016-12-05 20:00:00 round_id: 510 id: 5279 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: West Ham United vs Sunderland has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477144800 state_id: 5 sport_id: 1 starting_at: 2016-10-22 14:00:00 round_id: 302 id: 3075 stage_id: 11 leg: 1/1 ---------- result_info: Sunderland won after full-time. group_id: null name: AFC Bournemouth vs Sunderland has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1478358000 state_id: 5 sport_id: 1 starting_at: 2016-11-05 15:00:00 round_id: 322 id: 3227 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Swansea City vs Sunderland has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481382000 state_id: 5 sport_id: 1 starting_at: 2016-12-10 15:00:00 round_id: 528 id: 5335 stage_id: 11 leg: 1/1 ---------- result_info: Hull City won after full-time. group_id: null name: Hull City vs Southampton has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1478441700 state_id: 5 sport_id: 1 starting_at: 2016-11-06 14:15:00 round_id: 322 id: 4427 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Southampton vs Liverpool has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1479567600 state_id: 5 sport_id: 1 starting_at: 2016-11-19 15:00:00 round_id: 454 id: 4612 stage_id: 11 leg: 1/1 ---------- result_info: Sunderland won after full-time. group_id: null name: Sunderland vs Hull City has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1479567600 state_id: 5 sport_id: 1 starting_at: 2016-11-19 15:00:00 round_id: 454 id: 4668 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: West Ham United vs Burnley has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481744700 state_id: 5 sport_id: 1 starting_at: 2016-12-14 19:45:00 round_id: 541 id: 5442 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: Southampton vs Leicester City has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485086400 state_id: 5 sport_id: 1 starting_at: 2017-01-22 12:00:00 round_id: 603 id: 6126 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Tottenham Hotspur has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486834200 state_id: 5 sport_id: 1 starting_at: 2017-02-11 17:30:00 round_id: 634 id: 6442 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester United vs West Bromwich Albion has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491055200 state_id: 5 sport_id: 1 starting_at: 2017-04-01 14:00:00 round_id: 681 id: 6945 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Middlesbrough has_premium_odds: false venue_id: 230 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495375200 state_id: 5 sport_id: 1 starting_at: 2017-05-21 14:00:00 round_id: 748 id: 7627 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs Watford has_premium_odds: false venue_id: 12 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494614700 state_id: 5 sport_id: 1 starting_at: 2017-05-12 18:45:00 round_id: 747 id: 7612 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Liverpool vs Southampton has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494160200 state_id: 5 sport_id: 1 starting_at: 2017-05-07 12:30:00 round_id: 737 id: 7591 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Swansea City vs Everton has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494088200 state_id: 5 sport_id: 1 starting_at: 2017-05-06 16:30:00 round_id: 737 id: 7581 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: West Ham United vs Tottenham Hotspur has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494010800 state_id: 5 sport_id: 1 starting_at: 2017-05-05 19:00:00 round_id: 737 id: 7515 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: West Bromwich Albion vs Leicester City has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493474400 state_id: 5 sport_id: 1 starting_at: 2017-04-29 14:00:00 round_id: 726 id: 7443 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Middlesbrough vs Burnley has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491660000 state_id: 5 sport_id: 1 starting_at: 2017-04-08 14:00:00 round_id: 701 id: 7131 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: AFC Bournemouth vs Swansea City has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489858200 state_id: 5 sport_id: 1 starting_at: 2017-03-18 17:30:00 round_id: 672 id: 6849 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Stoke City vs Chelsea has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489849200 state_id: 5 sport_id: 1 starting_at: 2017-03-18 15:00:00 round_id: 672 id: 6816 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Sunderland vs Burnley has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489849200 state_id: 5 sport_id: 1 starting_at: 2017-03-18 15:00:00 round_id: 672 id: 6827 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: West Bromwich Albion vs Arsenal has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489840200 state_id: 5 sport_id: 1 starting_at: 2017-03-18 12:30:00 round_id: 672 id: 6783 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs Sunderland has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488034800 state_id: 5 sport_id: 1 starting_at: 2017-02-25 15:00:00 round_id: 645 id: 6508 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: AFC Bournemouth vs Manchester City has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1487016000 state_id: 5 sport_id: 1 starting_at: 2017-02-13 20:00:00 round_id: 634 id: 6475 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Burnley has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485094500 state_id: 5 sport_id: 1 starting_at: 2017-01-22 14:15:00 round_id: 603 id: 6137 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs West Bromwich Albion has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1484397000 state_id: 5 sport_id: 1 starting_at: 2017-01-14 12:30:00 round_id: 594 id: 5942 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Manchester United vs Middlesbrough has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483196400 state_id: 5 sport_id: 1 starting_at: 2016-12-31 15:00:00 round_id: 573 id: 5766 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Stoke City vs Leicester City has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481986800 state_id: 5 sport_id: 1 starting_at: 2016-12-17 15:00:00 round_id: 553 id: 5526 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: Watford vs Manchester United has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474196400 state_id: 5 sport_id: 1 starting_at: 2016-09-18 11:00:00 round_id: 258 id: 2645 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: Watford vs Leicester City has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1479567600 state_id: 5 sport_id: 1 starting_at: 2016-11-19 15:00:00 round_id: 454 id: 4693 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: Leicester City vs West Bromwich Albion has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1478449800 state_id: 5 sport_id: 1 starting_at: 2016-11-06 16:30:00 round_id: 322 id: 4507 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester City vs Middlesbrough has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1478358000 state_id: 5 sport_id: 1 starting_at: 2016-11-05 15:00:00 round_id: 322 id: 3698 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Sunderland vs Arsenal has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477740600 state_id: 5 sport_id: 1 starting_at: 2016-10-29 11:30:00 round_id: 312 id: 3119 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: AFC Bournemouth vs West Bromwich Albion has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1473516000 state_id: 5 sport_id: 1 starting_at: 2016-09-10 14:00:00 round_id: 247 id: 2486 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: West Bromwich Albion vs Middlesbrough has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1472387400 state_id: 5 sport_id: 1 starting_at: 2016-08-28 12:30:00 round_id: 238 id: 2458 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs West Ham United has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1472396400 state_id: 5 sport_id: 1 starting_at: 2016-08-28 15:00:00 round_id: 238 id: 2467 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Watford vs Manchester City has_premium_odds: false venue_id: 339729 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495375200 state_id: 5 sport_id: 1 starting_at: 2017-05-21 14:00:00 round_id: 748 id: 7631 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Watford vs Crystal Palace has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482755400 state_id: 5 sport_id: 1 starting_at: 2016-12-26 12:30:00 round_id: 562 id: 5615 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: Watford vs Hull City has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477749600 state_id: 5 sport_id: 1 starting_at: 2016-10-29 14:00:00 round_id: 312 id: 3162 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Watford vs AFC Bournemouth has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1475330400 state_id: 5 sport_id: 1 starting_at: 2016-10-01 14:00:00 round_id: 279 id: 2842 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Watford vs Middlesbrough has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1484406000 state_id: 5 sport_id: 1 starting_at: 2017-01-14 15:00:00 round_id: 594 id: 5998 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Watford vs Tottenham Hotspur has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483277400 state_id: 5 sport_id: 1 starting_at: 2017-01-01 13:30:00 round_id: 573 id: 5809 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Sunderland has_premium_odds: false venue_id: 321614 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495375200 state_id: 5 sport_id: 1 starting_at: 2017-05-21 14:00:00 round_id: 748 id: 7624 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Everton has_premium_odds: false venue_id: 204 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495375200 state_id: 5 sport_id: 1 starting_at: 2017-05-21 14:00:00 round_id: 748 id: 7622 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: Leicester City vs Watford has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494079200 state_id: 5 sport_id: 1 starting_at: 2017-05-06 14:00:00 round_id: 737 id: 7571 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: West Ham United vs Liverpool has_premium_odds: false venue_id: 214 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494767700 state_id: 5 sport_id: 1 starting_at: 2017-05-14 13:15:00 round_id: 747 id: 7620 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: Middlesbrough vs Southampton has_premium_odds: false venue_id: 203 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494684000 state_id: 5 sport_id: 1 starting_at: 2017-05-13 14:00:00 round_id: 747 id: 7616 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: Crystal Palace vs Hull City has_premium_odds: false venue_id: 201 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494759600 state_id: 5 sport_id: 1 starting_at: 2017-05-14 11:00:00 round_id: 747 id: 7619 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Southampton vs Hull City has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493474400 state_id: 5 sport_id: 1 starting_at: 2017-04-29 14:00:00 round_id: 726 id: 7407 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Crystal Palace vs Burnley has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493483400 state_id: 5 sport_id: 1 starting_at: 2017-04-29 16:30:00 round_id: 726 id: 7453 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Sunderland vs Manchester United has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491741000 state_id: 5 sport_id: 1 starting_at: 2017-04-09 12:30:00 round_id: 701 id: 7186 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: Watford vs Swansea City has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492264800 state_id: 5 sport_id: 1 starting_at: 2017-04-15 14:00:00 round_id: 710 id: 7275 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Stoke City vs West Ham United has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493474400 state_id: 5 sport_id: 1 starting_at: 2017-04-29 14:00:00 round_id: 726 id: 7418 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Leicester City vs Tottenham Hotspur has_premium_odds: false venue_id: 117 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495133100 state_id: 5 sport_id: 1 starting_at: 2017-05-18 18:45:00 round_id: 721 id: 7406 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: AFC Bournemouth vs Middlesbrough has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492869600 state_id: 5 sport_id: 1 starting_at: 2017-04-22 14:00:00 round_id: 721 id: 7330 stage_id: 11 leg: 1/1 ---------- result_info: Hull City won after full-time. group_id: null name: Hull City vs Watford has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492869600 state_id: 5 sport_id: 1 starting_at: 2017-04-22 14:00:00 round_id: 721 id: 7340 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Middlesbrough vs Arsenal has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492455600 state_id: 5 sport_id: 1 starting_at: 2017-04-17 19:00:00 round_id: 710 id: 7318 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs Burnley has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492264800 state_id: 5 sport_id: 1 starting_at: 2017-04-15 14:00:00 round_id: 710 id: 7241 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: West Ham United vs Swansea City has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491660000 state_id: 5 sport_id: 1 starting_at: 2017-04-08 14:00:00 round_id: 701 id: 7164 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Manchester City vs Hull City has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491660000 state_id: 5 sport_id: 1 starting_at: 2017-04-08 14:00:00 round_id: 701 id: 7119 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: Southampton vs Crystal Palace has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491417900 state_id: 5 sport_id: 1 starting_at: 2017-04-05 18:45:00 round_id: 692 id: 7076 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs West Ham United has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491417900 state_id: 5 sport_id: 1 starting_at: 2017-04-05 18:45:00 round_id: 692 id: 7042 stage_id: 11 leg: 1/1 ---------- result_info: Hull City won after full-time. group_id: null name: Hull City vs Middlesbrough has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491417900 state_id: 5 sport_id: 1 starting_at: 2017-04-05 18:45:00 round_id: 692 id: 7052 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Burnley vs Tottenham Hotspur has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491055200 state_id: 5 sport_id: 1 starting_at: 2017-04-01 14:00:00 round_id: 681 id: 6905 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: West Ham United vs Leicester City has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489849200 state_id: 5 sport_id: 1 starting_at: 2017-03-18 15:00:00 round_id: 672 id: 6837 stage_id: 11 leg: 1/1 ---------- result_info: Hull City won after full-time. group_id: null name: Hull City vs Swansea City has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489244400 state_id: 5 sport_id: 1 starting_at: 2017-03-11 15:00:00 round_id: 663 id: 6729 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester City vs Manchester United has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493319600 state_id: 5 sport_id: 1 starting_at: 2017-04-27 19:00:00 round_id: 645 id: 6574 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: Watford vs Southampton has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488639600 state_id: 5 sport_id: 1 starting_at: 2017-03-04 15:00:00 round_id: 653 id: 6629 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: Crystal Palace vs Middlesbrough has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488034800 state_id: 5 sport_id: 1 starting_at: 2017-02-25 15:00:00 round_id: 645 id: 6497 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Hull City has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486816200 state_id: 5 sport_id: 1 starting_at: 2017-02-11 12:30:00 round_id: 634 id: 6377 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Leicester City vs Chelsea has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1484415000 state_id: 5 sport_id: 1 starting_at: 2017-01-14 17:30:00 round_id: 594 id: 6018 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Hull City has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485102600 state_id: 5 sport_id: 1 starting_at: 2017-01-22 16:30:00 round_id: 603 id: 6151 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Stoke City vs Everton has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485979200 state_id: 5 sport_id: 1 starting_at: 2017-02-01 20:00:00 round_id: 613 id: 6256 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: AFC Bournemouth vs Crystal Palace has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485891900 state_id: 5 sport_id: 1 starting_at: 2017-01-31 19:45:00 round_id: 613 id: 6161 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: West Bromwich Albion vs Sunderland has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485010800 state_id: 5 sport_id: 1 starting_at: 2017-01-21 15:00:00 round_id: 603 id: 6105 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester City vs Tottenham Hotspur has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485019800 state_id: 5 sport_id: 1 starting_at: 2017-01-21 17:30:00 round_id: 603 id: 6115 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester United vs Liverpool has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1484496000 state_id: 5 sport_id: 1 starting_at: 2017-01-15 16:00:00 round_id: 594 id: 6039 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Crystal Palace vs Swansea City has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483473600 state_id: 5 sport_id: 1 starting_at: 2017-01-03 20:00:00 round_id: 582 id: 5910 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Crystal Palace has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483286400 state_id: 5 sport_id: 1 starting_at: 2017-01-01 16:00:00 round_id: 573 id: 5820 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs West Bromwich Albion has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482764400 state_id: 5 sport_id: 1 starting_at: 2016-12-26 15:00:00 round_id: 562 id: 5627 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Burnley has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482076800 state_id: 5 sport_id: 1 starting_at: 2016-12-18 16:00:00 round_id: 553 id: 5592 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Stoke City vs Southampton has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481745600 state_id: 5 sport_id: 1 starting_at: 2016-12-14 20:00:00 round_id: 541 id: 5485 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: AFC Bournemouth vs Southampton has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482067800 state_id: 5 sport_id: 1 starting_at: 2016-12-18 13:30:00 round_id: 553 id: 5569 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Hull City has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481745600 state_id: 5 sport_id: 1 starting_at: 2016-12-14 20:00:00 round_id: 541 id: 5494 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: Southampton vs Middlesbrough has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481465700 state_id: 5 sport_id: 1 starting_at: 2016-12-11 14:15:00 round_id: 528 id: 5379 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: Leicester City vs Manchester City has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481391000 state_id: 5 sport_id: 1 starting_at: 2016-12-10 17:30:00 round_id: 528 id: 5346 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: West Bromwich Albion vs Watford has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480777200 state_id: 5 sport_id: 1 starting_at: 2016-12-03 15:00:00 round_id: 510 id: 5223 stage_id: 11 leg: 1/1 ---------- result_info: Stoke City won after full-time. group_id: null name: Stoke City vs Burnley has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480777200 state_id: 5 sport_id: 1 starting_at: 2016-12-03 15:00:00 round_id: 510 id: 5145 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: Crystal Palace vs Southampton has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480777200 state_id: 5 sport_id: 1 starting_at: 2016-12-03 15:00:00 round_id: 510 id: 5118 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester United vs Arsenal has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1479558600 state_id: 5 sport_id: 1 starting_at: 2016-11-19 12:30:00 round_id: 454 id: 4533 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Swansea City vs Crystal Palace has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480172400 state_id: 5 sport_id: 1 starting_at: 2016-11-26 15:00:00 round_id: 482 id: 4912 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Everton vs Swansea City has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1479567600 state_id: 5 sport_id: 1 starting_at: 2016-11-19 15:00:00 round_id: 454 id: 4586 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: West Ham United vs Stoke City has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1478358000 state_id: 5 sport_id: 1 starting_at: 2016-11-05 15:00:00 round_id: 322 id: 4018 stage_id: 11 leg: 1/1 ---------- result_info: Stoke City won after full-time. group_id: null name: Stoke City vs Swansea City has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477944000 state_id: 5 sport_id: 1 starting_at: 2016-10-31 20:00:00 round_id: 312 id: 3216 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Leicester City has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1476531000 state_id: 5 sport_id: 1 starting_at: 2016-10-15 11:30:00 round_id: 290 id: 2903 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Middlesbrough vs Tottenham Hotspur has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474725600 state_id: 5 sport_id: 1 starting_at: 2016-09-24 14:00:00 round_id: 269 id: 2721 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Swansea City vs Manchester City has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474725600 state_id: 5 sport_id: 1 starting_at: 2016-09-24 14:00:00 round_id: 269 id: 2755 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Sunderland has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474212600 state_id: 5 sport_id: 1 starting_at: 2016-09-18 15:30:00 round_id: 258 id: 2678 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs Middlesbrough has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474129800 state_id: 5 sport_id: 1 starting_at: 2016-09-17 16:30:00 round_id: 258 id: 2634 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Chelsea vs Liverpool has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474052400 state_id: 5 sport_id: 1 starting_at: 2016-09-16 19:00:00 round_id: 258 id: 2578 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Swansea City vs Chelsea has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1473606000 state_id: 5 sport_id: 1 starting_at: 2016-09-11 15:00:00 round_id: 247 id: 2555 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Leicester City has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1473525000 state_id: 5 sport_id: 1 starting_at: 2016-09-10 16:30:00 round_id: 247 id: 2545 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: Middlesbrough vs Crystal Palace has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1473516000 state_id: 5 sport_id: 1 starting_at: 2016-09-10 14:00:00 round_id: 247 id: 2515 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Southampton vs Sunderland has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1472306400 state_id: 5 sport_id: 1 starting_at: 2016-08-27 14:00:00 round_id: 238 id: 2429 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Burnley has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1472306400 state_id: 5 sport_id: 1 starting_at: 2016-08-27 14:00:00 round_id: 238 id: 2391 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Crystal Palace vs AFC Bournemouth has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1472306400 state_id: 5 sport_id: 1 starting_at: 2016-08-27 14:00:00 round_id: 238 id: 2400 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: West Ham United vs AFC Bournemouth has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471791600 state_id: 5 sport_id: 1 starting_at: 2016-08-21 15:00:00 round_id: 229 id: 2373 stage_id: 11 leg: 1/1 ---------- result_info: Middlesbrough won after full-time. group_id: null name: Sunderland vs Middlesbrough has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471782600 state_id: 5 sport_id: 1 starting_at: 2016-08-21 12:30:00 round_id: 229 id: 2362 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: West Bromwich Albion vs Everton has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471701600 state_id: 5 sport_id: 1 starting_at: 2016-08-20 14:00:00 round_id: 229 id: 2334 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Crystal Palace has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471701600 state_id: 5 sport_id: 1 starting_at: 2016-08-20 14:00:00 round_id: 229 id: 2315 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Manchester United vs Southampton has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471633200 state_id: 5 sport_id: 1 starting_at: 2016-08-19 19:00:00 round_id: 229 id: 2286 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Stoke City vs Manchester City has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471692600 state_id: 5 sport_id: 1 starting_at: 2016-08-20 11:30:00 round_id: 229 id: 2295 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Burnley vs Swansea City has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471096800 state_id: 5 sport_id: 1 starting_at: 2016-08-13 14:00:00 round_id: 219 id: 2197 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Middlesbrough vs Stoke City has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471096800 state_id: 5 sport_id: 1 starting_at: 2016-08-13 14:00:00 round_id: 219 id: 2225 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: Crystal Palace vs West Bromwich Albion has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471096800 state_id: 5 sport_id: 1 starting_at: 2016-08-13 14:00:00 round_id: 219 id: 2208 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Southampton vs Watford has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471096800 state_id: 5 sport_id: 1 starting_at: 2016-08-13 14:00:00 round_id: 219 id: 2234 stage_id: 11 leg: 1/1 ---------- result_info: Hull City won after full-time. group_id: null name: Hull City vs Leicester City has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471087800 state_id: 5 sport_id: 1 starting_at: 2016-08-13 11:30:00 round_id: 219 id: 2188 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Middlesbrough vs Everton has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486825200 state_id: 5 sport_id: 1 starting_at: 2017-02-11 15:00:00 round_id: 634 id: 6400 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: West Bromwich Albion vs Liverpool has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492345800 state_id: 5 sport_id: 1 starting_at: 2017-04-16 12:30:00 round_id: 710 id: 7297 stage_id: 11 leg: 1/1 ---------- result_info: Middlesbrough won after full-time. group_id: null name: Middlesbrough vs AFC Bournemouth has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477749600 state_id: 5 sport_id: 1 starting_at: 2016-10-29 14:00:00 round_id: 312 id: 3140 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: West Bromwich Albion vs Stoke City has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486220400 state_id: 5 sport_id: 1 starting_at: 2017-02-04 15:00:00 round_id: 623 id: 6337 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: West Bromwich Albion vs Hull City has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483369200 state_id: 5 sport_id: 1 starting_at: 2017-01-02 15:00:00 round_id: 582 id: 5875 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: West Bromwich Albion vs Manchester United has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481995800 state_id: 5 sport_id: 1 starting_at: 2016-12-17 17:30:00 round_id: 553 id: 5559 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: Crystal Palace vs Watford has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489849200 state_id: 5 sport_id: 1 starting_at: 2017-03-18 15:00:00 round_id: 672 id: 6793 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Crystal Palace vs Liverpool has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477758600 state_id: 5 sport_id: 1 starting_at: 2016-10-29 16:30:00 round_id: 312 id: 3183 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Burnley vs Leicester City has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485891900 state_id: 5 sport_id: 1 starting_at: 2017-01-31 19:45:00 round_id: 613 id: 6185 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Sunderland vs Chelsea has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481744700 state_id: 5 sport_id: 1 starting_at: 2016-12-14 19:45:00 round_id: 541 id: 5432 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Crystal Palace vs Manchester United has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481745600 state_id: 5 sport_id: 1 starting_at: 2016-12-14 20:00:00 round_id: 541 id: 5451 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester City vs Southampton has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477225800 state_id: 5 sport_id: 1 starting_at: 2016-10-23 12:30:00 round_id: 302 id: 3097 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: Southampton vs Everton has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480264200 state_id: 5 sport_id: 1 starting_at: 2016-11-27 16:30:00 round_id: 482 id: 5062 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Sunderland vs West Ham United has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492264800 state_id: 5 sport_id: 1 starting_at: 2017-04-15 14:00:00 round_id: 710 id: 7263 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Southampton vs Chelsea has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477843200 state_id: 5 sport_id: 1 starting_at: 2016-10-30 16:00:00 round_id: 312 id: 3206 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Manchester United vs Sunderland has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482764400 state_id: 5 sport_id: 1 starting_at: 2016-12-26 15:00:00 round_id: 562 id: 5668 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Manchester United vs Tottenham Hotspur has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481465700 state_id: 5 sport_id: 1 starting_at: 2016-12-11 14:15:00 round_id: 528 id: 5367 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs West Ham United has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471287600 state_id: 5 sport_id: 1 starting_at: 2016-08-15 19:00:00 round_id: 219 id: 2277 stage_id: 11 leg: 1/1 ---------- result_info: Hull City won after full-time. group_id: null name: Hull City vs West Ham United has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491055200 state_id: 5 sport_id: 1 starting_at: 2017-04-01 14:00:00 round_id: 681 id: 6924 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Stoke City has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481382000 state_id: 5 sport_id: 1 starting_at: 2016-12-10 15:00:00 round_id: 528 id: 5301 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: Swansea City vs AFC Bournemouth has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483196400 state_id: 5 sport_id: 1 starting_at: 2016-12-31 15:00:00 round_id: 573 id: 5787 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Burnley vs Liverpool has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471701600 state_id: 5 sport_id: 1 starting_at: 2016-08-20 14:00:00 round_id: 229 id: 2344 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: Middlesbrough vs Watford has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1476621000 state_id: 5 sport_id: 1 starting_at: 2016-10-16 12:30:00 round_id: 290 id: 2981 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Crystal Palace vs Tottenham Hotspur has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493233200 state_id: 5 sport_id: 1 starting_at: 2017-04-26 19:00:00 round_id: 663 id: 6771 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: Crystal Palace vs Stoke City has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474204500 state_id: 5 sport_id: 1 starting_at: 2016-09-18 13:15:00 round_id: 258 id: 2656 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester United vs Burnley has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477749600 state_id: 5 sport_id: 1 starting_at: 2016-10-29 14:00:00 round_id: 312 id: 3130 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: AFC Bournemouth vs Liverpool has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480858200 state_id: 5 sport_id: 1 starting_at: 2016-12-04 13:30:00 round_id: 510 id: 5258 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Swansea City has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480777200 state_id: 5 sport_id: 1 starting_at: 2016-12-03 15:00:00 round_id: 510 id: 5198 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Manchester City has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1475414100 state_id: 5 sport_id: 1 starting_at: 2016-10-02 13:15:00 round_id: 279 id: 2885 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Swansea City vs Manchester United has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1478444400 state_id: 5 sport_id: 1 starting_at: 2016-11-06 15:00:00 round_id: 322 id: 4481 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: West Bromwich Albion vs Manchester City has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477749600 state_id: 5 sport_id: 1 starting_at: 2016-10-29 14:00:00 round_id: 312 id: 3172 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: Swansea City vs West Ham United has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482764400 state_id: 5 sport_id: 1 starting_at: 2016-12-26 15:00:00 round_id: 562 id: 5681 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Tottenham Hotspur vs Liverpool has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1472297400 state_id: 5 sport_id: 1 starting_at: 2016-08-27 11:30:00 round_id: 238 id: 2382 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: West Ham United vs West Bromwich Albion has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486825200 state_id: 5 sport_id: 1 starting_at: 2017-02-11 15:00:00 round_id: 634 id: 6431 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Sunderland vs Everton has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1473706800 state_id: 5 sport_id: 1 starting_at: 2016-09-12 19:00:00 round_id: 247 id: 2566 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Watford vs Liverpool has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493665200 state_id: 5 sport_id: 1 starting_at: 2017-05-01 19:00:00 round_id: 726 id: 7504 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: Chelsea vs Crystal Palace has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491055200 state_id: 5 sport_id: 1 starting_at: 2017-04-01 14:00:00 round_id: 681 id: 6915 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester City vs Liverpool has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489941000 state_id: 5 sport_id: 1 starting_at: 2017-03-19 16:30:00 round_id: 672 id: 6882 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Leicester City vs Manchester United has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486310400 state_id: 5 sport_id: 1 starting_at: 2017-02-05 16:00:00 round_id: 623 id: 6366 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Southampton vs AFC Bournemouth has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491064200 state_id: 5 sport_id: 1 starting_at: 2017-04-01 16:30:00 round_id: 681 id: 6966 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Everton has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488720600 state_id: 5 sport_id: 1 starting_at: 2017-03-05 13:30:00 round_id: 653 id: 6662 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Middlesbrough vs Manchester City has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493557500 state_id: 5 sport_id: 1 starting_at: 2017-04-30 13:05:00 round_id: 726 id: 7484 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs AFC Bournemouth has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480256100 state_id: 5 sport_id: 1 starting_at: 2016-11-27 14:15:00 round_id: 482 id: 5003 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Manchester City vs Chelsea has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480768200 state_id: 5 sport_id: 1 starting_at: 2016-12-03 12:30:00 round_id: 510 id: 5093 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester United vs Swansea City has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493550000 state_id: 5 sport_id: 1 starting_at: 2017-04-30 11:00:00 round_id: 726 id: 7461 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Liverpool vs Chelsea has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485892800 state_id: 5 sport_id: 1 starting_at: 2017-01-31 20:00:00 round_id: 613 id: 6225 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Watford vs West Ham United has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488043800 state_id: 5 sport_id: 1 starting_at: 2017-02-25 17:30:00 round_id: 645 id: 6542 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester United vs Everton has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491332400 state_id: 5 sport_id: 1 starting_at: 2017-04-04 19:00:00 round_id: 692 id: 7031 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: Liverpool vs Crystal Palace has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492961400 state_id: 5 sport_id: 1 starting_at: 2017-04-23 15:30:00 round_id: 721 id: 7382 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Burnley vs Manchester United has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492953300 state_id: 5 sport_id: 1 starting_at: 2017-04-23 13:15:00 round_id: 721 id: 7371 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Manchester City has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491418800 state_id: 5 sport_id: 1 starting_at: 2017-04-05 19:00:00 round_id: 692 id: 7086 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: West Ham United vs Manchester City has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485978300 state_id: 5 sport_id: 1 starting_at: 2017-02-01 19:45:00 round_id: 613 id: 6237 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Everton vs Chelsea has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493557500 state_id: 5 sport_id: 1 starting_at: 2017-04-30 13:05:00 round_id: 726 id: 7473 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester City vs Stoke City has_premium_odds: false venue_id: null placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489003200 state_id: 5 sport_id: 1 starting_at: 2017-03-08 20:00:00 round_id: 663 id: 6697 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Burnley vs Chelsea has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486906200 state_id: 5 sport_id: 1 starting_at: 2017-02-12 13:30:00 round_id: 634 id: 6453 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Sunderland vs Manchester City has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488729600 state_id: 5 sport_id: 1 starting_at: 2017-03-05 16:00:00 round_id: 653 id: 6673 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Arsenal has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486211400 state_id: 5 sport_id: 1 starting_at: 2017-02-04 12:30:00 round_id: 623 id: 6268 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Southampton has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489932900 state_id: 5 sport_id: 1 starting_at: 2017-03-19 14:15:00 round_id: 672 id: 6870 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs AFC Bournemouth has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492255800 state_id: 5 sport_id: 1 starting_at: 2017-04-15 11:30:00 round_id: 710 id: 7220 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Manchester United vs Watford has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486825200 state_id: 5 sport_id: 1 starting_at: 2017-02-11 15:00:00 round_id: 634 id: 6389 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: Arsenal vs Watford has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485891900 state_id: 5 sport_id: 1 starting_at: 2017-01-31 19:45:00 round_id: 613 id: 6173 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: West Bromwich Albion vs Burnley has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1479758400 state_id: 5 sport_id: 1 starting_at: 2016-11-21 20:00:00 round_id: 454 id: 4778 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs West Bromwich Albion has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481457600 state_id: 5 sport_id: 1 starting_at: 2016-12-11 12:00:00 round_id: 528 id: 5357 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs West Ham United has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1479576600 state_id: 5 sport_id: 1 starting_at: 2016-11-19 17:30:00 round_id: 454 id: 4724 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Watford vs Chelsea has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1471701600 state_id: 5 sport_id: 1 starting_at: 2016-08-20 14:00:00 round_id: 229 id: 2324 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: Middlesbrough vs West Ham United has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485010800 state_id: 5 sport_id: 1 starting_at: 2017-01-21 15:00:00 round_id: 603 id: 6081 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Swansea City vs West Bromwich Albion has_premium_odds: false venue_id: 208 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495375200 state_id: 5 sport_id: 1 starting_at: 2017-05-21 14:00:00 round_id: 748 id: 7630 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Liverpool vs AFC Bournemouth has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491418800 state_id: 5 sport_id: 1 starting_at: 2017-04-05 19:00:00 round_id: 692 id: 7097 stage_id: 11 leg: 1/1 ---------- result_info: Leicester City won after full-time. group_id: null name: Leicester City vs Crystal Palace has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477144800 state_id: 5 sport_id: 1 starting_at: 2016-10-22 14:00:00 round_id: 302 id: 3054 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Burnley vs Crystal Palace has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1478358000 state_id: 5 sport_id: 1 starting_at: 2016-11-05 15:00:00 round_id: 322 id: 3238 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Watford has_premium_odds: false venue_id: 209 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491651000 state_id: 5 sport_id: 1 starting_at: 2017-04-08 11:30:00 round_id: 701 id: 7109 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Burnley vs Stoke City has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491331500 state_id: 5 sport_id: 1 starting_at: 2017-04-04 18:45:00 round_id: 692 id: 6997 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Southampton vs Manchester United has_premium_odds: false venue_id: 167 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495046700 state_id: 5 sport_id: 1 starting_at: 2017-05-17 18:45:00 round_id: 663 id: 6782 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Manchester United vs Crystal Palace has_premium_odds: false venue_id: 206 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495375200 state_id: 5 sport_id: 1 starting_at: 2017-05-21 14:00:00 round_id: 748 id: 7628 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Tottenham Hotspur vs Manchester United has_premium_odds: false venue_id: 209 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494775800 state_id: 5 sport_id: 1 starting_at: 2017-05-14 15:30:00 round_id: 747 id: 7621 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Swansea City vs Leicester City has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486915200 state_id: 5 sport_id: 1 starting_at: 2017-02-12 16:00:00 round_id: 634 id: 6463 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs Southampton has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483369200 state_id: 5 sport_id: 1 starting_at: 2017-01-02 15:00:00 round_id: 582 id: 5842 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: AFC Bournemouth vs Burnley has_premium_odds: false venue_id: 146 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494684000 state_id: 5 sport_id: 1 starting_at: 2017-05-13 14:00:00 round_id: 747 id: 7615 stage_id: 11 leg: 1/1 ---------- result_info: Stoke City won after full-time. group_id: null name: Stoke City vs Hull City has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492264800 state_id: 5 sport_id: 1 starting_at: 2017-04-15 14:00:00 round_id: 710 id: 7252 stage_id: 11 leg: 1/1 ---------- result_info: Stoke City won after full-time. group_id: null name: Stoke City vs Sunderland has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1476540000 state_id: 5 sport_id: 1 starting_at: 2016-10-15 14:00:00 round_id: 290 id: 2949 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Swansea City has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488034800 state_id: 5 sport_id: 1 starting_at: 2017-02-25 15:00:00 round_id: 645 id: 6485 stage_id: 11 leg: 1/1 ---------- result_info: West Ham United won after full-time. group_id: null name: Burnley vs West Ham United has_premium_odds: false venue_id: 200 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1495375200 state_id: 5 sport_id: 1 starting_at: 2017-05-21 14:00:00 round_id: 748 id: 7623 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Middlesbrough vs Leicester City has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483360200 state_id: 5 sport_id: 1 starting_at: 2017-01-02 12:30:00 round_id: 582 id: 5831 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Sunderland has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480172400 state_id: 5 sport_id: 1 starting_at: 2016-11-26 15:00:00 round_id: 482 id: 4885 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Leicester City vs Everton has_premium_odds: false venue_id: 117 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1482764400 state_id: 5 sport_id: 1 starting_at: 2016-12-26 15:00:00 round_id: 562 id: 5657 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: West Ham United vs Manchester United has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483377300 state_id: 5 sport_id: 1 starting_at: 2017-01-02 17:15:00 round_id: 582 id: 5887 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Manchester City has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483205400 state_id: 5 sport_id: 1 starting_at: 2016-12-31 17:30:00 round_id: 573 id: 5799 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Swansea City vs Burnley has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488639600 state_id: 5 sport_id: 1 starting_at: 2017-03-04 15:00:00 round_id: 653 id: 6618 stage_id: 11 leg: 1/1 ---------- result_info: Everton won after full-time. group_id: null name: Everton vs West Bromwich Albion has_premium_odds: false venue_id: 12 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1489244400 state_id: 5 sport_id: 1 starting_at: 2017-03-11 15:00:00 round_id: 663 id: 6717 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Burnley vs Southampton has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1484406000 state_id: 5 sport_id: 1 starting_at: 2017-01-14 15:00:00 round_id: 594 id: 5953 stage_id: 11 leg: 1/1 ---------- result_info: Crystal Palace won after full-time. group_id: null name: West Bromwich Albion vs Crystal Palace has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488639600 state_id: 5 sport_id: 1 starting_at: 2017-03-04 15:00:00 round_id: 653 id: 6639 stage_id: 11 leg: 1/1 ---------- result_info: Tottenham Hotspur won after full-time. group_id: null name: Stoke City vs Tottenham Hotspur has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1473516000 state_id: 5 sport_id: 1 starting_at: 2016-09-10 14:00:00 round_id: 247 id: 2525 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Stoke City vs West Bromwich Albion has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474725600 state_id: 5 sport_id: 1 starting_at: 2016-09-24 14:00:00 round_id: 269 id: 2732 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: AFC Bournemouth vs Chelsea has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491669000 state_id: 5 sport_id: 1 starting_at: 2017-04-08 16:30:00 round_id: 701 id: 7174 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Stoke City has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1483196400 state_id: 5 sport_id: 1 starting_at: 2016-12-31 15:00:00 round_id: 573 id: 5745 stage_id: 11 leg: 1/1 ---------- result_info: AFC Bournemouth won after full-time. group_id: null name: Stoke City vs AFC Bournemouth has_premium_odds: false venue_id: 207 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1479567600 state_id: 5 sport_id: 1 starting_at: 2016-11-19 15:00:00 round_id: 454 id: 4638 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Burnley vs Manchester City has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480163400 state_id: 5 sport_id: 1 starting_at: 2016-11-26 12:30:00 round_id: 482 id: 4804 stage_id: 11 leg: 1/1 ---------- result_info: Sunderland won after full-time. group_id: null name: Crystal Palace vs Sunderland has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1486220400 state_id: 5 sport_id: 1 starting_at: 2017-02-04 15:00:00 round_id: 623 id: 6280 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Middlesbrough vs Liverpool has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481744700 state_id: 5 sport_id: 1 starting_at: 2016-12-14 19:45:00 round_id: 541 id: 5422 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: West Bromwich Albion vs Southampton has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491660000 state_id: 5 sport_id: 1 starting_at: 2017-04-08 14:00:00 round_id: 701 id: 7153 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Sunderland has_premium_odds: false venue_id: 204 placeholder: false has_odds: true aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494960300 state_id: 5 sport_id: 1 starting_at: 2017-05-16 18:45:00 round_id: 721 id: 7404 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: West Ham United vs Southampton has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474815600 state_id: 5 sport_id: 1 starting_at: 2016-09-25 15:00:00 round_id: 269 id: 2777 stage_id: 11 leg: 1/1 ---------- result_info: Sunderland won after full-time. group_id: null name: Sunderland vs Leicester City has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480777200 state_id: 5 sport_id: 1 starting_at: 2016-12-03 15:00:00 round_id: 510 id: 5171 stage_id: 11 leg: 1/1 ---------- result_info: Middlesbrough won after full-time. group_id: null name: Middlesbrough vs Sunderland has_premium_odds: false venue_id: 203 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1493232300 state_id: 5 sport_id: 1 starting_at: 2017-04-26 18:45:00 round_id: 663 id: 6761 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Hull City vs West Bromwich Albion has_premium_odds: false venue_id: 199 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1480172400 state_id: 5 sport_id: 1 starting_at: 2016-11-26 15:00:00 round_id: 482 id: 4831 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: Watford vs Everton has_premium_odds: false venue_id: 339729 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1481373000 state_id: 5 sport_id: 1 starting_at: 2016-12-10 12:30:00 round_id: 528 id: 5290 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Arsenal vs Southampton has_premium_odds: false venue_id: 204 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1473516000 state_id: 5 sport_id: 1 starting_at: 2016-09-10 14:00:00 round_id: 247 id: 2496 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Burnley vs West Bromwich Albion has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494079200 state_id: 5 sport_id: 1 starting_at: 2017-05-06 14:00:00 round_id: 737 id: 7547 stage_id: 11 leg: 1/1 ---------- result_info: West Bromwich Albion won after full-time. group_id: null name: West Bromwich Albion vs West Ham United has_premium_odds: false venue_id: 119 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1474120800 state_id: 5 sport_id: 1 starting_at: 2016-09-17 14:00:00 round_id: 258 id: 2622 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Manchester United vs Stoke City has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1475406000 state_id: 5 sport_id: 1 starting_at: 2016-10-02 11:00:00 round_id: 279 id: 2862 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: AFC Bournemouth vs Watford has_premium_odds: false venue_id: 146 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485010800 state_id: 5 sport_id: 1 starting_at: 2017-01-21 15:00:00 round_id: 603 id: 6060 stage_id: 11 leg: 1/1 ---------- result_info: Swansea City won after full-time. group_id: null name: Swansea City vs Southampton has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1485891900 state_id: 5 sport_id: 1 starting_at: 2017-01-31 19:45:00 round_id: 613 id: 6214 stage_id: 11 leg: 1/1 ---------- result_info: Stoke City won after full-time. group_id: null name: Sunderland vs Stoke City has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1484406000 state_id: 5 sport_id: 1 starting_at: 2017-01-14 15:00:00 round_id: 594 id: 5975 stage_id: 11 leg: 1/1 ---------- result_info: Southampton won after full-time. group_id: null name: Southampton vs Burnley has_premium_odds: false venue_id: 167 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1476630000 state_id: 5 sport_id: 1 starting_at: 2016-10-16 15:00:00 round_id: 290 id: 2991 stage_id: 11 leg: 1/1 ---------- result_info: Manchester City won after full-time. group_id: null name: Crystal Palace vs Manchester City has_premium_odds: false venue_id: 201 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1479567600 state_id: 5 sport_id: 1 starting_at: 2016-11-19 15:00:00 round_id: 454 id: 4559 stage_id: 11 leg: 1/1 ---------- result_info: Burnley won after full-time. group_id: null name: Burnley vs Everton has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1477144800 state_id: 5 sport_id: 1 starting_at: 2016-10-22 14:00:00 round_id: 302 id: 3033 stage_id: 11 leg: 1/1 ---------- result_info: Watford won after full-time. group_id: null name: West Ham United vs Watford has_premium_odds: false venue_id: 214 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1473516000 state_id: 5 sport_id: 1 starting_at: 2016-09-10 14:00:00 round_id: 247 id: 2535 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Sunderland vs West Bromwich Albion has_premium_odds: false venue_id: 212 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1475330400 state_id: 5 sport_id: 1 starting_at: 2016-10-01 14:00:00 round_id: 279 id: 2830 stage_id: 11 leg: 1/1 ---------- result_info: Manchester United won after full-time. group_id: null name: Manchester United vs Chelsea has_premium_odds: false venue_id: 206 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1492354800 state_id: 5 sport_id: 1 starting_at: 2017-04-16 15:00:00 round_id: 710 id: 7307 stage_id: 11 leg: 1/1 ---------- result_info: Liverpool won after full-time. group_id: null name: Liverpool vs Arsenal has_premium_odds: false venue_id: 230 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1488648600 state_id: 5 sport_id: 1 starting_at: 2017-03-04 17:30:00 round_id: 653 id: 6651 stage_id: 11 leg: 1/1 ---------- result_info: Chelsea won after full-time. group_id: null name: Chelsea vs Middlesbrough has_premium_odds: false venue_id: 321614 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1494270000 state_id: 5 sport_id: 1 starting_at: 2017-05-08 19:00:00 round_id: 737 id: 7611 stage_id: 11 leg: 1/1 ---------- result_info: Arsenal won after full-time. group_id: null name: Burnley vs Arsenal has_premium_odds: false venue_id: 200 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1475422200 state_id: 5 sport_id: 1 starting_at: 2016-10-02 15:30:00 round_id: 279 id: 2895 stage_id: 11 leg: 1/1 ---------- result_info: Game ended in draw. group_id: null name: Swansea City vs Middlesbrough has_premium_odds: false venue_id: 208 placeholder: false has_odds: false aggregate_id: null league_id: 8 details: null length: 90 season_id: 13 starting_at_timestamp: 1491136200 state_id: 5 sport_id: 1 starting_at: 2017-04-02 12:30:00 round_id: 681 id: 6976 stage_id: 11 leg: 1/1
Explanation
Formatting JSON Response: The formatJsonWithFixtures function parses the JSON string, extracting main season information and excluding the “fixtures” field. The ‘fixtures’ field, if present, is extracted as a list of maps. Each fixture’s key-value pairs are formatted with each field on a new line. Fixtures are separated by dashed lines for readability.
Chapter 4.2: Using a Nested Include.
By now you must be feeling confident over your ability to slice and dice the API response as you wish. However, we have come just one step shy of revealing the remarkable flexibility of Sportmonks Football API.
Consider a scenario where you wish to build an app to display all fixtures for the current season for any league. How would you go about this? With a powerful tool called ‘Nested Includes,’ we can achieve this easily using this url: https://api.sportmonks.com/v3/football/leagues/league_id?include=currentSeason.fixtures&api_token=API_Token
You can use a total of 3 nested includes on the seasons’ endpoint. Some of the options are sport, league, teams, stages, currentStage, fixtures, and groups. Statistics and topscorers are also additional options.
We will add a step further to make our new piece of code dynamic by entering whatever league ID we may wish to query using the terminal’s prompt.
Head over to the League Finder on your dashboard.
You may try the piece of code out using any of the highlighted ID’s. You may use any of the IDs highlighed in blue if you are currently on a free plan. While our response was generated using the league ID 82, which is for the Bundesliga, your response may vary based on your current plan.
import java.io.{BufferedReader, InputStreamReader} import java.net.HttpURLConnection import java.net.URL import org.json4s._ import org.json4s.native.JsonMethods._ import scala.io.StdIn.readLine object CurrentSeason_Fixtures_by_LeagueID { implicit val formats: Formats = DefaultFormats // Method to send GET request and retrieve JSON response def fetchJson(url: String): String = { val connection = new URL(url).openConnection().asInstanceOf[HttpURLConnection] connection.setRequestMethod("GET") connection.setRequestProperty("Accept", "application/json") var reader: BufferedReader = null try { val responseCode = connection.getResponseCode if (responseCode == HttpURLConnection.HTTP_OK) { reader = new BufferedReader(new InputStreamReader(connection.getInputStream)) val response = new StringBuilder var line: String = null while ({ line = reader.readLine(); line != null }) { response.append(line) } response.toString() } else { s"Error: HTTP response code $responseCode" } } finally { if (reader != null) { reader.close() } connection.disconnect() } } // Method to format JSON response to display fixtures def formatFixtures(jsonString: String): String = { val json = parse(jsonString) // Extract fixtures from the JSON response under currentseason -> fixtures val fixtures = (json \ "data" \ "currentseason" \ "fixtures").toOption match { case Some(JArray(fixturesList)) => // Format each fixture entry by extracting each value cleanly fixturesList.map { case JObject(fixture) => fixture.map { case (key, JInt(value)) => s"$key: $value" case (key, JString(value)) => s"$key: $value" case (key, JBool(value)) => s"$key: $value" case (key, JDouble(value)) => s"$key: $value" case (key, JNull) => s"$key: null" case (key, _) => s"$key: [unknown type]" }.mkString("\n") case _ => "" }.mkString("\n\n" + "-" * 10 + "\n\n") case _ => "No fixtures available for the current season." } fixtures } def main(args: Array[String]): Unit = { println("Enter the league ID for which you want to retrieve current season fixtures:") val leagueId = readLine().trim val apiUrl = s"https://api.sportmonks.com/v3/football/leagues/$leagueId?include=currentseason.fixtures&api_token=API_Token" val jsonResponse = fetchJson(apiUrl) println(formatFixtures(jsonResponse)) } }
id: 19154572 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341448 state_id: 5 venue_id: 1947 name: Bayer 04 Leverkusen vs VfL Wolfsburg starting_at: 2024-09-22 13:30:00 result_info: Bayer 04 Leverkusen won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727011800 ---------- id: 19154665 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341458 state_id: 1 venue_id: 2063 name: SC Freiburg vs VfL Wolfsburg starting_at: 2024-12-13 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734118200 ---------- id: 19154666 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341458 state_id: 1 venue_id: 2165 name: FC Augsburg vs Bayer 04 Leverkusen starting_at: 2024-12-14 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734186600 ---------- id: 19154667 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341458 state_id: 1 venue_id: 2103 name: FSV Mainz 05 vs FC Bayern München starting_at: 2024-12-14 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734186600 ---------- id: 19154668 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341458 state_id: 1 venue_id: 180 name: Borussia Mönchengladbach vs Holstein Kiel starting_at: 2024-12-14 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734186600 ---------- id: 19154646 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341456 state_id: 1 venue_id: 1670 name: Heidenheim vs Eintracht Frankfurt starting_at: 2024-12-01 16:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733070600 ---------- id: 19154661 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341457 state_id: 1 venue_id: 2115 name: Holstein Kiel vs RB Leipzig starting_at: 2024-12-07 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733581800 ---------- id: 19154670 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341458 state_id: 1 venue_id: 2110 name: St. Pauli vs Werder Bremen starting_at: 2024-12-14 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734197400 ---------- id: 19154693 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341461 state_id: 1 venue_id: 2172 name: Werder Bremen vs Heidenheim starting_at: 2025-01-15 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736969400 ---------- id: 19154697 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341461 state_id: 1 venue_id: 2115 name: Holstein Kiel vs Borussia Dortmund starting_at: 2025-01-14 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736875800 ---------- id: 19154701 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341462 state_id: 1 venue_id: 2169 name: Eintracht Frankfurt vs Borussia Dortmund starting_at: 2025-01-17 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737142200 ---------- id: 19154726 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341465 state_id: 13 venue_id: 2171 name: RB Leipzig vs St. Pauli starting_at: 2025-02-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738972800 ---------- id: 19154720 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341464 state_id: 13 venue_id: 1670 name: Heidenheim vs Borussia Dortmund starting_at: 2025-02-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738368000 ---------- id: 19154708 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341463 state_id: 1 venue_id: 2166 name: Borussia Dortmund vs Werder Bremen starting_at: 2025-01-25 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737815400 ---------- id: 19154736 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341466 state_id: 13 venue_id: 2169 name: Eintracht Frankfurt vs Holstein Kiel starting_at: 2025-02-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1739577600 ---------- id: 19154744 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341467 state_id: 13 venue_id: 2171 name: RB Leipzig vs Heidenheim starting_at: 2025-02-22 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740182400 ---------- id: 19154772 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341470 state_id: 13 venue_id: 1670 name: Heidenheim vs Holstein Kiel starting_at: 2025-03-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741996800 ---------- id: 19154771 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341470 state_id: 13 venue_id: 2171 name: RB Leipzig vs Borussia Dortmund starting_at: 2025-03-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741996800 ---------- id: 19154787 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341471 state_id: 13 venue_id: 2115 name: Holstein Kiel vs Werder Bremen starting_at: 2025-03-29 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743206400 ---------- id: 19154790 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341472 state_id: 13 venue_id: 2172 name: Werder Bremen vs Eintracht Frankfurt starting_at: 2025-04-05 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743811200 ---------- id: 19154800 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341473 state_id: 13 venue_id: 2169 name: Eintracht Frankfurt vs Heidenheim starting_at: 2025-04-12 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1744416000 ---------- id: 19154805 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341473 state_id: 13 venue_id: 2115 name: Holstein Kiel vs St. Pauli starting_at: 2025-04-12 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1744416000 ---------- id: 19154818 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341475 state_id: 13 venue_id: 2169 name: Eintracht Frankfurt vs RB Leipzig starting_at: 2025-04-26 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745625600 ---------- id: 19154806 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341474 state_id: 13 venue_id: 2171 name: RB Leipzig vs Holstein Kiel starting_at: 2025-04-19 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745020800 ---------- id: 19154820 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341475 state_id: 13 venue_id: 2172 name: Werder Bremen vs St. Pauli starting_at: 2025-04-26 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745625600 ---------- id: 19154836 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341477 state_id: 13 venue_id: 2169 name: Eintracht Frankfurt vs St. Pauli starting_at: 2025-05-10 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746835200 ---------- id: 19154837 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341477 state_id: 13 venue_id: 2172 name: Werder Bremen vs RB Leipzig starting_at: 2025-05-10 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746835200 ---------- id: 19154843 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341478 state_id: 1 venue_id: 2166 name: Borussia Dortmund vs Holstein Kiel starting_at: 2025-05-17 13:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1747488600 ---------- id: 19154845 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341478 state_id: 1 venue_id: 1670 name: Heidenheim vs Werder Bremen starting_at: 2025-05-17 13:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1747488600 ---------- id: 19154644 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341456 state_id: 1 venue_id: 2171 name: RB Leipzig vs VfL Wolfsburg starting_at: 2024-11-30 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1732977000 ---------- id: 19154812 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341474 state_id: 13 venue_id: 2103 name: FSV Mainz 05 vs VfL Wolfsburg starting_at: 2025-04-19 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745020800 ---------- id: 19154786 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341471 state_id: 13 venue_id: 180 name: Borussia Mönchengladbach vs RB Leipzig starting_at: 2025-03-29 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743206400 ---------- id: 19154784 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341471 state_id: 13 venue_id: 2063 name: SC Freiburg vs FC Union Berlin starting_at: 2025-03-29 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743206400 ---------- id: 19154807 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341474 state_id: 13 venue_id: 2166 name: Borussia Dortmund vs Borussia Mönchengladbach starting_at: 2025-04-19 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745020800 ---------- id: 19154810 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341474 state_id: 13 venue_id: 2063 name: SC Freiburg vs TSG Hoffenheim starting_at: 2025-04-19 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745020800 ---------- id: 19154811 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341474 state_id: 13 venue_id: 2165 name: FC Augsburg vs Eintracht Frankfurt starting_at: 2025-04-19 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745020800 ---------- id: 19154704 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341462 state_id: 1 venue_id: 420 name: FC Union Berlin vs FSV Mainz 05 starting_at: 2025-01-19 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737297000 ---------- id: 19154827 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341476 state_id: 13 venue_id: 2063 name: SC Freiburg vs Bayer 04 Leverkusen starting_at: 2025-05-03 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746230400 ---------- id: 19154847 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341478 state_id: 1 venue_id: 2165 name: FC Augsburg vs FC Union Berlin starting_at: 2025-05-17 13:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1747488600 ---------- id: 19154725 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341465 state_id: 13 venue_id: 53 name: FC Bayern München vs Werder Bremen starting_at: 2025-02-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738972800 ---------- id: 19154727 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341465 state_id: 13 venue_id: 2166 name: Borussia Dortmund vs VfB Stuttgart starting_at: 2025-02-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738972800 ---------- id: 19154724 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341464 state_id: 13 venue_id: 2110 name: St. Pauli vs FC Augsburg starting_at: 2025-02-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738368000 ---------- id: 19154653 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341457 state_id: 1 venue_id: 1947 name: Bayer 04 Leverkusen vs St. Pauli starting_at: 2024-12-07 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733581800 ---------- id: 19154657 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341457 state_id: 1 venue_id: 1618 name: TSG Hoffenheim vs SC Freiburg starting_at: 2024-12-08 16:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733675400 ---------- id: 19154649 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341456 state_id: 1 venue_id: 2165 name: FC Augsburg vs VfL Bochum 1848 starting_at: 2024-11-30 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1732977000 ---------- id: 19154654 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341457 state_id: 1 venue_id: 1945 name: VfB Stuttgart vs FC Union Berlin starting_at: 2024-12-06 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733513400 ---------- id: 19154659 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341457 state_id: 1 venue_id: 180 name: Borussia Mönchengladbach vs Borussia Dortmund starting_at: 2024-12-07 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733592600 ---------- id: 19154645 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341456 state_id: 1 venue_id: 2166 name: Borussia Dortmund vs FC Bayern München starting_at: 2024-11-30 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1732987800 ---------- id: 19154658 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341457 state_id: 1 venue_id: 80 name: VfL Wolfsburg vs FSV Mainz 05 starting_at: 2024-12-08 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733668200 ---------- id: 19154648 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341456 state_id: 1 venue_id: 2063 name: SC Freiburg vs Borussia Mönchengladbach starting_at: 2024-11-30 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1732977000 ---------- id: 19154650 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341456 state_id: 1 venue_id: 2103 name: FSV Mainz 05 vs TSG Hoffenheim starting_at: 2024-12-01 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733063400 ---------- id: 19154672 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341459 state_id: 1 venue_id: 1945 name: VfB Stuttgart vs St. Pauli starting_at: 2024-12-21 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734791400 ---------- id: 19154674 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341459 state_id: 1 venue_id: 2169 name: Eintracht Frankfurt vs FSV Mainz 05 starting_at: 2024-12-21 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734791400 ---------- id: 19154675 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341459 state_id: 1 venue_id: 1618 name: TSG Hoffenheim vs Borussia Mönchengladbach starting_at: 2024-12-21 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734791400 ---------- id: 19154671 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341459 state_id: 1 venue_id: 1947 name: Bayer 04 Leverkusen vs SC Freiburg starting_at: 2024-12-21 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734802200 ---------- id: 19154682 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341460 state_id: 1 venue_id: 1618 name: TSG Hoffenheim vs VfL Wolfsburg starting_at: 2025-01-11 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736605800 ---------- id: 19154651 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341456 state_id: 1 venue_id: 420 name: FC Union Berlin vs Bayer 04 Leverkusen starting_at: 2024-11-30 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1732977000 ---------- id: 19154698 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341462 state_id: 1 venue_id: 1947 name: Bayer 04 Leverkusen vs Borussia Mönchengladbach starting_at: 2025-01-18 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737221400 ---------- id: 19154656 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341457 state_id: 1 venue_id: 2169 name: Eintracht Frankfurt vs FC Augsburg starting_at: 2024-12-07 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733581800 ---------- id: 19154663 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341458 state_id: 1 venue_id: 2166 name: Borussia Dortmund vs TSG Hoffenheim starting_at: 2024-12-15 16:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734280200 ---------- id: 19154713 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341463 state_id: 1 venue_id: 2103 name: FSV Mainz 05 vs VfB Stuttgart starting_at: 2025-01-25 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737815400 ---------- id: 19154719 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341464 state_id: 13 venue_id: 2169 name: Eintracht Frankfurt vs VfL Wolfsburg starting_at: 2025-02-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738368000 ---------- id: 19154731 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341465 state_id: 13 venue_id: 2103 name: FSV Mainz 05 vs FC Augsburg starting_at: 2025-02-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738972800 ---------- id: 19154655 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341457 state_id: 1 venue_id: 53 name: FC Bayern München vs Heidenheim starting_at: 2024-12-07 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733581800 ---------- id: 19154679 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341459 state_id: 1 venue_id: 2115 name: Holstein Kiel vs FC Augsburg starting_at: 2024-12-21 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734791400 ---------- id: 19154677 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341459 state_id: 1 venue_id: 80 name: VfL Wolfsburg vs Borussia Dortmund starting_at: 2024-12-22 16:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734885000 ---------- id: 19154681 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341460 state_id: 1 venue_id: 2166 name: Borussia Dortmund vs Bayer 04 Leverkusen starting_at: 2025-01-10 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736537400 ---------- id: 19154692 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341461 state_id: 1 venue_id: 2169 name: Eintracht Frankfurt vs SC Freiburg starting_at: 2025-01-14 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736883000 ---------- id: 19154695 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341461 state_id: 1 venue_id: 420 name: FC Union Berlin vs FC Augsburg starting_at: 2025-01-15 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736969400 ---------- id: 19154703 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341462 state_id: 1 venue_id: 2172 name: Werder Bremen vs FC Augsburg starting_at: 2025-01-19 16:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737304200 ---------- id: 19154729 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341465 state_id: 13 venue_id: 2063 name: SC Freiburg vs Heidenheim starting_at: 2025-02-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738972800 ---------- id: 19154669 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341458 state_id: 1 venue_id: 420 name: FC Union Berlin vs VfL Bochum 1848 starting_at: 2024-12-14 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734186600 ---------- id: 19154730 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341465 state_id: 13 venue_id: 80 name: VfL Wolfsburg vs Bayer 04 Leverkusen starting_at: 2025-02-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738972800 ---------- id: 19154664 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341458 state_id: 1 venue_id: 1670 name: Heidenheim vs VfB Stuttgart starting_at: 2024-12-15 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734273000 ---------- id: 19154716 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341464 state_id: 13 venue_id: 1947 name: Bayer 04 Leverkusen vs TSG Hoffenheim starting_at: 2025-02-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738368000 ---------- id: 19154733 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341465 state_id: 13 venue_id: 2115 name: Holstein Kiel vs VfL Bochum 1848 starting_at: 2025-02-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738972800 ---------- id: 19154734 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341466 state_id: 13 venue_id: 1947 name: Bayer 04 Leverkusen vs FC Bayern München starting_at: 2025-02-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1739577600 ---------- id: 19154739 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341466 state_id: 13 venue_id: 2165 name: FC Augsburg vs RB Leipzig starting_at: 2025-02-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1739577600 ---------- id: 19154745 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341467 state_id: 13 venue_id: 2166 name: Borussia Dortmund vs FC Union Berlin starting_at: 2025-02-22 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740182400 ---------- id: 19154746 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341467 state_id: 13 venue_id: 1618 name: TSG Hoffenheim vs VfB Stuttgart starting_at: 2025-02-22 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740182400 ---------- id: 19154747 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341467 state_id: 13 venue_id: 2063 name: SC Freiburg vs Werder Bremen starting_at: 2025-02-22 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740182400 ---------- id: 19154753 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341468 state_id: 13 venue_id: 2171 name: RB Leipzig vs FSV Mainz 05 starting_at: 2025-03-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740787200 ---------- id: 19154673 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341459 state_id: 1 venue_id: 53 name: FC Bayern München vs RB Leipzig starting_at: 2024-12-20 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734723000 ---------- id: 19154749 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341467 state_id: 13 venue_id: 2103 name: FSV Mainz 05 vs St. Pauli starting_at: 2025-02-22 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740182400 ---------- id: 19154754 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341468 state_id: 13 venue_id: 2169 name: Eintracht Frankfurt vs Bayer 04 Leverkusen starting_at: 2025-03-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740787200 ---------- id: 19154738 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341466 state_id: 13 venue_id: 2172 name: Werder Bremen vs TSG Hoffenheim starting_at: 2025-02-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1739577600 ---------- id: 19154699 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341462 state_id: 1 venue_id: 1945 name: VfB Stuttgart vs SC Freiburg starting_at: 2025-01-18 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737210600 ---------- id: 19154700 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341462 state_id: 1 venue_id: 53 name: FC Bayern München vs VfL Wolfsburg starting_at: 2025-01-18 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737210600 ---------- id: 19154799 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341473 state_id: 13 venue_id: 53 name: FC Bayern München vs Borussia Dortmund starting_at: 2025-04-12 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1744416000 ---------- id: 19154722 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341464 state_id: 13 venue_id: 420 name: FC Union Berlin vs RB Leipzig starting_at: 2025-02-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738368000 ---------- id: 19154710 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341463 state_id: 1 venue_id: 2063 name: SC Freiburg vs FC Bayern München starting_at: 2025-01-25 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737815400 ---------- id: 19154709 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341463 state_id: 1 venue_id: 1618 name: TSG Hoffenheim vs Eintracht Frankfurt starting_at: 2025-01-26 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737901800 ---------- id: 19154717 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341464 state_id: 13 venue_id: 1945 name: VfB Stuttgart vs Borussia Mönchengladbach starting_at: 2025-02-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738368000 ---------- id: 19154711 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341463 state_id: 1 venue_id: 2165 name: FC Augsburg vs Heidenheim starting_at: 2025-01-25 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737815400 ---------- id: 19154718 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341464 state_id: 13 venue_id: 53 name: FC Bayern München vs Holstein Kiel starting_at: 2025-02-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738368000 ---------- id: 19154774 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341470 state_id: 13 venue_id: 2165 name: FC Augsburg vs VfL Wolfsburg starting_at: 2025-03-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741996800 ---------- id: 19154737 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341466 state_id: 13 venue_id: 1670 name: Heidenheim vs FSV Mainz 05 starting_at: 2025-02-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1739577600 ---------- id: 19154741 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341466 state_id: 13 venue_id: 378 name: VfL Bochum 1848 vs Borussia Dortmund starting_at: 2025-02-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1739577600 ---------- id: 19154742 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341466 state_id: 13 venue_id: 2110 name: St. Pauli vs SC Freiburg starting_at: 2025-02-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1739577600 ---------- id: 19154721 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341464 state_id: 13 venue_id: 2172 name: Werder Bremen vs FSV Mainz 05 starting_at: 2025-02-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738368000 ---------- id: 19154728 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341465 state_id: 13 venue_id: 1618 name: TSG Hoffenheim vs FC Union Berlin starting_at: 2025-02-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738972800 ---------- id: 19154764 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341469 state_id: 13 venue_id: 2169 name: Eintracht Frankfurt vs FC Union Berlin starting_at: 2025-03-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741392000 ---------- id: 19154766 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341469 state_id: 13 venue_id: 2063 name: SC Freiburg vs RB Leipzig starting_at: 2025-03-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741392000 ---------- id: 19154768 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341469 state_id: 13 venue_id: 180 name: Borussia Mönchengladbach vs FSV Mainz 05 starting_at: 2025-03-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741392000 ---------- id: 19154775 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341470 state_id: 13 venue_id: 2103 name: FSV Mainz 05 vs SC Freiburg starting_at: 2025-03-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741996800 ---------- id: 19154735 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341466 state_id: 13 venue_id: 1945 name: VfB Stuttgart vs VfL Wolfsburg starting_at: 2025-02-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1739577600 ---------- id: 19154740 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341466 state_id: 13 venue_id: 420 name: FC Union Berlin vs Borussia Mönchengladbach starting_at: 2025-02-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1739577600 ---------- id: 19154743 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341467 state_id: 13 venue_id: 53 name: FC Bayern München vs Eintracht Frankfurt starting_at: 2025-02-22 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740182400 ---------- id: 19154782 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341471 state_id: 13 venue_id: 2169 name: Eintracht Frankfurt vs VfB Stuttgart starting_at: 2025-03-29 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743206400 ---------- id: 19154792 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341472 state_id: 13 venue_id: 2165 name: FC Augsburg vs FC Bayern München starting_at: 2025-04-05 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743811200 ---------- id: 19154794 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341472 state_id: 13 venue_id: 420 name: FC Union Berlin vs VfL Wolfsburg starting_at: 2025-04-05 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743811200 ---------- id: 19154797 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341473 state_id: 13 venue_id: 1947 name: Bayer 04 Leverkusen vs FC Union Berlin starting_at: 2025-04-12 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1744416000 ---------- id: 19154732 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341465 state_id: 13 venue_id: 180 name: Borussia Mönchengladbach vs Eintracht Frankfurt starting_at: 2025-02-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738972800 ---------- id: 19154748 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341467 state_id: 13 venue_id: 80 name: VfL Wolfsburg vs VfL Bochum 1848 starting_at: 2025-02-22 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740182400 ---------- id: 19154751 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341467 state_id: 13 venue_id: 2115 name: Holstein Kiel vs Bayer 04 Leverkusen starting_at: 2025-02-22 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740182400 ---------- id: 19154752 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341468 state_id: 13 venue_id: 1945 name: VfB Stuttgart vs FC Bayern München starting_at: 2025-03-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740787200 ---------- id: 19154755 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341468 state_id: 13 venue_id: 1670 name: Heidenheim vs Borussia Mönchengladbach starting_at: 2025-03-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740787200 ---------- id: 19154761 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341469 state_id: 13 venue_id: 1947 name: Bayer 04 Leverkusen vs Werder Bremen starting_at: 2025-03-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741392000 ---------- id: 19154779 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341471 state_id: 13 venue_id: 1947 name: Bayer 04 Leverkusen vs VfL Bochum 1848 starting_at: 2025-03-29 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743206400 ---------- id: 19154756 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341468 state_id: 13 venue_id: 2172 name: Werder Bremen vs VfL Wolfsburg starting_at: 2025-03-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740787200 ---------- id: 19154759 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341468 state_id: 13 venue_id: 378 name: VfL Bochum 1848 vs TSG Hoffenheim starting_at: 2025-03-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740787200 ---------- id: 19154757 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341468 state_id: 13 venue_id: 2165 name: FC Augsburg vs SC Freiburg starting_at: 2025-03-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740787200 ---------- id: 19154758 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341468 state_id: 13 venue_id: 420 name: FC Union Berlin vs Holstein Kiel starting_at: 2025-03-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740787200 ---------- id: 19154762 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341469 state_id: 13 venue_id: 53 name: FC Bayern München vs VfL Bochum 1848 starting_at: 2025-03-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741392000 ---------- id: 19154763 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341469 state_id: 13 venue_id: 2166 name: Borussia Dortmund vs FC Augsburg starting_at: 2025-03-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741392000 ---------- id: 19154765 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341469 state_id: 13 venue_id: 1618 name: TSG Hoffenheim vs Heidenheim starting_at: 2025-03-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741392000 ---------- id: 19154769 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341469 state_id: 13 venue_id: 2115 name: Holstein Kiel vs VfB Stuttgart starting_at: 2025-03-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741392000 ---------- id: 19154770 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341470 state_id: 13 venue_id: 1945 name: VfB Stuttgart vs Bayer 04 Leverkusen starting_at: 2025-03-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741996800 ---------- id: 19154788 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341472 state_id: 13 venue_id: 2171 name: RB Leipzig vs TSG Hoffenheim starting_at: 2025-04-05 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743811200 ---------- id: 19154829 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341476 state_id: 13 venue_id: 2103 name: FSV Mainz 05 vs Eintracht Frankfurt starting_at: 2025-05-03 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746230400 ---------- id: 19154825 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341476 state_id: 13 venue_id: 2166 name: Borussia Dortmund vs VfL Wolfsburg starting_at: 2025-05-03 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746230400 ---------- id: 19154828 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341476 state_id: 13 venue_id: 2165 name: FC Augsburg vs Holstein Kiel starting_at: 2025-05-03 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746230400 ---------- id: 19154795 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341472 state_id: 13 venue_id: 378 name: VfL Bochum 1848 vs VfB Stuttgart starting_at: 2025-04-05 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743811200 ---------- id: 19154776 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341470 state_id: 13 venue_id: 420 name: FC Union Berlin vs FC Bayern München starting_at: 2025-03-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741996800 ---------- id: 19154780 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341471 state_id: 13 venue_id: 53 name: FC Bayern München vs St. Pauli starting_at: 2025-03-29 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743206400 ---------- id: 19154781 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341471 state_id: 13 venue_id: 2166 name: Borussia Dortmund vs FSV Mainz 05 starting_at: 2025-03-29 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743206400 ---------- id: 19154815 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341475 state_id: 13 venue_id: 1947 name: Bayer 04 Leverkusen vs FC Augsburg starting_at: 2025-04-26 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745625600 ---------- id: 19154816 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341475 state_id: 13 venue_id: 1945 name: VfB Stuttgart vs Heidenheim starting_at: 2025-04-26 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745625600 ---------- id: 19154819 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341475 state_id: 13 venue_id: 1618 name: TSG Hoffenheim vs Borussia Dortmund starting_at: 2025-04-26 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745625600 ---------- id: 19154821 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341475 state_id: 13 venue_id: 80 name: VfL Wolfsburg vs SC Freiburg starting_at: 2025-04-26 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745625600 ---------- id: 19154824 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341476 state_id: 13 venue_id: 2171 name: RB Leipzig vs FC Bayern München starting_at: 2025-05-03 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746230400 ---------- id: 19154778 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341470 state_id: 13 venue_id: 2110 name: St. Pauli vs TSG Hoffenheim starting_at: 2025-03-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741996800 ---------- id: 19154826 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341476 state_id: 13 venue_id: 1670 name: Heidenheim vs VfL Bochum 1848 starting_at: 2025-05-03 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746230400 ---------- id: 19154831 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341476 state_id: 13 venue_id: 420 name: FC Union Berlin vs Werder Bremen starting_at: 2025-05-03 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746230400 ---------- id: 19154814 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341474 state_id: 13 venue_id: 2110 name: St. Pauli vs Bayer 04 Leverkusen starting_at: 2025-04-19 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745020800 ---------- id: 19154783 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341471 state_id: 13 venue_id: 1618 name: TSG Hoffenheim vs FC Augsburg starting_at: 2025-03-29 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743206400 ---------- id: 19154801 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341473 state_id: 13 venue_id: 1618 name: TSG Hoffenheim vs FSV Mainz 05 starting_at: 2025-04-12 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1744416000 ---------- id: 19154813 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341474 state_id: 13 venue_id: 420 name: FC Union Berlin vs VfB Stuttgart starting_at: 2025-04-19 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745020800 ---------- id: 19154789 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341472 state_id: 13 venue_id: 1670 name: Heidenheim vs Bayer 04 Leverkusen starting_at: 2025-04-05 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743811200 ---------- id: 19154791 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341472 state_id: 13 venue_id: 2063 name: SC Freiburg vs Borussia Dortmund starting_at: 2025-04-05 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743811200 ---------- id: 19154793 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341472 state_id: 13 venue_id: 2103 name: FSV Mainz 05 vs Holstein Kiel starting_at: 2025-04-05 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743811200 ---------- id: 19154798 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341473 state_id: 13 venue_id: 1945 name: VfB Stuttgart vs Werder Bremen starting_at: 2025-04-12 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1744416000 ---------- id: 19154803 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341473 state_id: 13 venue_id: 180 name: Borussia Mönchengladbach vs SC Freiburg starting_at: 2025-04-12 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1744416000 ---------- id: 19154804 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341473 state_id: 13 venue_id: 378 name: VfL Bochum 1848 vs FC Augsburg starting_at: 2025-04-12 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1744416000 ---------- id: 19154808 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341474 state_id: 13 venue_id: 1670 name: Heidenheim vs FC Bayern München starting_at: 2025-04-19 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745020800 ---------- id: 19154817 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341475 state_id: 13 venue_id: 53 name: FC Bayern München vs FSV Mainz 05 starting_at: 2025-04-26 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745625600 ---------- id: 19154823 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341475 state_id: 13 venue_id: 2115 name: Holstein Kiel vs Borussia Mönchengladbach starting_at: 2025-04-26 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745625600 ---------- id: 19154832 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341476 state_id: 13 venue_id: 2110 name: St. Pauli vs VfB Stuttgart starting_at: 2025-05-03 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746230400 ---------- id: 19154822 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341475 state_id: 13 venue_id: 378 name: VfL Bochum 1848 vs FC Union Berlin starting_at: 2025-04-26 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745625600 ---------- id: 19154833 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341477 state_id: 13 venue_id: 1947 name: Bayer 04 Leverkusen vs Borussia Dortmund starting_at: 2025-05-10 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746835200 ---------- id: 19154834 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341477 state_id: 13 venue_id: 1945 name: VfB Stuttgart vs FC Augsburg starting_at: 2025-05-10 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746835200 ---------- id: 19154835 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341477 state_id: 13 venue_id: 53 name: FC Bayern München vs Borussia Mönchengladbach starting_at: 2025-05-10 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746835200 ---------- id: 19154838 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341477 state_id: 13 venue_id: 80 name: VfL Wolfsburg vs TSG Hoffenheim starting_at: 2025-05-10 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746835200 ---------- id: 19154839 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341477 state_id: 13 venue_id: 420 name: FC Union Berlin vs Heidenheim starting_at: 2025-05-10 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746835200 ---------- id: 19154840 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341477 state_id: 13 venue_id: 378 name: VfL Bochum 1848 vs FSV Mainz 05 starting_at: 2025-05-10 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746835200 ---------- id: 19154841 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341477 state_id: 13 venue_id: 2115 name: Holstein Kiel vs SC Freiburg starting_at: 2025-05-10 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746835200 ---------- id: 19154844 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341478 state_id: 1 venue_id: 1618 name: TSG Hoffenheim vs FC Bayern München starting_at: 2025-05-17 13:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1747488600 ---------- id: 19154846 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341478 state_id: 1 venue_id: 2063 name: SC Freiburg vs Eintracht Frankfurt starting_at: 2025-05-17 13:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1747488600 ---------- id: 19154850 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341478 state_id: 1 venue_id: 2110 name: St. Pauli vs VfL Bochum 1848 starting_at: 2025-05-17 13:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1747488600 ---------- id: 19154849 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341478 state_id: 1 venue_id: 180 name: Borussia Mönchengladbach vs VfL Wolfsburg starting_at: 2025-05-17 13:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1747488600 ---------- id: 19154848 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341478 state_id: 1 venue_id: 2103 name: FSV Mainz 05 vs Bayer 04 Leverkusen starting_at: 2025-05-17 13:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1747488600 ---------- id: 19154602 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341451 state_id: 5 venue_id: 8118 name: TSG Hoffenheim vs VfL Bochum 1848 starting_at: 2024-10-19 13:30:00 result_info: TSG Hoffenheim won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729344600 ---------- id: 19154842 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341478 state_id: 1 venue_id: 2171 name: RB Leipzig vs VfB Stuttgart starting_at: 2025-05-17 13:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1747488600 ---------- id: 19154662 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341458 state_id: 1 venue_id: 2171 name: RB Leipzig vs Eintracht Frankfurt starting_at: 2024-12-15 18:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734287400 ---------- id: 19154608 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341452 state_id: 5 venue_id: 1945 name: VfB Stuttgart vs Holstein Kiel starting_at: 2024-10-26 13:30:00 result_info: VfB Stuttgart won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729949400 ---------- id: 19154785 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341471 state_id: 13 venue_id: 80 name: VfL Wolfsburg vs Heidenheim starting_at: 2025-03-29 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743206400 ---------- id: 19154802 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341473 state_id: 13 venue_id: 80 name: VfL Wolfsburg vs RB Leipzig starting_at: 2025-04-12 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1744416000 ---------- id: 19154712 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341463 state_id: 1 venue_id: 80 name: VfL Wolfsburg vs Holstein Kiel starting_at: 2025-01-24 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737747000 ---------- id: 19154578 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341448 state_id: 5 venue_id: 420 name: FC Union Berlin vs TSG Hoffenheim starting_at: 2024-09-21 13:30:00 result_info: FC Union Berlin won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726925400 ---------- id: 19154549 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341445 state_id: 5 venue_id: 2063 name: SC Freiburg vs VfB Stuttgart starting_at: 2024-08-24 13:30:00 result_info: SC Freiburg won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1724506200 ---------- id: 19154548 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341445 state_id: 5 venue_id: 232157 name: TSG Hoffenheim vs Holstein Kiel starting_at: 2024-08-24 13:30:00 result_info: TSG Hoffenheim won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1724506200 ---------- id: 19154830 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341476 state_id: 13 venue_id: 180 name: Borussia Mönchengladbach vs TSG Hoffenheim starting_at: 2025-05-03 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1746230400 ---------- id: 19154750 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341467 state_id: 13 venue_id: 180 name: Borussia Mönchengladbach vs FC Augsburg starting_at: 2025-02-22 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740182400 ---------- id: 19154605 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341451 state_id: 5 venue_id: 2103 name: FSV Mainz 05 vs RB Leipzig starting_at: 2024-10-19 13:30:00 result_info: RB Leipzig won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729344600 ---------- id: 19154777 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341470 state_id: 13 venue_id: 378 name: VfL Bochum 1848 vs Eintracht Frankfurt starting_at: 2025-03-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741996800 ---------- id: 19154705 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341462 state_id: 1 venue_id: 378 name: VfL Bochum 1848 vs RB Leipzig starting_at: 2025-01-18 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737210600 ---------- id: 19154552 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341445 state_id: 5 venue_id: 2103 name: FSV Mainz 05 vs FC Union Berlin starting_at: 2024-08-24 13:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1724506200 ---------- id: 19154635 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341455 state_id: 1 venue_id: 1947 name: Bayer 04 Leverkusen vs Heidenheim starting_at: 2024-11-23 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1732372200 ---------- id: 19154597 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341450 state_id: 5 venue_id: 378 name: VfL Bochum 1848 vs VfL Wolfsburg starting_at: 2024-10-05 13:30:00 result_info: VfL Wolfsburg won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1728135000 ---------- id: 19154575 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341448 state_id: 5 venue_id: 1670 name: Heidenheim vs SC Freiburg starting_at: 2024-09-21 13:30:00 result_info: SC Freiburg won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726925400 ---------- id: 19154558 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341446 state_id: 5 venue_id: 1670 name: Heidenheim vs FC Augsburg starting_at: 2024-09-01 13:30:00 result_info: Heidenheim won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1725197400 ---------- id: 19154611 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341452 state_id: 5 venue_id: 339831 name: Werder Bremen vs Bayer 04 Leverkusen starting_at: 2024-10-26 16:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729960200 ---------- id: 19154584 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341449 state_id: 5 venue_id: 8118 name: TSG Hoffenheim vs Werder Bremen starting_at: 2024-09-29 15:30:00 result_info: Werder Bremen won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727623800 ---------- id: 19154573 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341448 state_id: 5 venue_id: 1945 name: VfB Stuttgart vs Borussia Dortmund starting_at: 2024-09-22 15:30:00 result_info: VfB Stuttgart won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727019000 ---------- id: 19154580 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341448 state_id: 5 venue_id: 2110 name: St. Pauli vs RB Leipzig starting_at: 2024-09-22 17:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727026200 ---------- id: 19154633 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341454 state_id: 1 venue_id: 378 name: VfL Bochum 1848 vs Bayer 04 Leverkusen starting_at: 2024-11-09 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1731162600 ---------- id: 19154634 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341454 state_id: 1 venue_id: 2110 name: St. Pauli vs FC Bayern München starting_at: 2024-11-09 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1731162600 ---------- id: 19154773 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341470 state_id: 13 venue_id: 2172 name: Werder Bremen vs Borussia Mönchengladbach starting_at: 2025-03-15 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741996800 ---------- id: 19154676 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341459 state_id: 1 venue_id: 2172 name: Werder Bremen vs FC Union Berlin starting_at: 2024-12-21 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734791400 ---------- id: 19154630 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341454 state_id: 1 venue_id: 2165 name: FC Augsburg vs TSG Hoffenheim starting_at: 2024-11-10 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1731249000 ---------- id: 19154627 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341454 state_id: 1 venue_id: 3876 name: RB Leipzig vs Borussia Mönchengladbach starting_at: 2024-11-09 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1731173400 ---------- id: 19154628 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341454 state_id: 1 venue_id: 1670 name: Heidenheim vs VfL Wolfsburg starting_at: 2024-11-10 18:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1731263400 ---------- id: 19154626 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341454 state_id: 1 venue_id: 1945 name: VfB Stuttgart vs Eintracht Frankfurt starting_at: 2024-11-10 16:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1731256200 ---------- id: 19154632 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341454 state_id: 1 venue_id: 420 name: FC Union Berlin vs SC Freiburg starting_at: 2024-11-08 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1731094200 ---------- id: 19154631 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341454 state_id: 1 venue_id: 2103 name: FSV Mainz 05 vs Borussia Dortmund starting_at: 2024-11-09 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1731162600 ---------- id: 19154723 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341464 state_id: 13 venue_id: 378 name: VfL Bochum 1848 vs SC Freiburg starting_at: 2025-02-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1738368000 ---------- id: 19154678 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341459 state_id: 1 venue_id: 378 name: VfL Bochum 1848 vs Heidenheim starting_at: 2024-12-22 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1734877800 ---------- id: 19154696 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341461 state_id: 1 venue_id: 378 name: VfL Bochum 1848 vs St. Pauli starting_at: 2025-01-15 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736962200 ---------- id: 19154660 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341457 state_id: 1 venue_id: 378 name: VfL Bochum 1848 vs Werder Bremen starting_at: 2024-12-07 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1733581800 ---------- id: 19154554 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341446 state_id: 5 venue_id: 1947 name: Bayer 04 Leverkusen vs RB Leipzig starting_at: 2024-08-31 16:30:00 result_info: RB Leipzig won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1725121800 ---------- id: 19154760 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341468 state_id: 13 venue_id: 2110 name: St. Pauli vs Borussia Dortmund starting_at: 2025-03-01 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1740787200 ---------- id: 19154615 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341452 state_id: 5 venue_id: 378 name: VfL Bochum 1848 vs FC Bayern München starting_at: 2024-10-27 14:30:00 result_info: FC Bayern München won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730039400 ---------- id: 19154647 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341456 state_id: 1 venue_id: 2172 name: Werder Bremen vs VfB Stuttgart starting_at: 2024-11-30 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1732977000 ---------- id: 19154809 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341474 state_id: 13 venue_id: 2172 name: Werder Bremen vs VfL Bochum 1848 starting_at: 2025-04-19 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1745020800 ---------- id: 19154796 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341472 state_id: 13 venue_id: 2110 name: St. Pauli vs Borussia Mönchengladbach starting_at: 2025-04-05 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1743811200 ---------- id: 19154715 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341463 state_id: 1 venue_id: 2110 name: St. Pauli vs FC Union Berlin starting_at: 2025-01-26 16:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737909000 ---------- id: 19154652 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341456 state_id: 1 venue_id: 2110 name: St. Pauli vs Holstein Kiel starting_at: 2024-11-29 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1732908600 ---------- id: 19154560 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341446 state_id: 5 venue_id: 420 name: FC Union Berlin vs St. Pauli starting_at: 2024-08-30 18:30:00 result_info: FC Union Berlin won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1725042600 ---------- id: 19154607 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341451 state_id: 5 venue_id: 2115 name: Holstein Kiel vs FC Union Berlin starting_at: 2024-10-20 13:30:00 result_info: FC Union Berlin won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729431000 ---------- id: 19154641 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341455 state_id: 1 venue_id: 80 name: VfL Wolfsburg vs FC Union Berlin starting_at: 2024-11-23 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1732372200 ---------- id: 19154557 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341446 state_id: 5 venue_id: 339832 name: Eintracht Frankfurt vs TSG Hoffenheim starting_at: 2024-08-31 13:30:00 result_info: Eintracht Frankfurt won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1725111000 ---------- id: 19154603 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341451 state_id: 5 venue_id: 2063 name: SC Freiburg vs FC Augsburg starting_at: 2024-10-19 13:30:00 result_info: SC Freiburg won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729344600 ---------- id: 19154609 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341452 state_id: 5 venue_id: 3876 name: RB Leipzig vs SC Freiburg starting_at: 2024-10-26 13:30:00 result_info: RB Leipzig won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729949400 ---------- id: 19154639 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341455 state_id: 1 venue_id: 2169 name: Eintracht Frankfurt vs Werder Bremen starting_at: 2024-11-23 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1732383000 ---------- id: 19154767 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341469 state_id: 13 venue_id: 80 name: VfL Wolfsburg vs St. Pauli starting_at: 2025-03-08 00:00:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1741392000 ---------- id: 19154694 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341461 state_id: 1 venue_id: 80 name: VfL Wolfsburg vs Borussia Mönchengladbach starting_at: 2025-01-14 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736883000 ---------- id: 19154570 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341447 state_id: 5 venue_id: 180 name: Borussia Mönchengladbach vs VfB Stuttgart starting_at: 2024-09-14 13:30:00 result_info: VfB Stuttgart won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726320600 ---------- id: 19154569 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341447 state_id: 5 venue_id: 2103 name: FSV Mainz 05 vs Werder Bremen starting_at: 2024-09-15 15:30:00 result_info: Werder Bremen won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726414200 ---------- id: 19154567 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341447 state_id: 5 venue_id: 2165 name: FC Augsburg vs St. Pauli starting_at: 2024-09-15 13:30:00 result_info: FC Augsburg won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726407000 ---------- id: 19154550 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341445 state_id: 5 venue_id: 2165 name: FC Augsburg vs Werder Bremen starting_at: 2024-08-24 13:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1724506200 ---------- id: 19154555 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341446 state_id: 5 venue_id: 1945 name: VfB Stuttgart vs FSV Mainz 05 starting_at: 2024-08-31 13:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1725111000 ---------- id: 19154579 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341448 state_id: 5 venue_id: 378 name: VfL Bochum 1848 vs Holstein Kiel starting_at: 2024-09-21 13:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726925400 ---------- id: 19154576 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341448 state_id: 5 venue_id: 339831 name: Werder Bremen vs FC Bayern München starting_at: 2024-09-21 13:30:00 result_info: FC Bayern München won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726925400 ---------- id: 19154606 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341451 state_id: 5 venue_id: 180 name: Borussia Mönchengladbach vs Heidenheim starting_at: 2024-10-19 13:30:00 result_info: Borussia Mönchengladbach won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729344600 ---------- id: 19154612 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341452 state_id: 5 venue_id: 2165 name: FC Augsburg vs Borussia Dortmund starting_at: 2024-10-26 13:30:00 result_info: FC Augsburg won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729949400 ---------- id: 19154617 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341453 state_id: 5 venue_id: 1947 name: Bayer 04 Leverkusen vs VfB Stuttgart starting_at: 2024-11-01 19:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730489400 ---------- id: 19154545 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341445 state_id: 5 venue_id: 180 name: Borussia Mönchengladbach vs Bayer 04 Leverkusen starting_at: 2024-08-23 18:30:00 result_info: Bayer 04 Leverkusen won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1724437800 ---------- id: 19154577 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341448 state_id: 5 venue_id: 2165 name: FC Augsburg vs FSV Mainz 05 starting_at: 2024-09-20 18:30:00 result_info: FSV Mainz 05 won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726857000 ---------- id: 19154556 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341446 state_id: 5 venue_id: 53 name: FC Bayern München vs SC Freiburg starting_at: 2024-09-01 15:30:00 result_info: FC Bayern München won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1725204600 ---------- id: 19154563 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341447 state_id: 5 venue_id: 2171 name: RB Leipzig vs FC Union Berlin starting_at: 2024-09-14 13:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726320600 ---------- id: 19154551 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341445 state_id: 5 venue_id: 80 name: VfL Wolfsburg vs FC Bayern München starting_at: 2024-08-25 13:30:00 result_info: FC Bayern München won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1724592600 ---------- id: 19154564 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341447 state_id: 5 venue_id: 2166 name: Borussia Dortmund vs Heidenheim starting_at: 2024-09-13 18:30:00 result_info: Borussia Dortmund won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726252200 ---------- id: 19154562 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341446 state_id: 5 venue_id: 2115 name: Holstein Kiel vs VfL Wolfsburg starting_at: 2024-08-31 13:30:00 result_info: VfL Wolfsburg won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1725111000 ---------- id: 19154547 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341445 state_id: 5 venue_id: 2166 name: Borussia Dortmund vs Eintracht Frankfurt starting_at: 2024-08-24 16:30:00 result_info: Borussia Dortmund won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1724517000 ---------- id: 19154553 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341445 state_id: 5 venue_id: 2110 name: St. Pauli vs Heidenheim starting_at: 2024-08-25 15:30:00 result_info: Heidenheim won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1724599800 ---------- id: 19154642 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341455 state_id: 1 venue_id: 180 name: Borussia Mönchengladbach vs St. Pauli starting_at: 2024-11-24 16:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1732465800 ---------- id: 19154561 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341446 state_id: 5 venue_id: 378 name: VfL Bochum 1848 vs Borussia Mönchengladbach starting_at: 2024-08-31 13:30:00 result_info: Borussia Mönchengladbach won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1725111000 ---------- id: 19154546 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341445 state_id: 5 venue_id: 2171 name: RB Leipzig vs VfL Bochum 1848 starting_at: 2024-08-24 13:30:00 result_info: RB Leipzig won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1724506200 ---------- id: 19154629 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341454 state_id: 1 venue_id: 339831 name: Werder Bremen vs Holstein Kiel starting_at: 2024-11-09 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1731162600 ---------- id: 19154614 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341452 state_id: 5 venue_id: 420 name: FC Union Berlin vs Eintracht Frankfurt starting_at: 2024-10-27 16:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730046600 ---------- id: 19154707 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341463 state_id: 1 venue_id: 2171 name: RB Leipzig vs Bayer 04 Leverkusen starting_at: 2025-01-25 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737815400 ---------- id: 19154687 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341460 state_id: 1 venue_id: 180 name: Borussia Mönchengladbach vs FC Bayern München starting_at: 2025-01-11 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736616600 ---------- id: 19154689 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341461 state_id: 1 venue_id: 1947 name: Bayer 04 Leverkusen vs FSV Mainz 05 starting_at: 2025-01-14 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736883000 ---------- id: 19154640 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341455 state_id: 1 venue_id: 1618 name: TSG Hoffenheim vs RB Leipzig starting_at: 2024-11-23 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1732372200 ---------- id: 19154688 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341460 state_id: 1 venue_id: 2110 name: St. Pauli vs Eintracht Frankfurt starting_at: 2025-01-11 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736605800 ---------- id: 19154684 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341460 state_id: 1 venue_id: 2063 name: SC Freiburg vs Holstein Kiel starting_at: 2025-01-11 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736605800 ---------- id: 19154691 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341461 state_id: 1 venue_id: 53 name: FC Bayern München vs TSG Hoffenheim starting_at: 2025-01-15 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736969400 ---------- id: 19154683 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341460 state_id: 1 venue_id: 1670 name: Heidenheim vs FC Union Berlin starting_at: 2025-01-11 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736605800 ---------- id: 19154686 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341460 state_id: 1 venue_id: 2103 name: FSV Mainz 05 vs VfL Bochum 1848 starting_at: 2025-01-11 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736605800 ---------- id: 19154680 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341460 state_id: 1 venue_id: 2171 name: RB Leipzig vs Werder Bremen starting_at: 2025-01-12 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736692200 ---------- id: 19154685 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341460 state_id: 1 venue_id: 2165 name: FC Augsburg vs VfB Stuttgart starting_at: 2025-01-12 16:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736699400 ---------- id: 19154706 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341462 state_id: 1 venue_id: 2115 name: Holstein Kiel vs TSG Hoffenheim starting_at: 2025-01-18 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737210600 ---------- id: 19154690 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341461 state_id: 1 venue_id: 1945 name: VfB Stuttgart vs RB Leipzig starting_at: 2025-01-15 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1736969400 ---------- id: 19154702 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341462 state_id: 1 venue_id: 1670 name: Heidenheim vs St. Pauli starting_at: 2025-01-18 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737210600 ---------- id: 19154714 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341463 state_id: 1 venue_id: 180 name: Borussia Mönchengladbach vs VfL Bochum 1848 starting_at: 2025-01-25 17:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: false has_premium_odds: false starting_at_timestamp: 1737826200 ---------- id: 19154598 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341450 state_id: 5 venue_id: 2110 name: St. Pauli vs FSV Mainz 05 starting_at: 2024-10-05 16:30:00 result_info: FSV Mainz 05 won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1728145800 ---------- id: 19154636 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341455 state_id: 1 venue_id: 1945 name: VfB Stuttgart vs VfL Bochum 1848 starting_at: 2024-11-23 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1732372200 ---------- id: 19154583 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341449 state_id: 5 venue_id: 2166 name: Borussia Dortmund vs VfL Bochum 1848 starting_at: 2024-09-27 18:30:00 result_info: Borussia Dortmund won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727461800 ---------- id: 19154571 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341447 state_id: 5 venue_id: 2115 name: Holstein Kiel vs FC Bayern München starting_at: 2024-09-14 16:30:00 result_info: FC Bayern München won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726331400 ---------- id: 19154613 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341452 state_id: 5 venue_id: 2103 name: FSV Mainz 05 vs Borussia Mönchengladbach starting_at: 2024-10-25 18:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729881000 ---------- id: 19154624 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341453 state_id: 5 venue_id: 180 name: Borussia Mönchengladbach vs Werder Bremen starting_at: 2024-11-03 16:30:00 result_info: Borussia Mönchengladbach won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730651400 ---------- id: 19154638 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341455 state_id: 1 venue_id: 2166 name: Borussia Dortmund vs SC Freiburg starting_at: 2024-11-23 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1732372200 ---------- id: 19154637 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341455 state_id: 1 venue_id: 53 name: FC Bayern München vs FC Augsburg starting_at: 2024-11-22 19:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1732303800 ---------- id: 19154625 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341453 state_id: 5 venue_id: 2115 name: Holstein Kiel vs Heidenheim starting_at: 2024-11-02 14:30:00 result_info: Holstein Kiel won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730557800 ---------- id: 19154568 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341447 state_id: 5 venue_id: 80 name: VfL Wolfsburg vs Eintracht Frankfurt starting_at: 2024-09-14 13:30:00 result_info: Eintracht Frankfurt won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726320600 ---------- id: 19154604 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341451 state_id: 5 venue_id: 80 name: VfL Wolfsburg vs Werder Bremen starting_at: 2024-10-20 15:30:00 result_info: Werder Bremen won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729438200 ---------- id: 19154565 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341447 state_id: 5 venue_id: 232157 name: TSG Hoffenheim vs Bayer 04 Leverkusen starting_at: 2024-09-14 13:30:00 result_info: Bayer 04 Leverkusen won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726320600 ---------- id: 19154600 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341451 state_id: 5 venue_id: 53 name: FC Bayern München vs VfB Stuttgart starting_at: 2024-10-19 16:30:00 result_info: FC Bayern München won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729355400 ---------- id: 19154559 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341446 state_id: 5 venue_id: 339831 name: Werder Bremen vs Borussia Dortmund starting_at: 2024-08-31 13:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1725111000 ---------- id: 19154619 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341453 state_id: 5 venue_id: 2166 name: Borussia Dortmund vs RB Leipzig starting_at: 2024-11-02 17:30:00 result_info: Borussia Dortmund won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730568600 ---------- id: 19154643 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341455 state_id: 1 venue_id: 2115 name: Holstein Kiel vs FSV Mainz 05 starting_at: 2024-11-24 14:30:00 result_info: null leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1732458600 ---------- id: 19154566 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341447 state_id: 5 venue_id: 2063 name: SC Freiburg vs VfL Bochum 1848 starting_at: 2024-09-14 13:30:00 result_info: SC Freiburg won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726320600 ---------- id: 19154610 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341452 state_id: 5 venue_id: 1670 name: Heidenheim vs TSG Hoffenheim starting_at: 2024-10-27 18:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730053800 ---------- id: 19154618 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341453 state_id: 5 venue_id: 53 name: FC Bayern München vs FC Union Berlin starting_at: 2024-11-02 14:30:00 result_info: FC Bayern München won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730557800 ---------- id: 19154599 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341451 state_id: 5 venue_id: 1947 name: Bayer 04 Leverkusen vs Eintracht Frankfurt starting_at: 2024-10-19 13:30:00 result_info: Bayer 04 Leverkusen won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729344600 ---------- id: 19154616 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341452 state_id: 5 venue_id: 2110 name: St. Pauli vs VfL Wolfsburg starting_at: 2024-10-26 13:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729949400 ---------- id: 19154592 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341450 state_id: 5 venue_id: 339832 name: Eintracht Frankfurt vs FC Bayern München starting_at: 2024-10-06 15:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1728228600 ---------- id: 19154590 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341450 state_id: 5 venue_id: 1947 name: Bayer 04 Leverkusen vs Holstein Kiel starting_at: 2024-10-05 13:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1728135000 ---------- id: 19154594 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341450 state_id: 5 venue_id: 339831 name: Werder Bremen vs SC Freiburg starting_at: 2024-10-05 13:30:00 result_info: SC Freiburg won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1728135000 ---------- id: 19154595 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341450 state_id: 5 venue_id: 2165 name: FC Augsburg vs Borussia Mönchengladbach starting_at: 2024-10-04 18:30:00 result_info: FC Augsburg won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1728066600 ---------- id: 19154620 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341453 state_id: 5 venue_id: 339832 name: Eintracht Frankfurt vs VfL Bochum 1848 starting_at: 2024-11-02 14:30:00 result_info: Eintracht Frankfurt won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730557800 ---------- id: 19154623 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341453 state_id: 5 venue_id: 80 name: VfL Wolfsburg vs FC Augsburg starting_at: 2024-11-02 14:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730557800 ---------- id: 19154574 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341448 state_id: 5 venue_id: 339832 name: Eintracht Frankfurt vs Borussia Mönchengladbach starting_at: 2024-09-21 16:30:00 result_info: Eintracht Frankfurt won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1726936200 ---------- id: 19154596 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341450 state_id: 5 venue_id: 420 name: FC Union Berlin vs Borussia Dortmund starting_at: 2024-10-05 13:30:00 result_info: FC Union Berlin won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1728135000 ---------- id: 19154591 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341450 state_id: 5 venue_id: 1945 name: VfB Stuttgart vs TSG Hoffenheim starting_at: 2024-10-06 17:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1728235800 ---------- id: 19154622 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341453 state_id: 5 venue_id: 2063 name: SC Freiburg vs FSV Mainz 05 starting_at: 2024-11-03 14:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730644200 ---------- id: 19154593 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341450 state_id: 5 venue_id: 1670 name: Heidenheim vs RB Leipzig starting_at: 2024-10-06 13:30:00 result_info: RB Leipzig won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1728221400 ---------- id: 19154601 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341451 state_id: 5 venue_id: 2166 name: Borussia Dortmund vs St. Pauli starting_at: 2024-10-18 18:30:00 result_info: Borussia Dortmund won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1729276200 ---------- id: 19154621 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341453 state_id: 5 venue_id: 8118 name: TSG Hoffenheim vs St. Pauli starting_at: 2024-11-02 14:30:00 result_info: St. Pauli won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1730557800 ---------- id: 19154586 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341449 state_id: 5 venue_id: 80 name: VfL Wolfsburg vs VfB Stuttgart starting_at: 2024-09-28 13:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727530200 ---------- id: 19154587 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341449 state_id: 5 venue_id: 2103 name: FSV Mainz 05 vs Heidenheim starting_at: 2024-09-28 13:30:00 result_info: Heidenheim won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727530200 ---------- id: 19154588 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341449 state_id: 5 venue_id: 180 name: Borussia Mönchengladbach vs FC Union Berlin starting_at: 2024-09-28 13:30:00 result_info: Borussia Mönchengladbach won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727530200 ---------- id: 19154585 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341449 state_id: 5 venue_id: 2063 name: SC Freiburg vs St. Pauli starting_at: 2024-09-28 13:30:00 result_info: St. Pauli won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727530200 ---------- id: 19154581 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341449 state_id: 5 venue_id: 53 name: FC Bayern München vs Bayer 04 Leverkusen starting_at: 2024-09-28 16:30:00 result_info: Game ended in draw. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727541000 ---------- id: 19154582 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341449 state_id: 5 venue_id: 3876 name: RB Leipzig vs FC Augsburg starting_at: 2024-09-28 13:30:00 result_info: RB Leipzig won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727530200 ---------- id: 19154589 sport_id: 1 league_id: 82 season_id: 23744 stage_id: 77471746 group_id: null aggregate_id: null round_id: 341449 state_id: 5 venue_id: 2115 name: Holstein Kiel vs Eintracht Frankfurt starting_at: 2024-09-29 13:30:00 result_info: Eintracht Frankfurt won after full-time. leg: 1/1 details: null length: 90 placeholder: false has_odds: true has_premium_odds: true starting_at_timestamp: 1727616600
Conclusion
Let’s go over all we did together. This developer’s guide covers essential topics such as setting up a local environment and installing a suitable IDE, IntelliJ IDEA, in our case.
We went ahead to make an API request to retrieve seasons in Chapter 2, before adding a library to help us print our results in a more readable way in Chapter 3.
We also worked extensively with the Seasons’ endpoint, using IDs of current and past seasons before heading off to Chapter 4, where we demonstrated how to add some depth to our JSON response by using Includes.
We didn’t stop there but went on to show you how robust Sportmonks Football API could be with another in-built tool called Nested Includes.
With a small but thriving Scala community, coupled with our up-to-date and constantly evolving API documentation, you too can build a mind-blowing football app using our API with a shoestring budget.
What are you waiting for? Check out our plans or sign up for your 14-day free trial now.