Result Summary API Follow
Result Summary API
This API call which will return more detail than the match summary API for matches which are either in progress or have reached completion and a have result attached to them.
GET http://play-cricket.com/api/v2/result_summary.json?
site_id=1234&season=2017&api_token=xxxxxx
Parameters
There are several parameters which will filter the returned set of results.
api_token : | string | required | ||
site_id: | Int | required | ||
season: | string | required | ||
division_id : | Int | |||
cup_id : | Int | |||
team_id: | Int | |||
competition_type: | string (League, Cup or Friendly) | |||
from_match_date : | string (dd/mm/yyyy) | |||
end_match_date : | string (dd/mm/yyyy) | |||
from_entry_date: | string (dd/mm/yyyyThh:mm:ss) | |||
end_entry_date: | string (dd/mm/yyyyThh:mm:ss) |
|
||
Note if running this on a competition (league) site the using just the required parameter will return all fixtures with results for a full season. This could be 1000 plus fixtures. Similarly, if run against a Club site every results for every team for the whole season will be returned which is still potentially 100s of entries.
The parameters limit and filter. division_id, cup_id and team_id filter to a specific division , cup on a competition site or by a specific team on a club site.
The comptetiion type can be used on Competition sites to restrict the types of matches returned to Leagues (Divisions), or Cups and on a Club site additionally the Friendly matches.
There are 2 sets of date range parameters:
The from_match_date and end_match_date are the fixture dates so matches either on a particular date or within a weeks will be displayed. The dates are inclusive dates so setting from_match_date as 02/09/2023 and end_match_date as 02/09/2023 will return matches from that day only
The from_entry_date and end_entry_dates relate to the ‘last_updated’ date. This changes each time a result is updated, a scorecard is changed, or an action such as locking and unlocking results and scorecards occurs. Using these 2 parameters to create a date range can be used to show changes in the last week, last day or end last hour. These dates are Date and Time stamps so to get all fixtures updated on 27/11/2023 set from_entry_date as 27/11/2023T00:00:00 and end_entry_date as 27/11/2023T23:59:59. If a date is set to dd/mm/yy without the time then the time part of the datetime will default to 00:00:00.
Here is a sample call for all premier division matches on 02/09/2023
https://play-cricket.com/api/v2/result_summary.json?site_id=534&season=2023&api_token=xxxxxxx&from_match_date=02/09/2023&end_match_date=02/09/2023&division_id=110530
There are 6 entries retrieved.
{
"result_summary": [
{
"id": 5694618,
"status": "New",
"published": "Yes",
"last_updated": "27/11/2023",
"league_name": "Warwickshire County Cricket League",
"league_id": "534",
"competition_name": "Premier Division",
"competition_id": "110530",
"competition_type": "League",
"match_type": "Limited Overs",
"game_type": "Standard",
"countdown_cricket": "no",
"match_date": "02/09/2023",
"match_time": "11:30",
"ground_name": "Handsworth Park",
"ground_id": "4932",
"home_team_name": "1st XI",
"home_team_id": "65134",
"home_club_name": "Handsworth CC, Warks",
"home_club_id": "3144",
"away_team_name": "1st XI",
"away_team_id": "33573",
"away_club_name": "Solihull Blossomfield CC",
"away_club_id": "1225",
"umpire_1_name": "",
"umpire_1_id": "",
"umpire_2_name": "",
"umpire_2_id": "",
"umpire_3_name": "",
"umpire_3_id": "",
"referee_name": "",
"referee_id": "",
"scorer_1_name": "Sushil Yadav",
"scorer_1_id": "5788489",
"scorer_2_name": "",
"scorer_2_id": "",
"toss_won_by_team_id": "65134",
"toss": "Handsworth CC, Warks - 1st XI won the toss and elected to field",
"batted_first": "33573",
"no_of_overs": "50",
"balls_per_innings": "",
"no_of_innings": "1",
"result": "W",
"result_description": "Handsworth CC, Warks - 1st XI - Win 20pts",
"result_applied_to": "65134",
"home_confirmed": "false",
"away_confirmed": "false",
"result_locked": "true",
"scorecard_locked": "true",
"match_notes": "",
"points": [
{
"team_id": 65134,
"game_points": "20",
"penalty_points": "0.0",
"bonus_points_together": "0.0",
"bonus_points_batting": "0.0",
"bonus_points_bowling": "0.0",
"bonus_points_2nd_innings_together": ""
},
{
"team_id": 33573,
"game_points": "0",
"penalty_points": "0.0",
"bonus_points_together": "2.0",
"bonus_points_batting": "0.0",
"bonus_points_bowling": "2.0",
"bonus_points_2nd_innings_together": ""
}
],
"innings": [
{
"team_batting_id": "33573",
"innings_number": 1,
"extra_byes": "5",
"extra_leg_byes": "3",
"extra_wides": "5",
"extra_no_balls": "2",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "15",
"runs": "131",
"wickets": "10",
"overs": "38.5",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
},
{
"team_batting_id": "65134",
"innings_number": 1,
"extra_byes": "0",
"extra_leg_byes": "7",
"extra_wides": "10",
"extra_no_balls": "0",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "17",
"runs": "132",
"wickets": "5",
"overs": "33.0",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
}
]
},
{
"id": 5694619,
"status": "New",
"published": "Yes",
"last_updated": "27/11/2023",
"league_name": "Warwickshire County Cricket League",
"league_id": "534",
"competition_name": "Premier Division",
"competition_id": "110530",
"competition_type": "League",
"match_type": "Limited Overs",
"game_type": "Standard",
"countdown_cricket": "no",
"match_date": "02/09/2023",
"match_time": "11:30",
"ground_name": "Rugby CC",
"ground_id": "58458",
"home_team_name": "1st XI",
"home_team_id": "9073",
"home_club_name": "Rugby CC",
"home_club_id": "137",
"away_team_name": "1st XI",
"away_team_id": "67451",
"away_club_name": "Solihull Municipal CC",
"away_club_id": "5756",
"umpire_1_name": "Navneet Sharma",
"umpire_1_id": "253397",
"umpire_2_name": "P Smith",
"umpire_2_id": "4376992",
"umpire_3_name": "",
"umpire_3_id": "",
"referee_name": "",
"referee_id": "",
"scorer_1_name": "Paul Rogers",
"scorer_1_id": "4644538",
"scorer_2_name": "Gary Edwards",
"scorer_2_id": "4920479",
"toss_won_by_team_id": "67451",
"toss": "Solihull Municipal CC - 1st XI won the toss and elected to bat",
"batted_first": "67451",
"no_of_overs": "50",
"balls_per_innings": "",
"no_of_innings": "1",
"result": "W",
"result_description": "Rugby CC - 1st XI - Win 20pts",
"result_applied_to": "9073",
"home_confirmed": "false",
"away_confirmed": "false",
"result_locked": "true",
"scorecard_locked": "true",
"match_notes": "<b>Solihull Municipal CC 1st XI Innings</b><br/>\r\n16.4 Solihull Municipal CC 1st XI: 50 runs in 16.4 overs, 69 minutes, 1 extra<br/>28.2 Solihull Municipal CC 1st XI: 100 runs in 28.2 overs, 108 minutes, 8 extras<br/>29.4 5th Wicket: 50 runs in 62 balls, 35 minutes, alex roslyn 20 (27), George Gray 24 (35), 8 extras<br/>29.5 alex roslyn: 50 runs in 86 balls, 107 minutes (3x4, 1x6)<br/>38.3 Solihull Municipal CC 1st XI: 150 runs in 38.3 overs, 136 minutes, 17 extras<br/>40.7 5th Wicket: 100 runs in 131 balls, 66 minutes, alex roslyn 36 (59), George Gray 47 (72), 17 extras<br/>42.3 George Gray: 50 runs in 74 balls, 69 minutes (7x4)<br/>47.4 Solihull Municipal CC 1st XI: 200 runs in 47.4 overs, 167 minutes, 19 extras<br/>48.4 5th Wicket: 150 runs in 177 balls, 92 minutes, alex roslyn 64 (83), George Gray 68 (94), 18 extras<br/>49.6 alex roslyn: 100 runs in 144 balls, 170 minutes (3x4, 4x6)\r\n<br/>\r\n<br/>\r\n<b>Rugby CC 1st XI Innings</b><br/>\r\n5.1 1st Wicket: 50 runs in 31 balls, 22 minutes, Matthew Ewer 10 (10), Wes Ryan Landsdale 25 (21), 18 extras<br/>5.1 Rugby CC 1st XI: 50 runs in 5.1 overs, 22 minutes, 18 extras<br/>18.2 Rugby CC 1st XI: 100 runs in 18.2 overs, 75 minutes, 26 extras<br/>27.3 5th Wicket: 50 runs in 70 balls, 44 minutes, Levi Gekis 20 (29), Kyle Taylor 28 (41), 5 extras<br/>28.2 Rugby CC 1st XI: 150 runs in 28.2 overs, 113 minutes, 31 extras<br/>33.6 Levi Gekis: 50 runs in 88 balls, 109 minutes (6x4)<br/>38.4 5th Wicket: 100 runs in 137 balls, 83 minutes, Levi Gekis 53 (68), Kyle Taylor 40 (69), 7 extras<br/>39.3 Rugby CC 1st XI: 200 runs in 39.3 overs, 153 minutes, 33 extras<br/>40.2 Kyle Taylor: 50 runs in 75 balls, 88 minutes (4x4, 2x6)\r\n<br/>\r\n",
"points": [
{
"team_id": 9073,
"game_points": "20",
"penalty_points": "0.0",
"bonus_points_together": "0.0",
"bonus_points_batting": "0.0",
"bonus_points_bowling": "0.0",
"bonus_points_2nd_innings_together": ""
},
{
"team_id": 67451,
"game_points": "0",
"penalty_points": "0.0",
"bonus_points_together": "4.0",
"bonus_points_batting": "3.0",
"bonus_points_bowling": "1.0",
"bonus_points_2nd_innings_together": ""
}
],
"innings": [
{
"team_batting_id": "67451",
"innings_number": 1,
"extra_byes": "5",
"extra_leg_byes": "2",
"extra_wides": "14",
"extra_no_balls": "1",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "22",
"runs": "229",
"wickets": "4",
"overs": "50",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
},
{
"team_batting_id": "9073",
"innings_number": 1,
"extra_byes": "0",
"extra_leg_byes": "6",
"extra_wides": "25",
"extra_no_balls": "2",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "33",
"runs": "230",
"wickets": "4",
"overs": "43",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
}
]
},
{
"id": 5694617,
"status": "New",
"published": "Yes",
"last_updated": "27/11/2023",
"league_name": "Warwickshire County Cricket League",
"league_id": "534",
"competition_name": "Premier Division",
"competition_id": "110530",
"competition_type": "League",
"match_type": "Limited Overs",
"game_type": "Standard",
"countdown_cricket": "no",
"match_date": "02/09/2023",
"match_time": "11:30",
"ground_name": "Wake Green Road Ground",
"ground_id": "",
"home_team_name": "1st XI",
"home_team_id": "68347",
"home_club_name": "Attock CC, Warwicks",
"home_club_id": "828",
"away_team_name": "1st XI",
"away_team_id": "11558",
"away_club_name": "Bedworth CC",
"away_club_id": "1033",
"umpire_1_name": "John Hough",
"umpire_1_id": "4729476",
"umpire_2_name": "Ian Gorton",
"umpire_2_id": "4792230",
"umpire_3_name": "",
"umpire_3_id": "",
"referee_name": "",
"referee_id": "",
"scorer_1_name": "Ayyash Riyas",
"scorer_1_id": "5792999",
"scorer_2_name": "Kirsty Ward",
"scorer_2_id": "4924130",
"toss_won_by_team_id": "68347",
"toss": "Attock CC, Warwicks - 1st XI won the toss and elected to bat",
"batted_first": "68347",
"no_of_overs": "50",
"balls_per_innings": "",
"no_of_innings": "1",
"result": "W",
"result_description": "Attock CC, Warwicks - 1st XI - Win 20pts",
"result_applied_to": "68347",
"home_confirmed": "false",
"away_confirmed": "false",
"result_locked": "true",
"scorecard_locked": "true",
"match_notes": "<b>Attock CC, Warwicks 1st XI Innings</b><br/>\r\n11.3 Attock CC, Warwicks 1st XI: 50 runs in 11.3 overs, 45 minutes, 1 extra<br/>23.4 Attock CC, Warwicks 1st XI: 100 runs in 23.3 overs, 98 minutes, 12 extras<br/>25.1 4th Wicket: 50 runs in 67 balls, 52 minutes, Hasan Mahmood 22 (41), Imaad Mahmood 17 (26), 11 extras<br/>31.4 Imaad Mahmood: 50 runs in 46 balls, 73 minutes (6x4, 1x6)<br/>31.5 Attock CC, Warwicks 1st XI: 150 runs in 31.5 overs, 134 minutes, 14 extras\r\n<br/>\r\n<br/>\r\n<b>Bedworth CC 1st XI Innings</b><br/>\r\n13.3 Bedworth CC 1st XI: 50 runs in 13.3 overs, 62 minutes, 1 extra<br/>23.4 Bedworth CC 1st XI: 100 runs in 23.3 overs, 103 minutes, 6 extras<br/>29.3 Amaan Khan: 50 runs in 58 balls, 88 minutes (6x4)<br/>36.6 Bedworth CC 1st XI: 150 runs in 36.5 overs, 158 minutes, 12 extras<br/>42.2 Kashif Ali: 5 wickets (8.2-0-23-5)\r\n<br/>\r\n",
"points": [
{
"team_id": 68347,
"game_points": "20",
"penalty_points": "0.0",
"bonus_points_together": "0.0",
"bonus_points_batting": "0.0",
"bonus_points_bowling": "0.0",
"bonus_points_2nd_innings_together": ""
},
{
"team_id": 11558,
"game_points": "0",
"penalty_points": "0.0",
"bonus_points_together": "5.0",
"bonus_points_batting": "1.0",
"bonus_points_bowling": "4.0",
"bonus_points_2nd_innings_together": ""
}
],
"innings": [
{
"team_batting_id": "68347",
"innings_number": 1,
"extra_byes": "6",
"extra_leg_byes": "3",
"extra_wides": "3",
"extra_no_balls": "2",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "14",
"runs": "181",
"wickets": "10",
"overs": "45.5",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
},
{
"team_batting_id": "11558",
"innings_number": 1,
"extra_byes": "0",
"extra_leg_byes": "3",
"extra_wides": "6",
"extra_no_balls": "5",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "14",
"runs": "167",
"wickets": "10",
"overs": "42.2",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
}
]
},
{
"id": 5694621,
"status": "New",
"published": "Yes",
"last_updated": "27/11/2023",
"league_name": "Warwickshire County Cricket League",
"league_id": "534",
"competition_name": "Premier Division",
"competition_id": "110530",
"competition_type": "League",
"match_type": "Limited Overs",
"game_type": "Standard",
"countdown_cricket": "no",
"match_date": "02/09/2023",
"match_time": "11:30",
"ground_name": "Rectory Park",
"ground_id": "13191",
"home_team_name": "1st XI",
"home_team_id": "234",
"home_club_name": "Sutton Coldfield CC",
"home_club_id": "208",
"away_team_name": "1st XI",
"away_team_id": "44631",
"away_club_name": "Aston Manor CC",
"away_club_id": "813",
"umpire_1_name": "Richard Fox",
"umpire_1_id": "30635",
"umpire_2_name": "Peter Savage",
"umpire_2_id": "5651660",
"umpire_3_name": "",
"umpire_3_id": "",
"referee_name": "",
"referee_id": "",
"scorer_1_name": "Steve Smith",
"scorer_1_id": "39395",
"scorer_2_name": "Andrea Prichard",
"scorer_2_id": "613227",
"toss_won_by_team_id": "44631",
"toss": "Aston Manor CC - 1st XI won the toss and elected to field",
"batted_first": "234",
"no_of_overs": "50",
"balls_per_innings": "",
"no_of_innings": "1",
"result": "W",
"result_description": "Aston Manor CC - 1st XI - Win 20pts",
"result_applied_to": "44631",
"home_confirmed": "false",
"away_confirmed": "false",
"result_locked": "true",
"scorecard_locked": "true",
"match_notes": "<b>Sutton Coldfield CC 1st XI Innings</b><br/>\r\n9.4 Sutton Coldfield CC 1st XI: 50 runs in 9.4 overs, 23 minutes, 9 extras<br/>13.3 4th Wicket: 50 runs in 38 balls, 25 minutes, Jacob Lee 20 (20), Amir Shabir 20 (18), 10 extras<br/>17.3 Sutton Coldfield CC 1st XI: 100 runs in 17.3 overs, 59 minutes, 17 extras<br/>24.2 Jacob Lee: 50 runs in 71 balls, 87 minutes (9x4)<br/>26.5 Sutton Coldfield CC 1st XI: 150 runs in 26.5 overs, 91 minutes, 20 extras<br/>32.2 Sarfraz Ali: 5 wickets (8.2-0-31-5)\r\n<br/>\r\n<br/>\r\n<b>Aston Manor CC 1st XI Innings</b><br/>\r\n14.4 Aston Manor CC 1st XI: 50 runs in 14.4 overs, 53 minutes, 1 extra<br/>20.2 5th Wicket: 50 runs in 61 balls, 34 minutes, Usama Khan 20 (37), Daanial Jamil Khan 24 (24), 7 extras<br/>27.2 Aston Manor CC 1st XI: 100 runs in 27.2 overs, 99 minutes, 8 extras<br/>38.1 Aston Manor CC 1st XI: 150 runs in 38.1 overs, 143 minutes, 16 extras\r\n<br/>\r\n",
"points": [
{
"team_id": 234,
"game_points": "0",
"penalty_points": "5.0",
"bonus_points_together": "4.0",
"bonus_points_batting": "1.0",
"bonus_points_bowling": "3.0",
"bonus_points_2nd_innings_together": ""
},
{
"team_id": 44631,
"game_points": "20",
"penalty_points": "0.0",
"bonus_points_together": "0.0",
"bonus_points_batting": "0.0",
"bonus_points_bowling": "0.0",
"bonus_points_2nd_innings_together": ""
}
],
"innings": [
{
"team_batting_id": "234",
"innings_number": 1,
"extra_byes": "4",
"extra_leg_byes": "2",
"extra_wides": "13",
"extra_no_balls": "1",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "20",
"runs": "162",
"wickets": "10",
"overs": "32.2",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
},
{
"team_batting_id": "44631",
"innings_number": 1,
"extra_byes": "0",
"extra_leg_byes": "3",
"extra_wides": "14",
"extra_no_balls": "0",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "17",
"runs": "163",
"wickets": "8",
"overs": "41.4",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
}
]
},
{
"id": 5694622,
"status": "New",
"published": "Yes",
"last_updated": "27/11/2023",
"league_name": "Warwickshire County Cricket League",
"league_id": "534",
"competition_name": "Premier Division",
"competition_id": "110530",
"competition_type": "League",
"match_type": "Limited Overs",
"game_type": "Standard",
"countdown_cricket": "no",
"match_date": "02/09/2023",
"match_time": "11:30",
"ground_name": "John Findlay Memorial Ground B76 1LT",
"ground_id": "1642",
"home_team_name": "1st XI",
"home_team_id": "29315",
"home_club_name": "Walmley CC",
"home_club_id": "6626",
"away_team_name": "1st XI",
"away_team_id": "27700",
"away_club_name": "Stratford-upon-Avon CC",
"away_club_id": "6115",
"umpire_1_name": "V Clements",
"umpire_1_id": "5642029",
"umpire_2_name": "Kevin Bates",
"umpire_2_id": "4376547",
"umpire_3_name": "",
"umpire_3_id": "",
"referee_name": "",
"referee_id": "",
"scorer_1_name": "Rachael Wyatt",
"scorer_1_id": "5613900",
"scorer_2_name": "Chris Belcher",
"scorer_2_id": "5767132",
"toss_won_by_team_id": "29315",
"toss": "Walmley CC - 1st XI won the toss and elected to field",
"batted_first": "27700",
"no_of_overs": "50",
"balls_per_innings": "",
"no_of_innings": "1",
"result": "W",
"result_description": "Walmley CC - 1st XI - Win 20pts",
"result_applied_to": "29315",
"home_confirmed": "false",
"away_confirmed": "false",
"result_locked": "true",
"scorecard_locked": "true",
"match_notes": "<b>Stratford-upon-Avon CC 1st XI Innings</b><br/>\r\n14.5 Stratford-upon-Avon CC 1st XI: 50 runs in 14.5 overs, 45 minutes, 3 extras<br/>23.1 2nd Wicket: 50 runs in 63 balls, 32 minutes, Gareth Langman 21 (37), Nathan Edwards 26 (26), 3 extras<br/>28.4 Stratford-upon-Avon CC 1st XI: 100 runs in 28.4 overs, 96 minutes, 7 extras<br/>29.5 Gareth Langman: 50 runs in 101 balls, 98 minutes (8x4)<br/>39.1 Stratford-upon-Avon CC 1st XI: 150 runs in 39.1 overs, 129 minutes, 9 extras<br/>39.2 6th Wicket: 50 runs in 54 balls, 27 minutes, Cameron Stiles 16 (14), Harry Dube 32 (40), 2 extras<br/>46.1 Harry Dube: 50 runs in 54 balls, 49 minutes (4x4, 3x6)\r\n<br/>\r\n<br/>\r\n<b>Walmley CC 1st XI Innings</b><br/>\r\n10.2 Walmley CC 1st XI: 50 runs in 10.2 overs, 42 minutes, 1 extra<br/>22.2 Walmley CC 1st XI: 100 runs in 22.2 overs, 91 minutes, 3 extras<br/>30.1 Sarmad Bhatti: 50 runs in 59 balls, 83 minutes (7x4)<br/>32.2 Walmley CC 1st XI: 150 runs in 32.2 overs, 139 minutes, 6 extras<br/>33.2 5th Wicket: 50 runs in 52 balls, 42 minutes, Sarmad Bhatti 34 (21), Shayaan Tahir 13 (31), 3 extras\r\n<br/>\r\n",
"points": [
{
"team_id": 29315,
"game_points": "20",
"penalty_points": "0.0",
"bonus_points_together": "0.0",
"bonus_points_batting": "0.0",
"bonus_points_bowling": "0.0",
"bonus_points_2nd_innings_together": ""
},
{
"team_id": 27700,
"game_points": "0",
"penalty_points": "0.0",
"bonus_points_together": "3.0",
"bonus_points_batting": "2.0",
"bonus_points_bowling": "1.0",
"bonus_points_2nd_innings_together": ""
}
],
"innings": [
{
"team_batting_id": "27700",
"innings_number": 1,
"extra_byes": "0",
"extra_leg_byes": "4",
"extra_wides": "5",
"extra_no_balls": "1",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "10",
"runs": "198",
"wickets": "10",
"overs": "48.2",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
},
{
"team_batting_id": "29315",
"innings_number": 1,
"extra_byes": "0",
"extra_leg_byes": "0",
"extra_wides": "7",
"extra_no_balls": "0",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "7",
"runs": "199",
"wickets": "4",
"overs": "42",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
}
]
},
{
"id": 5694620,
"status": "New",
"published": "Yes",
"last_updated": "27/11/2023",
"league_name": "Warwickshire County Cricket League",
"league_id": "534",
"competition_name": "Premier Division",
"competition_id": "110530",
"competition_type": "League",
"match_type": "Limited Overs",
"game_type": "Standard",
"countdown_cricket": "no",
"match_date": "02/09/2023",
"match_time": "11:30",
"ground_name": "Streetly Sports Club",
"ground_id": "45283",
"home_team_name": "1st XI",
"home_team_id": "145317",
"home_club_name": "Streetly CC",
"home_club_id": "6123",
"away_team_name": "1st XI",
"away_team_id": "121996",
"away_club_name": "Olton & West Warwicks CC",
"away_club_id": "4884",
"umpire_1_name": "Ian Murrie",
"umpire_1_id": "4070524",
"umpire_2_name": "Richard Coombes",
"umpire_2_id": "4103314",
"umpire_3_name": "",
"umpire_3_id": "",
"referee_name": "",
"referee_id": "",
"scorer_1_name": "Heather Moore",
"scorer_1_id": "50889",
"scorer_2_name": "Phil Williams",
"scorer_2_id": "378",
"toss_won_by_team_id": "121996",
"toss": "Olton & West Warwicks CC - 1st XI won the toss and elected to field",
"batted_first": "145317",
"no_of_overs": "50",
"balls_per_innings": "",
"no_of_innings": "1",
"result": "W",
"result_description": "Olton & West Warwicks CC - 1st XI - Win 20pts",
"result_applied_to": "121996",
"home_confirmed": "false",
"away_confirmed": "false",
"result_locked": "true",
"scorecard_locked": "true",
"match_notes": "<b>Streetly CC 1st XI Innings</b><br/>\r\n8.3 1st Wicket: 50 runs in 53 balls, 41 minutes, Muhammad Daniyaal 29 (32), Rahim Khalil 12 (21), 10 extras<br/>8.3 Streetly CC 1st XI: 50 runs in 8.3 overs, 41 minutes, 10 extras<br/>16.1 Streetly CC 1st XI: 100 runs in 16.1 overs, 72 minutes, 17 extras<br/>32.2 Streetly CC 1st XI: 150 runs in 32.2 overs, 142 minutes, 32 extras<br/>40.4 9th Wicket: 50 runs in 55 balls, 25 minutes, Usman Khan 26 (22), Babar Khan 25 (33), 1 extra<br/>40.6 Streetly CC 1st XI: 200 runs in 41.0 overs, 166 minutes, 33 extras\r\n<br/>\r\n<br/>\r\n<b>Olton & West Warwicks CC 1st XI Innings</b><br/>\r\n9.6 Olton & West Warwicks CC 1st XI: 50 runs in 10.0 overs, 39 minutes, 5 extras<br/>22.3 Olton & West Warwicks CC 1st XI: 100 runs in 22.3 overs, 88 minutes, 18 extras<br/>23.5 4th Wicket: 50 runs in 56 balls, 32 minutes, Will Elvidge 21 (31), Harvey Rogers-Collen 17 (25), 12 extras<br/>34.6 Olton & West Warwicks CC 1st XI: 150 runs in 35.0 overs, 132 minutes, 18 extras<br/>36.4 5th Wicket: 50 runs in 71 balls, 42 minutes, Will Elvidge 14 (36), Aman Hussain 36 (35), 0 extras<br/>39.1 Will Elvidge: 50 runs in 96 balls, 115 minutes (8x4)<br/>41.5 Olton & West Warwicks CC 1st XI: 200 runs in 41.5 overs, 155 minutes, 18 extras\r\n<br/>\r\n",
"points": [
{
"team_id": 145317,
"game_points": "0",
"penalty_points": "0.0",
"bonus_points_together": "4.0",
"bonus_points_batting": "3.0",
"bonus_points_bowling": "1.0",
"bonus_points_2nd_innings_together": ""
},
{
"team_id": 121996,
"game_points": "20",
"penalty_points": "0.0",
"bonus_points_together": "0.0",
"bonus_points_batting": "0.0",
"bonus_points_bowling": "0.0",
"bonus_points_2nd_innings_together": ""
}
],
"innings": [
{
"team_batting_id": "145317",
"innings_number": 1,
"extra_byes": "1",
"extra_leg_byes": "1",
"extra_wides": "27",
"extra_no_balls": "4",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "33",
"runs": "212",
"wickets": "10",
"overs": "42.3",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
},
{
"team_batting_id": "121996",
"innings_number": 1,
"extra_byes": "0",
"extra_leg_byes": "4",
"extra_wides": "14",
"extra_no_balls": "0",
"extra_penalty_runs": "0",
"penalties_runs_awarded_in_other_innings": "0",
"total_extras": "18",
"runs": "215",
"wickets": "4",
"overs": "43.3",
"balls": "",
"declared": false,
"forfeited_innings": false,
"revised_target_runs": "",
"revised_target_overs": "50.0",
"revised_target_balls": ""
}
]
}
]
}
Note the last_updated date which for these results was 27/11/2023 (the date the league admin locked all the scorecards).
In the main array for each match is the results and the match details , there are additional sub arrays for the points for each team and the scores in each innings.
This would allow the user to build a summary results list. To get a scorecard however the match_detail call is required to be run at a match level. A common approach for integrators wishing to obtain scorecard data is to run the results summary call and save locally the data, then to run the match_details call either fixture by fixture or examine the last updated date and only run if this data has changed.