Subscription to this function is not available for your account. To upgrade and receive access to this contact sales@datasportsgroup.com
v2 GET /baseball/get_head2head
Returns head-2-head statistics between 2 teams.
Request URL
https://dsg-api.com/clients/{client_name}/baseball/get_head2head?id={match_id}&client={client_name}&authkey={client_authkey}
Parameters
authkey
string Required
client authentification key
client
string Required
unique client ID
ftype
string
changes feed type from XML to json (ftype=json)
id
int Required
match id to return
lang
string
two-character language code, defaults to 'en'
Nodes
competition
details about the competition
competition_id
unique identifier for a competition
competition_name
name of the competition
datasportsgroup
details about the API version, sport, language and generation timestamp
generated_utc
UTC timestamp when the API output was generated
lang
language of the API call
sport
sport value
version
version of the API
discipline
basic information about the discipline
discipline_id
unique identifier of the discipline
name
name of the discipline
type
type of discipline (contestant, contestant_team or team)
gender
details about the gender
age_group
defines the age group (senior,u23,u22,u21....)
value
gender type (male, female or mixed)
match
details about the match
date
date of match, format 'yyyy-mm-dd' (CET)
date_utc
date of match, format 'yyyy-mm-dd' (UTC)
final_period
display the period in which the match finished.
last_updated
When record was last updated. Format YYYY-MM-DD HH:MM:SS in CET timezone.
match_id
unique identifier of match
score_a
full-time score of team_a
score_b
full-time score of team_b
status
status of the game (Played, Playing, Fixture, Cancelled, Postponed, Suspended, Awarded, Break, Retired, Bye, No Contest, Disqualified, Tech Knockout, Knockout, Draw, Submission) + (Cricket-specific = No Result, Tea, Lunch, Dinner, between Innings, Stumps, rain delay, bad light, crowd trouble, pitch condition, start delay, drinks, super over, floodlight failure)
team_a_area_code
three-letter-acronym of the area where the home team origins
team_a_area_id
unique area_id for team_a
team_a_area_name
area name of home team origins county
team_a_id
unique team ID for team_a
team_a_logo
team logo URL
team_a_name
current name of team_a
team_a_original_name
the real name at the particular season (so can differ to current name)
team_a_short_name
short name of the home team
team_a_tla_name
three-letter-acronym of team_a
team_b_area_code
three-letter-acronym of the area where the home team origins
team_b_area_id
unique area_id for team_b
team_b_area_name
area name of away team origins county
team_b_id
unique team ID for team_b
team_b_logo
team logo URL
team_b_name
current name of team_b
team_b_original_name
the real name at the particular season (so can differ to current name)
team_b_short_name
short name of team_b
team_b_tla_name
three-letter-acronym of team_b
time
start time (CET), format 'hh:mm:ss'.
time_utc
start time (UTC), format 'hh:mm:ss'
venue_type
determines if the match is on neutral ground or on home/away basis (home_away or neutral)
winner
determines the winner of match ('team_A','team_B','draw','yet unknown')
match_extra
extra informations about the match
attendance
amount of people that attended the particular match
gameweek
contains the gameweek a match belongs to.
method
details about the API function
method_id
unique ID of method
name
name of method
period
details about periods of the match
score_a
period score of team_a
score_b
period score of team_b
type
three-letter-acronym of the period
round
basic details about the updated round
round_id
unique identifier of round
round_name
name of the round
season
details about the updated season
season_id
unique identifier for season
season_name
name of the competition for this particular season (including sponsor names etc)
season_title
title of season
stats
head-2-head statistics
behinds_against
number of behinds against
behinds_for
number of behinds made
draws
number of draws
losses
number of losses
matches
number of matches
scores_against
number of scores against
scores_for
number of scores
type
type of match (away, home, neutral or total)
wins
number of wins
team
basic details about a H2H team
team_area
area name of the team
team_id
unique identifier of the team
team_name
current team name
venue
basic details about the venue
venue_area_id
unique identifier for an area
venue_area_name
name of the area
venue_city
city where the venue is based
venue_id
unique identifier of the venue
venue_name
current name of the venue
Response Headers
200
Success
401
Unauthorized
429
Too Many Requests
Code Samples
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://dsg-api.com/clients/{client_name}/baseball/get_head2head?id={match_id}&client={client_name}&authkey={client_authkey}");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERPWD, "{User}:{Password}");
$content = curl_exec($ch);
curl_close($ch);
?>
curl GET -u "User:Password" "https://dsg-api.com/clients/{client_name}/baseball/get_head2head?id={match_id}&client={client_name}&authkey={client_authkey}"
Imports System
Imports System.Net	
Imports System.IO
Imports System.Text

Public Module Module1
	Public Sub Main()
		Dim url As String = "https://dsg-api.com/clients/{client_name}/baseball/get_head2head?id={match_id}&client={client_name}&authkey={client_authkey}"
		Dim myReq As WebRequest = WebRequest.Create(url)
		myReq.Credentials = new System.Net.NetworkCredential("{User}", "{Password}")
		Dim wr As WebResponse = myReq.GetResponse()
		Dim receiveStream As Stream = wr.GetResponseStream()
		Dim reader As StreamReader = New StreamReader(receiveStream, Encoding.UTF8)
		Dim content As String = reader.ReadToEnd()
	End Sub
End Module
response = requests.get("https://dsg-api.com/clients/{client_name}/baseball/get_head2head?id={match_id}&client={client_name}&authkey={client_authkey}", auth=("User", "Password"))
Response Example
200 Success
{"datasportsgroup":{"version":"2.0","sport":"baseball","lang":"en","method":{"method_id":"263","name":"get_head2head"},"head2head":{"team":[{"team_id":"25457","team_name":"Tampa Bay Rays","team_area":"United States","stats":[{"type":"home","matches":"44","wins":"18","draws":"0","losses":"26","runs_for":"156","runs_against":"169"},{"type":"away","matches":"47","wins":"24","draws":"0","losses":"23","runs_for":"220","runs_against":"211"},{"type":"neutral","matches":"0","wins":"0","draws":"0","losses":"0","runs_for":"0","runs_against":"0"},{"type":"total","matches":"91","wins":"42","draws":"0","losses":"49","runs_for":"376","runs_against":"380"}]},{"team_id":"25455","team_name":"Boston Red Sox","team_area":"United States","stats":[{"type":"home","matches":"47","wins":"23","draws":"0","losses":"24","runs_for":"211","runs_against":"220"},{"type":"away","matches":"44","wins":"26","draws":"0","losses":"18","runs_for":"169","runs_against":"156"},{"type":"neutral","matches":"0","wins":"0","draws":"0","losses":"0","runs_for":"0","runs_against":"0"},{"type":"total","matches":"91","wins":"49","draws":"0","losses":"42","runs_for":"380","runs_against":"376"}]}]},"head2head_matches":{"match":[{"match_id":"1515053","date":"2019-09-24","time":"01:10:00","date_utc":"2019-09-23","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Fixture","gameweek":"","winner":"yet unknown","runs_a":"","runs_b":"","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","p5s_a":"","p5s_b":"","p6s_a":"","p6s_b":"","p7s_a":"","p7s_b":"","p8s_a":"","p8s_b":"","p9s_a":"","p9s_b":"","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-06-06 22:37:21"},{"match_id":"1515038","date":"2019-09-22","time":"19:10:00","date_utc":"2019-09-22","time_utc":"17:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Fixture","gameweek":"","winner":"yet unknown","runs_a":"","runs_b":"","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","p5s_a":"","p5s_b":"","p6s_a":"","p6s_b":"","p7s_a":"","p7s_b":"","p8s_a":"","p8s_b":"","p9s_a":"","p9s_b":"","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-06-06 22:37:20"},{"match_id":"1515023","date":"2019-09-22","time":"00:10:00","date_utc":"2019-09-21","time_utc":"22:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Fixture","gameweek":"","winner":"yet unknown","runs_a":"","runs_b":"","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","p5s_a":"","p5s_b":"","p6s_a":"","p6s_b":"","p7s_a":"","p7s_b":"","p8s_a":"","p8s_b":"","p9s_a":"","p9s_b":"","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-06-06 22:37:19"},{"match_id":"1515009","date":"2019-09-21","time":"01:10:00","date_utc":"2019-09-20","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Fixture","gameweek":"","winner":"yet unknown","runs_a":"","runs_b":"","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","p5s_a":"","p5s_b":"","p6s_a":"","p6s_b":"","p7s_a":"","p7s_b":"","p8s_a":"","p8s_b":"","p9s_a":"","p9s_b":"","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-06-06 22:37:17"},{"match_id":"1514351","date":"2019-08-02","time":"01:10:00","date_utc":"2019-08-01","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"4","runs_b":"9","p1s_a":"2","p1s_b":"1","p2s_a":"0","p2s_b":"3","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"1","p5s_b":"0","p6s_a":"0","p6s_b":"3","p7s_a":"1","p7s_b":"0","p8s_a":"0","p8s_b":"1","p9s_a":"0","p9s_b":"1","hits_a":"10","hits_b":"12","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"37225","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-08-02 07:22:40"},{"match_id":"1514341","date":"2019-08-01","time":"01:10:00","date_utc":"2019-07-31","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"5","runs_b":"8","p1s_a":"0","p1s_b":"1","p2s_a":"0","p2s_b":"4","p3s_a":"1","p3s_b":"0","p4s_a":"1","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"1","p7s_a":"3","p7s_b":"2","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"12","hits_b":"12","errors_a":"0","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"33046","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-08-01 07:47:22"},{"match_id":"1514324","date":"2019-07-31","time":"01:10:00","date_utc":"2019-07-30","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"5","runs_b":"6","p1s_a":"2","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"1","p3s_b":"1","p4s_a":"0","p4s_b":"0","p5s_a":"2","p5s_b":"3","p6s_a":"0","p6s_b":"2","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"13","hits_b":"12","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"36412","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-07-31 07:18:20"},{"match_id":"1514239","date":"2019-07-24","time":"18:10:00","date_utc":"2019-07-24","time_utc":"16:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"3","runs_b":"2","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"2","p4s_a":"1","p4s_b":"0","p5s_a":"2","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"5","hits_b":"5","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"24161","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-07-25 07:37:35"},{"match_id":"1514224","date":"2019-07-24","time":"01:10:00","date_utc":"2019-07-23","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"4","runs_b":"5","p1s_a":"0","p1s_b":"2","p2s_a":"0","p2s_b":"0","p3s_a":"2","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"2","p9s_a":"2","p9s_b":"0","hits_a":"6","hits_b":"10","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"15876","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-07-24 07:51:04"},{"match_id":"1514213","date":"2019-07-23","time":"01:10:00","date_utc":"2019-07-22","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"4","runs_b":"9","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"7","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"3","p8s_b":"0","p9s_a":"1","p9s_b":"1","hits_a":"9","hits_b":"12","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"10966","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-07-23 07:48:34"},{"match_id":"1512984","date":"2019-06-09","time":"00:10:00","date_utc":"2019-06-08","time_utc":"22:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"5","runs_b":"1","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"2","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"1","p5s_b":"1","p6s_a":"2","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"6","hits_b":"6","errors_a":"2","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"37048","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-06-10 12:08:04"},{"match_id":"1513570","date":"2019-06-09","time":"19:05:00","date_utc":"2019-06-09","time_utc":"17:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"1","runs_b":"6","p1s_a":"0","p1s_b":"2","p2s_a":"1","p2s_b":"1","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"1","p7s_a":"0","p7s_b":"2","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"8","hits_b":"14","errors_a":"0","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"34643","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-06-10 08:11:09"},{"match_id":"1513556","date":"2019-06-08","time":"19:05:00","date_utc":"2019-06-08","time_utc":"17:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"9","p1s_a":"0","p1s_b":"0","p2s_a":"1","p2s_b":"4","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"1","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"4","hits_a":"6","hits_b":"13","errors_a":"1","errors_b":"2","venue_type":"home_away","final_period":"bas_p9s","attendance":"35564","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-06-10 08:00:40"},{"match_id":"1513544","date":"2019-06-08","time":"01:10:00","date_utc":"2019-06-07","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"1","runs_b":"5","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"1","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"2","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"1","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"1","p9s_b":"1","hits_a":"4","hits_b":"10","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"36803","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-06-08 08:42:12"},{"match_id":"1513010","date":"2019-04-28","time":"19:05:00","date_utc":"2019-04-28","time_utc":"17:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"5","p1s_a":"0","p1s_b":"2","p2s_a":"0","p2s_b":"2","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"1","p6s_b":"0","p7s_a":"1","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"1","hits_a":"7","hits_b":"5","errors_a":"2","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"33823","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-04-29 07:51:08"},{"match_id":"1512998","date":"2019-04-27","time":"22:05:00","date_utc":"2019-04-27","time_utc":"20:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"1","runs_b":"2","p1s_a":"0","p1s_b":"1","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"5","hits_b":"4","errors_a":"0","errors_b":"2","venue_type":"home_away","final_period":"bas_p9s","attendance":"34773","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-04-29 07:37:39"},{"match_id":"1512914","date":"2019-04-21","time":"20:10:00","date_utc":"2019-04-21","time_utc":"18:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"3","runs_b":"4","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"2","p3s_b":"0","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"2","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"0","ep1s_a":"0","ep1s_b":"0","ep2s_a":"0","ep2s_b":"1","hits_a":"7","hits_b":"8","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"18740","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-04-23 08:16:36"},{"match_id":"1512899","date":"2019-04-21","time":"00:10:00","date_utc":"2019-04-20","time_utc":"22:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"5","runs_b":"6","p1s_a":"0","p1s_b":"0","p2s_a":"1","p2s_b":"5","p3s_a":"0","p3s_b":"0","p4s_a":"1","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"2","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"1","hits_a":"11","hits_b":"8","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"22940","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-04-23 08:07:03"},{"match_id":"1512883","date":"2019-04-20","time":"01:10:00","date_utc":"2019-04-19","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"4","runs_b":"6","p1s_a":"0","p1s_b":"0","p2s_a":"1","p2s_b":"0","p3s_a":"1","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"3","p6s_a":"2","p6s_b":"1","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"2","p9s_a":"0","p9s_b":"0","hits_a":"7","hits_b":"10","errors_a":"0","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"21343","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"20045","round_id":"27415","last_updated":"2019-04-20 08:57:32"},{"match_id":"1239791","date":"2018-08-26","time":"19:10:00","date_utc":"2018-08-26","time_utc":"17:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"9","runs_b":"1","p1s_a":"2","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"3","p3s_b":"0","p4s_a":"1","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"1","p6s_b":"1","p7s_a":"2","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"12","hits_b":"3","errors_a":"0","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"23448","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-08-26 22:16:35"},{"match_id":"1239776","date":"2018-08-26","time":"00:10:00","date_utc":"2018-08-25","time_utc":"22:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"5","runs_b":"1","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"1","p3s_a":"0","p3s_b":"0","p4s_a":"1","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"2","p6s_b":"0","p7s_a":"1","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"9","hits_b":"5","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"25695","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-08-26 03:05:34"},{"match_id":"1239761","date":"2018-08-25","time":"01:10:00","date_utc":"2018-08-24","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"10","runs_b":"3","p1s_a":"0","p1s_b":"0","p2s_a":"3","p2s_b":"0","p3s_a":"5","p3s_b":"2","p4s_a":"2","p4s_b":"0","p5s_a":"0","p5s_b":"1","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"12","hits_b":"13","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"19723","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-08-25 04:21:04"},{"match_id":"1239701","date":"2018-08-19","time":"19:05:00","date_utc":"2018-08-19","time_utc":"17:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"0","runs_b":"2","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"1","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"1","hits_a":"2","hits_b":"4","errors_a":"0","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"37242","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-08-19 21:54:39"},{"match_id":"1239692","date":"2018-08-19","time":"01:10:00","date_utc":"2018-08-18","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"5","runs_b":"2","p1s_a":"4","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"1","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"2","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"4","hits_b":"5","errors_a":"1","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"36654","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-08-19 03:40:17"},{"match_id":"1239671","date":"2018-08-18","time":"01:10:00","date_utc":"2018-08-17","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"7","runs_b":"3","p1s_a":"2","p1s_b":"3","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"1","p4s_b":"0","p5s_a":"1","p5s_b":"0","p6s_a":"1","p6s_b":"0","p7s_a":"2","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"11","hits_b":"7","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"37012","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-08-18 04:12:39"},{"match_id":"1238473","date":"2018-05-25","time":"01:10:00","date_utc":"2018-05-24","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"6","runs_b":"3","p1s_a":"2","p1s_b":"0","p2s_a":"3","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"1","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"2","hits_a":"12","hits_b":"7","errors_a":"1","errors_b":"2","venue_type":"home_away","final_period":"bas_p9s","attendance":"12468","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-05-25 04:09:29"},{"match_id":"1238458","date":"2018-05-24","time":"01:10:00","date_utc":"2018-05-23","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"1","runs_b":"4","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"1","p6s_b":"1","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"3","hits_a":"3","hits_b":"5","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"10194","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-05-24 04:20:56"},{"match_id":"1238443","date":"2018-05-23","time":"01:10:00","date_utc":"2018-05-22","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"4","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"3","p4s_a":"1","p4s_b":"0","p5s_a":"1","p5s_b":"0","p6s_a":"0","p6s_b":"1","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"6","hits_b":"7","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"10642","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-05-23 04:06:31"},{"match_id":"1238148","date":"2018-04-29","time":"19:05:00","date_utc":"2018-04-29","time_utc":"17:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"4","runs_b":"3","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"2","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"3","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"7","hits_b":"10","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"32888","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-04-29 22:10:39"},{"match_id":"1238117","date":"2018-04-28","time":"01:10:00","date_utc":"2018-04-27","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"3","runs_b":"4","p1s_a":"0","p1s_b":"2","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"1","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"2","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"8","hits_b":"10","errors_a":"0","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"32620","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-04-28 04:22:43"},{"match_id":"1238134","date":"2018-04-28","time":"22:05:00","date_utc":"2018-04-28","time_utc":"20:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"6","runs_b":"12","p1s_a":"1","p1s_b":"0","p2s_a":"1","p2s_b":"2","p3s_a":"1","p3s_b":"2","p4s_a":"1","p4s_b":"0","p5s_a":"1","p5s_b":"1","p6s_a":"0","p6s_b":"1","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"1","p9s_a":"1","p9s_b":"4","hits_a":"12","hits_b":"18","errors_a":"1","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"35795","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-04-29 02:02:00"},{"match_id":"1237862","date":"2018-04-08","time":"19:05:00","date_utc":"2018-04-08","time_utc":"17:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"8","runs_b":"7","p1s_a":"1","p1s_b":"0","p2s_a":"0","p2s_b":"1","p3s_a":"0","p3s_b":"1","p4s_a":"0","p4s_b":"1","p5s_a":"1","p5s_b":"1","p6s_a":"0","p6s_b":"1","p7s_a":"0","p7s_b":"2","p8s_a":"6","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"11","hits_b":"11","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"31979","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-04-08 22:58:37"},{"match_id":"1237848","date":"2018-04-07","time":"19:05:00","date_utc":"2018-04-07","time_utc":"17:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"10","runs_b":"3","p1s_a":"4","p1s_b":"2","p2s_a":"4","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"2","p7s_b":"0","p8s_a":"0","p8s_b":"1","p9s_a":"X","p9s_b":"0","hits_a":"9","hits_b":"6","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"31821","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-04-07 21:56:35"},{"match_id":"1237825","date":"2018-04-05","time":"20:05:00","date_utc":"2018-04-05","time_utc":"18:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"3","runs_b":"2","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"2","p9s_a":"2","p9s_b":"0","ep1s_a":"0","ep1s_b":"0","ep2s_a":"0","ep2s_b":"0","ep3s_a":"1","ep3s_b":"0","hits_a":"10","hits_b":"6","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_ep3s","attendance":"36134","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-04-06 00:02:33"},{"match_id":"1237772","date":"2018-04-01","time":"19:10:00","date_utc":"2018-04-01","time_utc":"17:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"1","runs_b":"2","p1s_a":"0","p1s_b":"0","p2s_a":"1","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"1","p6s_a":"0","p6s_b":"1","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"8","hits_b":"6","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"14256","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-04-01 22:36:03"},{"match_id":"1237757","date":"2018-04-01","time":"00:10:00","date_utc":"2018-03-31","time_utc":"22:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"3","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"1","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"1","p6s_b":"1","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"8","hits_b":"7","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"17838","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-04-01 03:32:32"},{"match_id":"1237748","date":"2018-03-31","time":"01:10:00","date_utc":"2018-03-30","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"0","runs_b":"1","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"4","hits_b":"7","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"19203","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-03-31 03:57:02"},{"match_id":"1237733","date":"2018-03-29","time":"22:00:00","date_utc":"2018-03-29","time_utc":"20:00:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"6","runs_b":"4","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"3","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"1","p8s_a":"6","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"4","hits_b":"8","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"31042","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"15143","round_id":"18319","last_updated":"2018-03-30 01:05:31"},{"match_id":"784730","date":"2017-09-17","time":"19:10:00","date_utc":"2017-09-17","time_utc":"17:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"3","runs_b":"2","p1s_a":"1","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"1","p5s_b":"0","p6s_a":"1","p6s_b":"2","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"8","hits_b":"3","errors_a":"0","errors_b":"2","venue_type":"home_away","final_period":"bas_p9s","attendance":"14936","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"784714","date":"2017-09-17","time":"00:10:00","date_utc":"2017-09-16","time_utc":"22:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"1","runs_b":"3","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"1","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"2","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"5","hits_b":"7","errors_a":"0","errors_b":"2","venue_type":"home_away","final_period":"bas_p9s","attendance":"14942","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"784701","date":"2017-09-16","time":"01:10:00","date_utc":"2017-09-15","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"6","runs_b":"13","p1s_a":"1","p1s_b":"1","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"2","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"1","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"3","ep1s_a":"0","ep1s_b":"0","ep2s_a":"0","ep2s_b":"0","ep3s_a":"0","ep3s_b":"0","ep4s_a":"0","ep4s_b":"0","ep5s_a":"1","ep5s_b":"1","ep6s_a":"0","ep6s_b":"7","hits_a":"13","hits_b":"21","errors_a":"3","errors_b":"1","venue_type":"home_away","final_period":"bas_ep6s","attendance":"16006","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"784648","date":"2017-09-10","time":"19:35:00","date_utc":"2017-09-10","time_utc":"17:35:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"1","runs_b":"4","p1s_a":"0","p1s_b":"0","p2s_a":"1","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"2","p6s_a":"0","p6s_b":"1","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"5","hits_b":"9","errors_a":"1","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"35859","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"784643","date":"2017-09-10","time":"01:10:00","date_utc":"2017-09-09","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"9","runs_b":"0","p1s_a":"3","p1s_b":"0","p2s_a":"5","p2s_b":"0","p3s_a":"1","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"15","hits_b":"8","errors_a":"0","errors_b":"2","venue_type":"home_away","final_period":"bas_p9s","attendance":"36734","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"784625","date":"2017-09-09","time":"01:10:00","date_utc":"2017-09-08","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"9","runs_b":"3","p1s_a":"3","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"5","p4s_b":"0","p5s_a":"0","p5s_b":"2","p6s_a":"0","p6s_b":"0","p7s_a":"1","p7s_b":"1","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"12","hits_b":"5","errors_a":"0","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"34781","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"784190","date":"2017-08-10","time":"01:10:00","date_utc":"2017-08-09","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"8","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"1","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"5","p6s_a":"2","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"2","p9s_a":"0","p9s_b":"0","hits_a":"4","hits_b":"9","errors_a":"2","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"784179","date":"2017-08-09","time":"01:10:00","date_utc":"2017-08-08","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"0","runs_b":"2","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"1","hits_a":"2","hits_b":"12","errors_a":"0","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"783831","date":"2017-07-09","time":"19:10:00","date_utc":"2017-07-09","time_utc":"17:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"5","runs_b":"3","p1s_a":"1","p1s_b":"1","p2s_a":"0","p2s_b":"0","p3s_a":"1","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"1","p7s_b":"2","p8s_a":"2","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"7","hits_b":"9","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"783819","date":"2017-07-08","time":"22:10:00","date_utc":"2017-07-08","time_utc":"20:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"1","runs_b":"0","p1s_a":"0","p1s_b":"0","p2s_a":"1","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"6","hits_b":"3","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"783804","date":"2017-07-08","time":"01:10:00","date_utc":"2017-07-07","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"3","runs_b":"8","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"4","p4s_a":"2","p4s_b":"1","p5s_a":"0","p5s_b":"2","p6s_a":"0","p6s_b":"0","p7s_a":"1","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"1","hits_a":"10","hits_b":"11","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"783794","date":"2017-07-07","time":"01:10:00","date_utc":"2017-07-06","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"4","runs_b":"1","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"1","p4s_a":"1","p4s_b":"0","p5s_a":"1","p5s_b":"0","p6s_a":"2","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"8","hits_b":"5","errors_a":"1","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"7937","venue_name":"Tropicana Field","venue_city":"St. Petersburg, FL","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"783067","date":"2017-05-14","time":"19:35:00","date_utc":"2017-05-14","time_utc":"17:35:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"11","p1s_a":"1","p1s_b":"1","p2s_a":"0","p2s_b":"1","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"1","p5s_a":"1","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"7","hits_a":"6","hits_b":"16","errors_a":"1","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"783057","date":"2017-05-13","time":"19:05:00","date_utc":"2017-05-13","time_utc":"17:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"6","runs_b":"3","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"1","p3s_a":"2","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"4","p5s_b":"2","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"7","hits_b":"3","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"783038","date":"2017-05-13","time":"01:10:00","date_utc":"2017-05-12","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"4","runs_b":"5","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"2","p5s_a":"0","p5s_b":"3","p6s_a":"0","p6s_b":"0","p7s_a":"4","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"5","hits_b":"11","errors_a":"2","errors_b":"3","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:56"},{"match_id":"782694","date":"2017-04-17","time":"17:05:00","date_utc":"2017-04-17","time_utc":"15:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"4","runs_b":"3","p1s_a":"1","p1s_b":"2","p2s_a":"3","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"9","hits_b":"11","errors_a":"1","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:55"},{"match_id":"782685","date":"2017-04-16","time":"19:35:00","date_utc":"2017-04-16","time_utc":"17:35:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"7","runs_b":"5","p1s_a":"2","p1s_b":"3","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"2","p4s_b":"1","p5s_a":"0","p5s_b":"1","p6s_a":"0","p6s_b":"0","p7s_a":"2","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"17","hits_b":"7","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:55"},{"match_id":"782672","date":"2017-04-15","time":"22:05:00","date_utc":"2017-04-15","time_utc":"20:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"2","runs_b":"1","p1s_a":"0","p1s_b":"0","p2s_a":"1","p2s_b":"0","p3s_a":"0","p3s_b":"1","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"1","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"6","hits_b":"3","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:55"},{"match_id":"782656","date":"2017-04-15","time":"01:10:00","date_utc":"2017-04-14","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"5","runs_b":"10","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"2","p3s_a":"0","p3s_b":"4","p4s_a":"0","p4s_b":"0","p5s_a":"1","p5s_b":"2","p6s_a":"0","p6s_b":"0","p7s_a":"1","p7s_b":"2","p8s_a":"0","p8s_b":"0","p9s_a":"3","p9s_b":"0","hits_a":"14","hits_b":"12","errors_a":"0","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"9416","venue_name":"Fenway Park","venue_city":"Boston, MA","competition_id":"921","competition_name":"MLB","season_id":"12932","round_id":"11716","last_updated":"2017-12-15 18:11:55"},{"match_id":"608382","date":"2016-09-25","time":"00:10:00","date_utc":"2016-09-24","time_utc":"22:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"4","runs_b":"6","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"1","p3s_a":"3","p3s_b":"0","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"4","p8s_a":"0","p8s_b":"0","p9s_a":"1","p9s_b":"0","hits_a":"11","hits_b":"8","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:07"},{"match_id":"608367","date":"2016-09-25","time":"19:10:00","date_utc":"2016-09-25","time_utc":"17:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"3","p1s_a":"0","p1s_b":"1","p2s_a":"1","p2s_b":"0","p3s_a":"0","p3s_b":"1","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"0","ep1s_a":"0","ep1s_b":"1","hits_a":"7","hits_b":"8","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_ep1s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:07"},{"match_id":"608393","date":"2016-09-24","time":"01:10:00","date_utc":"2016-09-23","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"1","runs_b":"2","p1s_a":"0","p1s_b":"2","p2s_a":"1","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"6","hits_b":"9","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:07"},{"match_id":"608723","date":"2016-08-31","time":"01:10:00","date_utc":"2016-08-30","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"3","runs_b":"4","p1s_a":"0","p1s_b":"1","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"1","p5s_b":"0","p6s_a":"2","p6s_b":"0","p7s_a":"0","p7s_b":"2","p8s_a":"0","p8s_b":"1","p9s_a":"0","p9s_b":"0","hits_a":"6","hits_b":"8","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"608712","date":"2016-08-31","time":"19:35:00","date_utc":"2016-08-31","time_utc":"17:35:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"8","runs_b":"6","p1s_a":"1","p1s_b":"1","p2s_a":"0","p2s_b":"2","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"1","p5s_a":"4","p5s_b":"0","p6s_a":"1","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"2","p8s_b":"2","p9s_a":"X","p9s_b":"0","hits_a":"12","hits_b":"12","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"608735","date":"2016-08-30","time":"01:10:00","date_utc":"2016-08-29","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"9","runs_b":"4","p1s_a":"0","p1s_b":"0","p2s_a":"2","p2s_b":"0","p3s_a":"0","p3s_b":"2","p4s_a":"3","p4s_b":"0","p5s_a":"2","p5s_b":"1","p6s_a":"0","p6s_b":"0","p7s_a":"2","p7s_b":"0","p8s_a":"0","p8s_b":"1","p9s_a":"X","p9s_b":"0","hits_a":"14","hits_b":"9","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"608804","date":"2016-08-25","time":"01:10:00","date_utc":"2016-08-24","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"4","runs_b":"3","p1s_a":"0","p1s_b":"2","p2s_a":"0","p2s_b":"0","p3s_a":"2","p3s_b":"1","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"0","ep1s_a":"0","ep1s_b":"0","ep2s_a":"1","ep2s_b":"0","hits_a":"12","hits_b":"9","errors_a":"0","errors_b":"1","venue_type":"home_away","final_period":"bas_ep2s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"608797","date":"2016-08-25","time":"19:10:00","date_utc":"2016-08-25","time_utc":"17:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"2","runs_b":"1","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"1","p6s_b":"1","p7s_a":"1","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"7","hits_b":"7","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"608823","date":"2016-08-24","time":"01:10:00","date_utc":"2016-08-23","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"1","runs_b":"2","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"2","p4s_a":"0","p4s_b":"0","p5s_a":"1","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"6","hits_b":"5","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"608833","date":"2016-08-23","time":"01:10:00","date_utc":"2016-08-22","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"6","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"2","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"0","p9s_a":"2","p9s_b":"3","hits_a":"5","hits_b":"9","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"609365","date":"2016-07-10","time":"19:35:00","date_utc":"2016-07-10","time_utc":"17:35:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"4","runs_b":"0","p1s_a":"3","p1s_b":"0","p2s_a":"1","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"8","hits_b":"4","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"609396","date":"2016-07-09","time":"01:10:00","date_utc":"2016-07-08","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"6","runs_b":"5","p1s_a":"2","p1s_b":"0","p2s_a":"0","p2s_b":"1","p3s_a":"0","p3s_b":"1","p4s_a":"2","p4s_b":"0","p5s_a":"0","p5s_b":"2","p6s_a":"1","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"X","p9s_b":"1","hits_a":"11","hits_b":"10","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"609381","date":"2016-07-09","time":"22:05:00","date_utc":"2016-07-09","time_utc":"20:05:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"4","runs_b":"1","p1s_a":"0","p1s_b":"1","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"2","p4s_b":"0","p5s_a":"2","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"8","hits_b":"7","errors_a":"1","errors_b":"1","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"609538","date":"2016-06-29","time":"01:10:00","date_utc":"2016-06-28","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"8","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"1","p3s_a":"0","p3s_b":"1","p4s_a":"1","p4s_b":"0","p5s_a":"0","p5s_b":"1","p6s_a":"0","p6s_b":"0","p7s_a":"1","p7s_b":"3","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"2","hits_a":"6","hits_b":"11","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"609527","date":"2016-06-29","time":"18:10:00","date_utc":"2016-06-29","time_utc":"16:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"4","runs_b":"0","p1s_a":"0","p1s_b":"0","p2s_a":"1","p2s_b":"0","p3s_a":"3","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"9","hits_b":"5","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"609549","date":"2016-06-28","time":"01:10:00","date_utc":"2016-06-27","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"13","runs_b":"7","p1s_a":"5","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"4","p3s_b":"0","p4s_a":"0","p4s_b":"2","p5s_a":"1","p5s_b":"1","p6s_a":"0","p6s_b":"1","p7s_a":"2","p7s_b":"0","p8s_a":"1","p8s_b":"2","p9s_a":"X","p9s_b":"1","hits_a":"18","hits_b":"12","errors_a":"0","errors_b":"2","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:09"},{"match_id":"610474","date":"2016-04-21","time":"01:10:00","date_utc":"2016-04-20","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"7","runs_b":"3","p1s_a":"3","p1s_b":"0","p2s_a":"2","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"1","p5s_b":"0","p6s_a":"1","p6s_b":"2","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"12","hits_b":"7","errors_a":"0","errors_b":"0","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:10"},{"match_id":"610465","date":"2016-04-21","time":"19:35:00","date_utc":"2016-04-21","time_utc":"17:35:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"8","runs_b":"12","p1s_a":"5","p1s_b":"1","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"1","p4s_a":"0","p4s_b":"6","p5s_a":"0","p5s_b":"0","p6s_a":"2","p6s_b":"0","p7s_a":"1","p7s_b":"0","p8s_a":"0","p8s_b":"1","p9s_a":"0","p9s_b":"3","hits_a":"15","hits_b":"15","errors_a":"1","errors_b":"3","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:10"},{"match_id":"610490","date":"2016-04-20","time":"01:10:00","date_utc":"2016-04-19","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"0","runs_b":"3","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","ep1s_a":"0","ep1s_b":"3","hits_a":"1","hits_b":"6","errors_a":"1","errors_b":"0","venue_type":"home_away","final_period":"bas_ep1s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"11547","round_id":"7891","last_updated":"2017-12-15 18:16:10"},{"match_id":"1556748","date":"2015-09-25","time":"01:10:00","date_utc":"2015-09-24","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"4","p1s_a":"2","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"3","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 15:06:13"},{"match_id":"1556732","date":"2015-09-24","time":"01:10:00","date_utc":"2015-09-23","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"6","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"3","p9s_a":"2","p9s_b":"2","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 15:06:10"},{"match_id":"1556716","date":"2015-09-23","time":"01:10:00","date_utc":"2015-09-22","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"2","runs_b":"5","p1s_a":"2","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"1","p6s_a":"0","p6s_b":"2","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"2","p9s_a":"0","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 15:06:07"},{"match_id":"1556705","date":"2015-09-22","time":"01:10:00","date_utc":"2015-09-21","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"8","runs_b":"7","p1s_a":"0","p1s_b":"3","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"1","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"3","p7s_b":"0","p8s_a":"4","p8s_b":"3","p9s_a":"X","p9s_b":"1","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 15:06:04"},{"match_id":"1556591","date":"2015-09-13","time":"19:10:00","date_utc":"2015-09-13","time_utc":"17:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"0","runs_b":"2","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","ep1s_a":"0","ep1s_b":"0","ep2s_a":"0","ep2s_b":"0","ep3s_a":"0","ep3s_b":"0","ep4s_a":"0","ep4s_b":"2","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_ep4s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 15:05:42"},{"match_id":"1556577","date":"2015-09-13","time":"00:10:00","date_utc":"2015-09-12","time_utc":"22:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"4","runs_b":"10","p1s_a":"0","p1s_b":"3","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"2","p4s_a":"0","p4s_b":"2","p5s_a":"2","p5s_b":"1","p6s_a":"0","p6s_b":"0","p7s_a":"1","p7s_b":"2","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 15:05:39"},{"match_id":"1556563","date":"2015-09-12","time":"01:10:00","date_utc":"2015-09-11","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"8","runs_b":"4","p1s_a":"3","p1s_b":"1","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"3","p7s_a":"0","p7s_b":"0","p8s_a":"5","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 15:05:34"},{"match_id":"1556025","date":"2015-08-02","time":"19:35:00","date_utc":"2015-08-02","time_utc":"17:35:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"3","runs_b":"4","p1s_a":"2","p1s_b":"1","p2s_a":"0","p2s_b":"0","p3s_a":"1","p3s_b":"0","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"2","p9s_a":"0","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 15:02:47"},{"match_id":"1556006","date":"2015-08-01","time":"19:35:00","date_utc":"2015-08-01","time_utc":"17:35:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"11","runs_b":"7","p1s_a":"1","p1s_b":"0","p2s_a":"4","p2s_b":"0","p3s_a":"1","p3s_b":"0","p4s_a":"0","p4s_b":"2","p5s_a":"1","p5s_b":"2","p6s_a":"2","p6s_b":"2","p7s_a":"0","p7s_b":"0","p8s_a":"2","p8s_b":"0","p9s_a":"X","p9s_b":"1","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 15:02:40"},{"match_id":"1555996","date":"2015-08-01","time":"01:10:00","date_utc":"2015-07-31","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"7","runs_b":"5","p1s_a":"3","p1s_b":"1","p2s_a":"0","p2s_b":"1","p3s_a":"0","p3s_b":"1","p4s_a":"0","p4s_b":"0","p5s_a":"1","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"2","p7s_b":"2","p8s_a":"1","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 15:02:33"},{"match_id":"1555589","date":"2015-06-28","time":"19:10:00","date_utc":"2015-06-28","time_utc":"17:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"3","runs_b":"5","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"2","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"2","p5s_a":"1","p5s_b":"0","p6s_a":"0","p6s_b":"1","p7s_a":"2","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 14:57:23"},{"match_id":"1555560","date":"2015-06-27","time":"01:10:00","date_utc":"2015-06-26","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"3","runs_b":"4","p1s_a":"0","p1s_b":"0","p2s_a":"1","p2s_b":"2","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"0","p6s_a":"2","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","ep1s_a":"0","ep1s_b":"1","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_ep1s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 14:57:11"},{"match_id":"1555576","date":"2015-06-27","time":"22:10:00","date_utc":"2015-06-27","time_utc":"20:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"4","runs_b":"1","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"2","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"1","p7s_b":"0","p8s_a":"1","p8s_b":"1","p9s_a":"X","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 14:57:17"},{"match_id":"1554850","date":"2015-05-07","time":"01:10:00","date_utc":"2015-05-06","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"3","runs_b":"5","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"2","p3s_b":"1","p4s_a":"0","p4s_b":"1","p5s_a":"0","p5s_b":"2","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"0","p9s_b":"1","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 14:53:45"},{"match_id":"1554834","date":"2015-05-06","time":"01:10:00","date_utc":"2015-05-05","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"2","runs_b":"0","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"1","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"1","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 14:53:42"},{"match_id":"1554822","date":"2015-05-05","time":"01:10:00","date_utc":"2015-05-04","time_utc":"23:10:00","team_a_id":"25455","team_a_name":"Boston Red Sox","team_a_short_name":"Red Sox","team_a_tla_name":"BOS","team_a_original_name":"Boston Red Sox","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","team_b_id":"25457","team_b_name":"Tampa Bay Rays","team_b_short_name":"Rays","team_b_tla_name":"TBA","team_b_original_name":"Tampa Bay Rays","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"1","runs_b":"5","p1s_a":"0","p1s_b":"2","p2s_a":"1","p2s_b":"2","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"1","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 14:53:39"},{"match_id":"1554695","date":"2015-04-24","time":"01:10:00","date_utc":"2015-04-23","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"2","runs_b":"1","p1s_a":"0","p1s_b":"0","p2s_a":"1","p2s_b":"1","p3s_a":"0","p3s_b":"0","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"1","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 14:52:58"},{"match_id":"1554677","date":"2015-04-23","time":"01:10:00","date_utc":"2015-04-22","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_A","runs_a":"7","runs_b":"5","p1s_a":"1","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"3","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"1","p6s_a":"4","p6s_b":"1","p7s_a":"2","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"X","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 14:52:54"},{"match_id":"1554661","date":"2015-04-22","time":"01:10:00","date_utc":"2015-04-21","time_utc":"23:10:00","team_a_id":"25457","team_a_name":"Tampa Bay Rays","team_a_short_name":"Rays","team_a_tla_name":"TBA","team_a_original_name":"Tampa Bay Rays","team_a_country":"USA","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25457.png","team_b_id":"25455","team_b_name":"Boston Red Sox","team_b_short_name":"Red Sox","team_b_tla_name":"BOS","team_b_original_name":"Boston Red Sox","team_b_country":"USA","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/25455.png","status":"Played","gameweek":"","winner":"team_B","runs_a":"0","runs_b":"1","p1s_a":"0","p1s_b":"0","p2s_a":"0","p2s_b":"0","p3s_a":"0","p3s_b":"1","p4s_a":"0","p4s_b":"0","p5s_a":"0","p5s_b":"0","p6s_a":"0","p6s_b":"0","p7s_a":"0","p7s_b":"0","p8s_a":"0","p8s_b":"0","p9s_a":"0","p9s_b":"0","hits_a":"","hits_b":"","errors_a":"","errors_b":"","venue_type":"home_away","final_period":"bas_p9s","attendance":"","venue_id":"","venue_name":"","venue_city":"","competition_id":"921","competition_name":"MLB","season_id":"17366","round_id":"28487","last_updated":"2019-01-30 14:52:50"}]}}}