Subscription to this function is not available for your account. To upgrade and receive access to this contact sales@datasportsgroup.com
v2 GET /field_hockey/get_head2head
Returns head-2-head statistics between 2 teams.
Request URL
https://dsg-api.com/clients/{client_name}/field_hockey/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}/field_hockey/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}/field_hockey/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}/field_hockey/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}/field_hockey/get_head2head?id={match_id}&client={client_name}&authkey={client_authkey}", auth=("User", "Password"))
Response Example
200 Success
{"datasportsgroup":{"version":"2.0","sport":"field_hockey","lang":"en","method":{"method_id":"207","name":"get_head2head"},"head2head":{"team":[{"team_id":"36651","team_name":"India","team_area":"India","stats":[{"type":"home","matches":"12","wins":"5","draws":"0","losses":"7","scores_for":"28","scores_against":"26","goals_for":"0","goals_against":"0","behinds_for":"0","behinds_against":"0"},{"type":"away","matches":"11","wins":"4","draws":"1","losses":"6","scores_for":"25","scores_against":"27","goals_for":"0","goals_against":"0","behinds_for":"0","behinds_against":"0"},{"type":"neutral","matches":"1","wins":"1","draws":"0","losses":"0","scores_for":"4","scores_against":"1","goals_for":"4","goals_against":"1","behinds_for":"0","behinds_against":"0"},{"type":"total","matches":"24","wins":"10","draws":"1","losses":"13","scores_for":"57","scores_against":"54","goals_for":"0","goals_against":"0","behinds_for":"0","behinds_against":"0"}]},{"team_id":"36643","team_name":"Pakistan","team_area":"Pakistan","stats":[{"type":"home","matches":"11","wins":"6","draws":"1","losses":"4","scores_for":"27","scores_against":"25","goals_for":"0","goals_against":"0","behinds_for":"0","behinds_against":"0"},{"type":"away","matches":"12","wins":"7","draws":"0","losses":"5","scores_for":"26","scores_against":"28","goals_for":"0","goals_against":"0","behinds_for":"0","behinds_against":"0"},{"type":"neutral","matches":"1","wins":"0","draws":"0","losses":"1","scores_for":"1","scores_against":"4","goals_for":"1","goals_against":"4","behinds_for":"0","behinds_against":"0"},{"type":"total","matches":"24","wins":"13","draws":"1","losses":"10","scores_for":"54","scores_against":"57","goals_for":"0","goals_against":"0","behinds_for":"0","behinds_against":"0"}]}]},"head2head_matches":{"match":[{"match_id":"1350522","date":"2018-06-23","time":"14:00:00","date_utc":"2018-06-23","time_utc":"12:00:00","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"1","winner":"team_A","score_a":"4","score_b":"0","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"12457","venue_name":"BH & BC Breda","venue_city":"Breda","competition_id":"1958","competition_name":"Rabobank Hockey Champions Trophy","season_id":"16921","round_id":"22620","last_updated":"2018-12-03 14:01:54"},{"match_id":"1569897","date":"2014-12-13","time":"15:00:00","date_utc":"2014-12-13","time_utc":"14:00:00","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_B","score_a":"3","score_b":"4","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"11474","venue_name":"Kalinga Stadium","venue_city":"Bhubaneswar","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16925","round_id":"29195","last_updated":"2019-02-08 11:01:42"},{"match_id":"1569924","date":"2012-12-09","time":"03:30:00","date_utc":"2012-12-09","time_utc":"02:30:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_A","score_a":"3","score_b":"2","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"13889","venue_name":"State Netball and Hockey Centre","venue_city":"Melbourne, VIC","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16926","round_id":"29204","last_updated":"2019-02-08 11:37:34"},{"match_id":"1489563","date":"2010-02-28","time":"16:05:00","date_utc":"2010-02-28","time_utc":"15:05:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_B","score_a":"1","score_b":"4","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"neutral","final_period":"fhk_p4s","attendance":"","venue_id":"13727","venue_name":"Major Dhyan Chand National Stadium","venue_city":"New Delhi, Delhi","competition_id":"2004","competition_name":"Hero Honda Hockey World Cup","season_id":"19019","round_id":"26279","last_updated":"2019-01-26 20:53:50"},{"match_id":"1571079","date":"2005-12-18","time":"10:30:00","date_utc":"2005-12-18","time_utc":"09:30:00","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_B","score_a":"3","score_b":"4","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"14006","venue_name":"Mayor Radhakrishnan Stadium","venue_city":"Chennai, Tamil Nadu","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16933","round_id":"29337","last_updated":"2019-02-11 12:32:30"},{"match_id":"1571067","date":"2005-12-11","time":"14:00:00","date_utc":"2005-12-11","time_utc":"13:00:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_B","score_a":"2","score_b":"3","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"14006","venue_name":"Mayor Radhakrishnan Stadium","venue_city":"Chennai, Tamil Nadu","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16933","round_id":"29336","last_updated":"2019-02-11 12:32:10"},{"match_id":"1571104","date":"2004-12-12","time":"08:30:00","date_utc":"2004-12-12","time_utc":"07:30:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_A","score_a":"3","score_b":"2","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"13735","venue_name":"National Hockey Stadium","venue_city":"Lahore","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16934","round_id":"29347","last_updated":"2019-02-11 13:06:54"},{"match_id":"1571099","date":"2004-12-08","time":"12:00:00","date_utc":"2004-12-08","time_utc":"11:00:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_A","score_a":"2","score_b":"1","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"13735","venue_name":"National Hockey Stadium","venue_city":"Lahore","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16934","round_id":"29345","last_updated":"2019-02-11 13:06:18"},{"match_id":"1571122","date":"2003-08-24","time":"12:30:00","date_utc":"2003-08-24","time_utc":"10:30:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_A","score_a":"4","score_b":"3","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"13244","venue_name":"Wagener Stadium","venue_city":"Amstelveen","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16935","round_id":"29351","last_updated":"2019-02-11 14:07:20"},{"match_id":"1571118","date":"2003-08-22","time":"17:00:00","date_utc":"2003-08-22","time_utc":"15:00:00","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_A","score_a":"7","score_b":"4","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"13244","venue_name":"Wagener Stadium","venue_city":"Amstelveen","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16935","round_id":"29349","last_updated":"2019-02-11 14:06:37"},{"match_id":"1571140","date":"2002-09-08","time":"12:00:00","date_utc":"2002-09-08","time_utc":"10:00:00","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_B","score_a":"3","score_b":"4","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"14011","venue_name":"Kölner Stadtwald","venue_city":"Köln","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16936","round_id":"29355","last_updated":"2019-02-11 14:29:04"},{"match_id":"1571133","date":"2002-09-04","time":"17:45:00","date_utc":"2002-09-04","time_utc":"15:45:00","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_A","score_a":"3","score_b":"2","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"14011","venue_name":"Kölner Stadtwald","venue_city":"Köln","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16936","round_id":"29353","last_updated":"2019-02-11 14:28:30"},{"match_id":"1571498","date":"1996-12-13","time":"11:15:00","date_utc":"1996-12-13","time_utc":"10:15:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_A","score_a":"3","score_b":"2","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"14006","venue_name":"Mayor Radhakrishnan Stadium","venue_city":"Chennai, Tamil Nadu","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16942","round_id":"29391","last_updated":"2019-02-12 12:43:29"},{"match_id":"1571512","date":"1995-09-28","time":"17:00:00","date_utc":"1995-09-28","time_utc":"16:00:00","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_B","score_a":"1","score_b":"2","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"14015","venue_name":"Olympia Hockey Stadium","venue_city":"Berlin","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16943","round_id":"29395","last_updated":"2019-02-12 13:28:11"},{"match_id":"1571758","date":"1989-06-14","time":"19:30:00","date_utc":"1989-06-14","time_utc":"17:30:00","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_B","score_a":"0","score_b":"1","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"14015","venue_name":"Olympia Hockey Stadium","venue_city":"Berlin","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16949","round_id":"29415","last_updated":"2019-02-12 15:28:21"},{"match_id":"1490030","date":"1986-10-17","time":"","date_utc":"1986-10-16","time_utc":"","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_A","score_a":"3","score_b":"2","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"13736","venue_name":"Willesden Sports Centre","venue_city":"London","competition_id":"2004","competition_name":"Hockey World Cup","season_id":"19025","round_id":"26352","last_updated":"2018-12-13 16:24:12"},{"match_id":"1572125","date":"1986-04-06","time":"15:20:00","date_utc":"1986-04-06","time_utc":"13:20:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_B","score_a":"2","score_b":"3","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"14017","venue_name":"Hockey Club of Pakistan","venue_city":"Karachi","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16952","round_id":"29424","last_updated":"2019-02-13 11:01:03"},{"match_id":"1572135","date":"1985-11-16","time":"03:30:00","date_utc":"1985-11-16","time_utc":"02:30:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_B","score_a":"1","score_b":"2","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"13892","venue_name":"Perth Hockey Stadium","venue_city":"Perth, WA","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16953","round_id":"29425","last_updated":"2019-02-13 11:12:29"},{"match_id":"1572170","date":"1983-10-30","time":"","date_utc":"1983-10-29","time_utc":"","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_B","score_a":"0","score_b":"2","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"14017","venue_name":"Hockey Club of Pakistan","venue_city":"Karachi","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16955","round_id":"29427","last_updated":"2019-02-13 11:43:01"},{"match_id":"1572190","date":"1982-06-12","time":"13:30:00","date_utc":"1982-06-12","time_utc":"11:30:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"team_B","score_a":"4","score_b":"5","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"13244","venue_name":"Wagener Stadium","venue_city":"Amstelveen","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16956","round_id":"29428","last_updated":"2019-02-13 12:05:04"},{"match_id":"1572210","date":"1980-01-03","time":"08:15:00","date_utc":"1980-01-03","time_utc":"07:15:00","team_a_id":"36643","team_a_name":"Pakistan","team_a_short_name":"Pakistan","team_a_tla_name":"PAK","team_a_original_name":"Pakistan","team_a_country":"PAK","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","team_b_id":"36651","team_b_name":"India","team_b_short_name":"India","team_b_tla_name":"IND","team_b_original_name":"India","team_b_country":"IND","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","status":"Played","gameweek":"","winner":"draw","score_a":"0","score_b":"0","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"14017","venue_name":"Hockey Club of Pakistan","venue_city":"Karachi","competition_id":"1958","competition_name":"Hockey Champions Trophy","season_id":"16958","round_id":"29430","last_updated":"2019-02-13 14:03:42"},{"match_id":"1490374","date":"1975-03-15","time":"","date_utc":"1975-03-14","time_utc":"","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_A","score_a":"2","score_b":"1","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"6913","venue_name":"Stadium Merdeka","venue_city":"Kuala Lumpur, Kuala Lumpur","competition_id":"2004","competition_name":"Hockey World Cup","season_id":"19028","round_id":"26388","last_updated":"2018-12-14 14:21:23"},{"match_id":"1490414","date":"1973-08-31","time":"","date_utc":"1973-08-30","time_utc":"","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_A","score_a":"1","score_b":"0","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"13244","venue_name":"Wagener Stadium","venue_city":"Amstelveen","competition_id":"2004","competition_name":"Hockey World Cup","season_id":"19029","round_id":"26396","last_updated":"2018-12-14 14:49:00"},{"match_id":"1490443","date":"1971-10-22","time":"","date_utc":"1971-10-21","time_utc":"","team_a_id":"36651","team_a_name":"India","team_a_short_name":"India","team_a_tla_name":"IND","team_a_original_name":"India","team_a_country":"IND","team_a_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36651.png","team_b_id":"36643","team_b_name":"Pakistan","team_b_short_name":"Pakistan","team_b_tla_name":"PAK","team_b_original_name":"Pakistan","team_b_country":"PAK","team_b_logo":"https:\/\/www.dsg-images.com\/clubs\/200x200\/36643.png","status":"Played","gameweek":"","winner":"team_B","score_a":"1","score_b":"2","p1s_a":"","p1s_b":"","p2s_a":"","p2s_b":"","p3s_a":"","p3s_b":"","p4s_a":"","p4s_b":"","ot_a":"","ot_b":"","goals_a":"","goals_b":"","behinds_a":"","behinds_b":"","venue_type":"home_away","final_period":"fhk_p4s","attendance":"","venue_id":"13739","venue_name":"Real Club de Polo","venue_city":"Barcelona","competition_id":"2004","competition_name":"Hockey World Cup","season_id":"19030","round_id":"26405","last_updated":"2018-12-14 15:21:21"}]}}}