Match Data API
Retrieve Live Cricket Match Details
This endpoint makes an HTTP GET request to retrieve the live details of a specific cricket match.
Request
Endpoint:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/live
Response
Status: 200
Content-Type: application/json
Body:
The response contains live details of the cricket match including batting and bowling statistics, partnership details, overs remaining, review details, run rate, live score URL, and more. The response also includes data about the last 12 balls bowled in the match.
255314
{API_KEY}
GET /cricket/api/v2/match/{matchId}/live HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"miniScore": {
"batting": [
{
"matchID": "260875",
"playerFeedID": null,
"playerName": "Shashank Singh",
"sixes": "6",
"fours": "3",
"playerID": "63520",
"battingStyle": "RHB",
"playerMatchStrikeRate": "203.33",
"runs": "61",
"playerOnStrike": false,
"playerMatchBalls": "30",
"playerDismissalInfo": "not out"
},
{
"matchID": "260875",
"playerFeedID": null,
"playerName": "Kyle Jamieson",
"sixes": "0",
"fours": "0",
"playerID": "63865",
"battingStyle": "RHB",
"playerMatchStrikeRate": "0",
"runs": "0",
"playerOnStrike": false,
"playerMatchBalls": "2",
"playerDismissalInfo": "not out"
}
],
"bowling": [
{
"playerID": "4255",
"matchID": "260875",
"playerFeedID": null,
"playerName": "Josh Hazlewood",
"playerTeam": "RCB",
"wickets": "1",
"maiden": "0",
"RunsConceeded": "54",
"overs": "4",
"economy": "13.50"
}
],
"partnership": "39(16)",
"oversRemaining": "",
"reviewDetails": [
{
"teamName": "PBKS",
"review": "2"
},
{
"teamName": "RCB",
"review": ""
}
],
"runRate": "9.20",
"rRunRate": "",
"liveScoreUrl": "PBKS-184/7-(20.0)",
"data": [
{
"homeTeamID": "1105",
"awayTeamID": "1107",
"league": null,
"winningTeamID": "1105",
"currentinningsNo": "2",
"currentInningteamID": "1107",
"currentInningsTeamName": "Punjab Kings",
"seriesName": "Indian Premier League, 2025",
"seriesID": "7126",
"homeTeamName": "RCB",
"awayTeamName": "PBKS",
"toss": "Punjab Kings won the toss and elected to field",
"startEndDate": null,
"matchStatus": "completed",
"matchID": "260875",
"matchType": "T20",
"statusMessage": "Royal Challengers Bengaluru beat Punjab Kings by 6 runs",
"matchNumber": "Final",
"venue": " Ahmedabad",
"matchResult": "RCB Won By 6 runs",
"startDate": "1748979000000",
"playerID": "63788",
"playerOfTheMatch": "Krunal Pandya",
"playerofTheMatchTeamShortName": null,
"firstInningsTeamID": "1105",
"secondInningsTeamID": "1107",
"thirdInningsTeamID": "",
"fourthInningsTeamID": "",
"isAbandoned": false,
"playing11Status": true,
"probable11Status": true,
"currentDay": null,
"currentSession": null,
"playerOfTheMatchdDetails": {
"batsmanTab": true,
"playerID": "63788",
"playerName": "Krunal Pandya",
"playerTeamID": "1105"
},
"teamsWinProbability": {
"homeTeamShortName": "RCB",
"homeTeamPercentage": "100",
"awayTeamShortName": "PBKS",
"awayTeamPercentage": "0",
"tiePercentage": "0"
},
"matchScore": [
{
"teamShortName": "RCB",
"teamID": "1105",
"teamFullName": "Royal Challengers Bengaluru",
"teamScore": [
{
"inning": 1,
"inningNumber": "First",
"battingTeam": "Royal Challengers Bengaluru",
"runsScored": "190",
"wickets": "9",
"overs": "20.0",
"runRate": "9.50",
"battingSide": "home",
"teamID": "1105",
"battingTeamShortName": "RCB",
"declared": false,
"folowOn": false
}
]
},
{
"teamShortName": "PBKS",
"teamID": "1107",
"teamFullName": "Punjab Kings",
"teamScore": [
{
"inning": 2,
"inningNumber": "Second",
"battingTeam": "Punjab Kings",
"runsScored": "184",
"wickets": "7",
"overs": "20.0",
"runRate": "9.20",
"battingSide": "away",
"teamID": "1107",
"battingTeamShortName": "PBKS",
"declared": false,
"folowOn": false
}
]
}
],
"superOver": false
}
]
},
"last12Balls": [
{
"over": [
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "19",
"runs": "6",
"type": "six"
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "19",
"runs": "0",
"type": ""
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "19",
"runs": "0",
"type": ""
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "19",
"runs": "4",
"type": "four"
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "19",
"runs": "2",
"type": ""
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "true",
"overNumber": "19",
"runs": "1",
"type": ""
}
],
"overNumber": "19"
}
]
}
Retrieve Live Cricket Match Details
This endpoint makes an HTTP GET request to retrieve the live details of a specific cricket match identified by the matchId
. The purpose of this request is to provide comprehensive information about the match, including team details, player statistics, recent performances, and venue information.
Request
Endpoint:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/details
Method: GET
Response
Status: 200
Content-Type: application/json
Body Structure:
The response contains detailed information about the cricket match, structured as follows:
seriesName: Name of the series.
seriesID: Unique identifier for the series.
homeTeamID: Identifier for the home team.
homeTeamName: Name of the home team.
homeTeamShortName: Short name for the home team.
awayTeamID: Identifier for the away team.
awayTeamName: Name of the away team.
awayTeamShortName: Short name for the away team.
date: Date of the match.
matchOrder: Order of the match in the series.
toss: Details of the toss.
venue: Venue of the match.
venueID: Identifier for the venue.
type: Type of match (e.g., Test, ODI).
umpires: Umpires officiating the match.
thirdUmpire: Third umpire details.
matchReferee: Referee details for the match.
homePlayingXI: List of players in the home team, including player ID, role, club name, image, and captain status.
awayPlayingXI: List of players in the away team, with similar details as above.
homeTeamImage: Image URL for the home team.
awayTeamImage: Image URL for the away team.
recentPerformance: Recent performance statistics, including the last five matches played by the teams.
head2head: Historical performance between the two teams.
weatherConditions: Current weather details including humidity, temperature, visibility, and wind speed.
venueDetails: Detailed information about the venue, including capacity, location, and pitch conditions.
overallAgainst: Overall performance statistics against the opponent.
teamHub: Team hub information (if applicable).
notes: Additional notes related to the match.
This endpoint provides a comprehensive overview of the match, making it useful for fans, analysts, and stakeholders interested in cricket match statistics and details.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/details HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"seriesName": "ICC World Test Championship Final, 2025",
"seriesID": "7197",
"homeTeamID": "7",
"homeTeamName": "South Africa",
"homeTeamShortName": "SA",
"awayTeamID": "1",
"awayTeamName": "Australia",
"awayTeamShortName": "AUS",
"date": "1749654000000",
"matchOrder": "Final",
"toss": "South Africa won the toss and elected to field",
"venue": "Lord's Cricket Ground, London",
"venueID": "89",
"type": "international",
"umpires": "Chris Gaffaney (NZ), Richard Illingworth (ENG) ",
"thirdUmpire": " Richard Kettleborough (ENG)",
"matchReferee": "Javagal Srinath (IND)",
"homePlayingXI": [
{
"playerID": "64219",
"playerRole": "All-Rounder",
"playerClubName": "SA",
"playerName": "Aiden Markram",
"playerImage": "noImage",
"captain": false
},
{
"playerID": "64941",
"playerRole": "Wicket-Keeper",
"playerClubName": "SA",
"playerName": "Ryan Rickelton",
"playerImage": "noImage",
"captain": false
}
],
"awayPlayingXI": [
{
"playerID": "10048",
"playerRole": "Batsman",
"playerClubName": "AUS",
"playerName": "Usman Khawaja",
"playerImage": "noImage",
"captain": false
},
{
"playerID": "65083",
"playerRole": "Batsman",
"playerClubName": "AUS",
"playerName": "Marnus Labuschagne",
"playerImage": "noImage",
"captain": false
}
],
"venueDetails": {
"venueId": "89",
"overall": {
"pitch_bat_bowl_condition_id": "2",
"pitch_bat_bowl_condition_desc": "Bowling",
"pitch_for_spin_pace": "Pace",
"spinner_stats": {
"overs": "224.6",
"runs": "844",
"wickets": "22",
"wickets_percentage": "13.66",
"economy": "3.75"
},
"pacer_stats": {
"overs": "1007.5",
"runs": "3808",
"wickets": "139",
"wickets_percentage": "86.34",
"economy": "3.76"
},
"team_stats": [
{
"id": "7",
"name": "South Africa",
"short_name": "",
"matches_played": "1",
"won": "0",
"lost": "1",
"tied": "0",
"noresult": "0",
"win_percentage": "0"
},
{
"id": "1",
"name": "Australia",
"short_name": "",
"matches_played": "1",
"won": "1",
"lost": "0",
"tied": "0",
"noresult": "0",
"win_percentage": "100"
}
],
"toss_winner": {
"bat_first": {
"matches_played": "0",
"won": "0",
"lost": "0",
"tied": "0",
"noresult": "0",
"abandoned": "0",
"win_percentage": "",
"bat_first_percentage": "0"
},
"bowl_first": {
"matches_played": "5",
"won": "3",
"lost": "2",
"tied": "0",
"noresult": "0",
"abandoned": "0",
"win_percentage": "60",
"bowl_first_percentage": "100"
}
},
"bat_first": {
"matches_played": "5",
"won": "2",
"lost": "3",
"tied": "0",
"noresult": "0",
"abandoned": "0",
"win_percentage": "40"
},
"bowl_first": {
"matches_played": "5",
"won": "3",
"lost": "2",
"tied": "0",
"noresult": "0",
"abandoned": "0",
"win_percentage": "60"
},
"average_first_innings_score": "260",
"average_innings_score": "270",
"average_second_innings_score": "348",
"highest_score_at_venue": "729"
},
"venueLat": "51.529986",
"venueLong": "-0.172223",
"city": "London",
"name": "Lord's Cricket Ground, London",
"established": "",
"capacity": "30000",
"country": "England"
},
"homeTeamImage": "https://static-image.sportsapi360.com/cricket/logo/team/7",
"awayTeamImage": "https://static-image.sportsapi360.com/cricket/logo/team/1",
"recentPerformance": [
{
"id": "7",
"last_five_matches": [
{
"id": "244853",
"file_name": "sapk01032025244853",
"display_output": "South Africa beat Pakistan by 10 wickets on January 3, 2025 at Newlands, Cape Town",
"result": "South Africa beat Pakistan by 10 wickets",
"result_short": "SA beat PAK by 10 wkts",
"venue_id": "112",
"venue_name": "Newlands, Cape Town",
"venue_city": "Cape Town",
"winner_team_id": "7",
"winner_team_name": "South Africa",
"loser_team_id": "6",
"loser_team_name": "Pakistan",
"win_by": "w",
"margin_value": "10",
"match_player": "Ryan Rickelton",
"match_start_date": "03-01-2025",
"match_end_date": "07-01-2025",
"against_team_id": "6",
"against_team_name": "Pakistan",
"against_team_short_name": "PAK",
"home_team_id": "7",
"away_team_id": "6",
"match_number": "2nd Test",
"innings": [
{
"number": "1",
"batting_team": "7",
"bowling_team": "6",
"total": "615",
"wickets": "10",
"overs": "141.3",
"is_declared": false
},
{
"number": "2",
"batting_team": "6",
"bowling_team": "7",
"total": "194",
"wickets": "10",
"overs": "54.2",
"is_declared": false
},
{
"number": "3",
"batting_team": "6",
"bowling_team": "7",
"total": "478",
"wickets": "10",
"overs": "122.1",
"is_declared": false
},
{
"number": "4",
"batting_team": "7",
"bowling_team": "6",
"total": "58",
"wickets": "0",
"overs": "7.1",
"is_declared": false
}
]
}
]
},
{
"id": "1",
"last_five_matches": [
{
"id": "253734",
"file_name": "slau02062025253734",
"display_output": "Australia beat Sri Lanka by 9 wickets on February 6, 2025 at Galle International Stadium, Galle",
"result": "Australia beat Sri Lanka by 9 wickets",
"result_short": "AUS beat SL by 9 wkts",
"venue_id": "56",
"venue_name": "Galle International Stadium, Galle",
"venue_city": "Galle",
"winner_team_id": "1",
"winner_team_name": "Australia",
"loser_team_id": "8",
"loser_team_name": "Sri Lanka",
"win_by": "w",
"margin_value": "9",
"match_player": "Alex Carey",
"match_start_date": "06-02-2025",
"match_end_date": "10-02-2025",
"against_team_id": "8",
"against_team_name": "Sri Lanka",
"against_team_short_name": "SL",
"home_team_id": "8",
"away_team_id": "1",
"match_number": "2nd Test",
"innings": [
{
"number": "1",
"batting_team": "8",
"bowling_team": "1",
"total": "257",
"wickets": "10",
"overs": "97.4",
"is_declared": false
},
{
"number": "2",
"batting_team": "1",
"bowling_team": "8",
"total": "414",
"wickets": "10",
"overs": "106.4",
"is_declared": false
},
{
"number": "3",
"batting_team": "8",
"bowling_team": "1",
"total": "231",
"wickets": "10",
"overs": "68.1",
"is_declared": false
},
{
"number": "4",
"batting_team": "1",
"bowling_team": "8",
"total": "75",
"wickets": "1",
"overs": "17.4",
"is_declared": false
}
]
}
]
}
],
"head2head": [
{
"id": "213024",
"file_name": "ausa01042023213024",
"display_output": "Australia drew with South Africa on January 4, 2023 at Sydney Cricket Ground (SCG), Sydney",
"result": "Australia drew with South Africa",
"result_short": "AUS drew with SA",
"venue_id": "154",
"venue_name": "Sydney Cricket Ground (SCG), Sydney",
"venue_city": "Sydney",
"winner_team_id": "",
"winner_team_name": "",
"loser_team_id": "",
"loser_team_name": "",
"win_by": "d",
"margin_value": "",
"match_player": "Usman Khawaja",
"match_start_date": "04-01-2023",
"match_end_date": "08-01-2023",
"against_team_id": "1",
"against_team_name": "Australia",
"against_team_short_name": "AUS",
"home_team_id": "1",
"away_team_id": "7",
"match_number": "3rd Test",
"innings": [
{
"number": "1",
"batting_team": "1",
"bowling_team": "7",
"total": "475",
"wickets": "4",
"overs": "131",
"is_declared": true
},
{
"number": "2",
"batting_team": "7",
"bowling_team": "1",
"total": "255",
"wickets": "10",
"overs": "108",
"is_declared": false
},
{
"number": "3",
"batting_team": "7",
"bowling_team": "1",
"total": "106",
"wickets": "2",
"overs": "41.5",
"is_declared": false
}
]
}
],
"weatherConditions": {
"weatherId": "16",
"weather": "Clouds",
"description": "broken clouds",
"humidity": "56%",
"temperature": "21.91C",
"visibility": "10000 meter",
"windSpeed": "6.25 meter/sec"
},
"teamRecords": null,
"notes": [
{
"innings": "1",
"notes": [
"Drinks: Australia 29/2 in 13.0 overs",
"Australia 53/3 in 20.0 overs",
"Referral 1 (21.6 ovs): SA against S Smith (LBW) Unsuccessful (SA: 3, AUS: 3) (Retained)",
"Lunch: Australia 67/4 in 23.2 overs"
]
},
{
"innings": "2",
"notes": [
"South Africa 50/4 in 24.2 overs",
"Referral 1 (27.3 ovs): T Bavuma against AUS (LBW) Successful (SA: 3, AUS: 3)",
"Stumps: Australia 144/8 in 40.0 overs"
]
},
{
"innings": "3",
"notes": [
"T Bavuma 25th Test fifty: 50 runs in 83 balls (4x4) (0x6)",
"South Africa 200/2 in 51.4 overs",
"A Markram 8th Test hundred: 102 runs in 156 balls (11x4) (0x6)",
"Stumps: South Africa 213/2 in 56.0 overs"
]
},
{
"innings": "4",
"notes": [
"Referral 1 (64.4 ovs): AUS against T Stubbs (LBW) Unsuccessful (SA: 3, AUS: 2)",
"Drinks: South Africa 238/3 in 69.0 overs",
"Referral 2 (70.2 ovs): AUS against T Stubbs (Caught) Unsuccessful (SA: 3, AUS: 1)",
"Referral 3 (72.5 ovs): AUS against D Bedingham (LBW) Unsuccessful (SA: 3, AUS: 0)"
]
},
{
"innings": "5",
"notes": []
}
]
}
Retrieve Live Cricket Match Scoreboard
This endpoint retrieves the scoreboard for a specific cricket match identified by matchId
. It provides comprehensive details about the match, including team performances, player statistics, and current match status.
Request Parameters
matchId (path parameter): The unique identifier for the cricket match whose scoreboard is being requested.
Request
Endpoint:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/live
Response
Status: 200
Content-Type: application/json
Response Structure
The response is a JSON array containing the following key components:
Substitutes: List of players who are substitutes, including their IDs and names.
impactPlayer: Array of impact players.
battingTeamName: Name of the batting team.
battingTeamShortName: Short name of the batting team.
battingTeamID: Unique identifier for the batting team.
runsScored: Total runs scored by the batting team.
wickets: Number of wickets lost.
overs: Total overs bowled.
runRate: Current run rate.
runRateProjection: Array containing projections of the run rate.
nextBatsmans: List of players who are next to bat, including their statistics.
batting: Detailed statistics for each player currently batting.
bowling: Detailed statistics for each player currently bowling.
extras: Information about extras such as byes, leg byes, no balls, and total extras.
fow: List of players who have been dismissed, including their details.
total: Summary of the total overs, runs scored, wickets, and run rate.
This endpoint is essential for obtaining real-time updates on match progress and player performance.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/scoreboard HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
[
{
"Substitutes": [
{
"playerInID": "100564",
"playerInName": "Suyash Sharma",
"teamID": "1105",
"playerOutID": "10115",
"playerOutName": "Mayank Agarwal"
}
],
"impactPlayer": [
"Swapnil Singh",
"Tim Seifert",
"Manoj Bhandage",
"Rasikh Salam",
"Suyash Sharma"
],
"battingTeamName": "Royal Challengers Bengaluru",
"battingTeamShortName": "RCB",
"battingTeamID": "1105",
"runsScored": null,
"wickets": null,
"overs": null,
"runRate": null,
"runRateProjection": [],
"nextBatsmans": [
{
"playerID": null,
"playerName": null,
"playerTeam": null,
"playerMatchSixes": null,
"playerMatchFours": null,
"playerMatchBalls": null,
"playerMatchRuns": null,
"playerBattingNumber": null,
"playerMatchStrikeRate": null,
"playerMatchAvg": null,
"isNotOut": null,
"zad": null
},
{
"playerID": null,
"playerName": null,
"playerTeam": null,
"playerMatchSixes": null,
"playerMatchFours": null,
"playerMatchBalls": null,
"playerMatchRuns": null,
"playerBattingNumber": null,
"playerMatchStrikeRate": null,
"playerMatchAvg": null,
"isNotOut": null,
"zad": null
}
],
"batting": [
{
"matchID": "260875",
"playerID": "65632",
"playerName": "Phil Salt",
"playerTeam": "RCB",
"playerMatchSixes": "1",
"playerMatchFours": "2",
"playerMatchBalls": "9",
"playerMatchRuns": "16",
"playerBattingNumber": "0",
"playerDismissalInfo": "caught",
"playerHowOut": "c Shreyas Iyer b Kyle Jamieson",
"playerMatchStrikeRate": "177.77",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "0",
"zadval": ""
},
{
"runs": "6",
"zadval": "2,51,5"
},
{
"runs": "2",
"zadval": "8,338,4"
},
{
"runs": "4",
"zadval": "2,66,5"
},
{
"runs": "4",
"zadval": "7,282,5"
}
]
},
{
"matchID": "260875",
"playerID": "3993",
"playerName": "Virat Kohli",
"playerTeam": "RCB",
"playerMatchSixes": "0",
"playerMatchFours": "3",
"playerMatchBalls": "35",
"playerMatchRuns": "43",
"playerBattingNumber": "1",
"playerDismissalInfo": "caught",
"playerHowOut": "c & b Azmatullah Omarzai",
"playerMatchStrikeRate": "122.85",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "7,300,4"
},
{
"runs": "2",
"zadval": "8,318,4"
},
{
"runs": "1",
"zadval": "5,201,4"
},
{
"runs": "1",
"zadval": "7,304,4"
},
{
"runs": "1",
"zadval": "7,289,4"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "1",
"zadval": "8,348,4"
},
{
"runs": "4",
"zadval": "8,319,5"
},
{
"runs": "1",
"zadval": "5,184,3"
},
{
"runs": "1",
"zadval": "7,311,4"
},
{
"runs": "1",
"zadval": "8,344,4"
},
{
"runs": "1",
"zadval": "8,335,4"
},
{
"runs": "1",
"zadval": "4,159,4"
},
{
"runs": "1",
"zadval": "6,265,3"
},
{
"runs": "4",
"zadval": "2,56,5"
},
{
"runs": "1",
"zadval": "5,184,3"
},
{
"runs": "1",
"zadval": "4,178,4"
},
{
"runs": "1",
"zadval": "1,41,3"
},
{
"runs": "2",
"zadval": "5,196,4"
},
{
"runs": "1",
"zadval": "8,332,4"
},
{
"runs": "1",
"zadval": "2,53,3"
},
{
"runs": "1",
"zadval": "7,287,4"
},
{
"runs": "2",
"zadval": "5,195,4"
},
{
"runs": "1",
"zadval": "8,352,3"
},
{
"runs": "1",
"zadval": "5,195,4"
},
{
"runs": "1",
"zadval": "8,344,4"
},
{
"runs": "1",
"zadval": "7,283,4"
},
{
"runs": "1",
"zadval": "7,296,4"
},
{
"runs": "1",
"zadval": "8,319,4"
},
{
"runs": "4",
"zadval": "3,95,5"
},
{
"runs": "1",
"zadval": "8,342,4"
},
{
"runs": "1",
"zadval": "1,33,4"
}
]
},
{
"matchID": "260875",
"playerID": "10115",
"playerName": "Mayank Agarwal",
"playerTeam": "RCB",
"playerMatchSixes": "1",
"playerMatchFours": "2",
"playerMatchBalls": "18",
"playerMatchRuns": "24",
"playerBattingNumber": "2",
"playerDismissalInfo": "caught",
"playerHowOut": "c Arshdeep Singh b Yuzvendra Chahal",
"playerMatchStrikeRate": "133.33",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": false,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "3,114,3"
},
{
"runs": "2",
"zadval": "5,206,4"
},
{
"runs": "1",
"zadval": "5,186,4"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "6",
"zadval": "6,266,5"
},
{
"runs": "4",
"zadval": "4,147,5"
},
{
"runs": "1",
"zadval": "1,0,3"
},
{
"runs": "1",
"zadval": "4,164,4"
},
{
"runs": "2",
"zadval": "5,199,4"
},
{
"runs": "4",
"zadval": "5,218,5"
},
{
"runs": "2",
"zadval": "8,318,4"
}
]
},
{
"matchID": "260875",
"playerID": "65687",
"playerName": "Rajat Patidar",
"playerTeam": "RCB",
"playerMatchSixes": "2",
"playerMatchFours": "1",
"playerMatchBalls": "16",
"playerMatchRuns": "26",
"playerBattingNumber": "3",
"playerDismissalInfo": "lbw",
"playerHowOut": "lbw b Kyle Jamieson",
"playerMatchStrikeRate": "162.50",
"isCaptain": true,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "7,301,4"
},
{
"runs": "1",
"zadval": "8,338,4"
},
{
"runs": "4",
"zadval": "4,141,5"
},
{
"runs": "1",
"zadval": "1,39,4"
},
{
"runs": "1",
"zadval": "5,210,1"
},
{
"runs": "6",
"zadval": "8,316,5"
},
{
"runs": "2",
"zadval": "1,21,4"
},
{
"runs": "1",
"zadval": "7,292,4"
},
{
"runs": "1",
"zadval": "1,22,4"
},
{
"runs": "2",
"zadval": "2,68,4"
},
{
"runs": "6",
"zadval": "6,245,5"
}
]
},
{
"matchID": "260875",
"playerID": "63940",
"playerName": "Liam Livingstone",
"playerTeam": "RCB",
"playerMatchSixes": "2",
"playerMatchFours": "0",
"playerMatchBalls": "15",
"playerMatchRuns": "25",
"playerBattingNumber": "4",
"playerDismissalInfo": "lbw",
"playerHowOut": "lbw b Kyle Jamieson",
"playerMatchStrikeRate": "166.66",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "6,243,4"
},
{
"runs": "1",
"zadval": "5,199,3"
},
{
"runs": "1",
"zadval": "5,195,4"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "1",
"zadval": "8,358,4"
},
{
"runs": "1",
"zadval": "6,255,4"
},
{
"runs": "6",
"zadval": "5,222,5"
},
{
"runs": "1",
"zadval": "7,294,4"
},
{
"runs": "1",
"zadval": "6,254,4"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "1",
"zadval": "4,172,3"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "1",
"zadval": "6,259,4"
},
{
"runs": "1",
"zadval": "1,41,4"
},
{
"runs": "2",
"zadval": "8,343,4"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "6",
"zadval": "8,331,5"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "1",
"zadval": "7,291,4"
}
]
},
{
"matchID": "260875",
"playerID": "64724",
"playerName": "Jitesh Sharma",
"playerTeam": "RCB",
"playerMatchSixes": "2",
"playerMatchFours": "2",
"playerMatchBalls": "10",
"playerMatchRuns": "24",
"playerBattingNumber": "5",
"playerDismissalInfo": "bowled",
"playerHowOut": "b Vyshak Vijaykumar",
"playerMatchStrikeRate": "240",
"isCaptain": false,
"isKeeper": true,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "6,251,3"
},
{
"runs": "1",
"zadval": "3,106,4"
},
{
"runs": "4",
"zadval": "2,86,5"
},
{
"runs": "4",
"zadval": "5,188,5"
},
{
"runs": "1",
"zadval": "1,35,4"
},
{
"runs": "6",
"zadval": "2,85,5"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "6",
"zadval": "6,229,5"
},
{
"runs": "1",
"zadval": "5,204,4"
}
]
},
{
"matchID": "260875",
"playerID": "66243",
"playerName": "Romario Shepherd",
"playerTeam": "RCB",
"playerMatchSixes": "1",
"playerMatchFours": "1",
"playerMatchBalls": "9",
"playerMatchRuns": "17",
"playerBattingNumber": "6",
"playerDismissalInfo": "lbw",
"playerHowOut": "lbw b Arshdeep Singh",
"playerMatchStrikeRate": "188.88",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "6,251,3"
},
{
"runs": "2",
"zadval": "8,336,4"
},
{
"runs": "1",
"zadval": "7,313,4"
},
{
"runs": "1",
"zadval": "7,297,3"
},
{
"runs": "1",
"zadval": "8,346,4"
},
{
"runs": "1",
"zadval": "8,322,4"
},
{
"runs": "4",
"zadval": "2,73,5"
},
{
"runs": "6",
"zadval": "7,312,5"
}
]
},
{
"matchID": "260875",
"playerID": "63788",
"playerName": "Krunal Pandya",
"playerTeam": "RCB",
"playerMatchSixes": "0",
"playerMatchFours": "0",
"playerMatchBalls": "5",
"playerMatchRuns": "4",
"playerBattingNumber": "7",
"playerDismissalInfo": "caught",
"playerHowOut": "c Shreyas Iyer b Arshdeep Singh",
"playerMatchStrikeRate": "80",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "LHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "5,192,4"
},
{
"runs": "1",
"zadval": "5,185,4"
},
{
"runs": "1",
"zadval": "8,341,4"
},
{
"runs": "1",
"zadval": "7,283,4"
}
]
},
{
"matchID": "260875",
"playerID": "5132",
"playerName": "Bhuvneshwar Kumar",
"playerTeam": "RCB",
"playerMatchSixes": "0",
"playerMatchFours": "0",
"playerMatchBalls": "2",
"playerMatchRuns": "1",
"playerBattingNumber": "8",
"playerDismissalInfo": "caught",
"playerHowOut": "c Priyansh Arya b Arshdeep Singh",
"playerMatchStrikeRate": "50",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "4,168,3"
}
]
},
{
"matchID": "260875",
"playerID": "70155",
"playerName": "Yash Dayal",
"playerTeam": "RCB",
"playerMatchSixes": "0",
"playerMatchFours": "0",
"playerMatchBalls": "1",
"playerMatchRuns": "1",
"playerBattingNumber": "9",
"playerDismissalInfo": "not out",
"playerHowOut": "not out",
"playerMatchStrikeRate": "100",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "7,281,4"
}
]
},
{
"matchID": "260875",
"playerID": "4255",
"playerName": "Josh Hazlewood",
"playerTeam": "RCB",
"playerMatchSixes": "",
"playerMatchFours": "",
"playerMatchBalls": "",
"playerMatchRuns": "",
"playerBattingNumber": "10",
"playerDismissalInfo": "",
"playerHowOut": "",
"playerMatchStrikeRate": "",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "LHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": null
},
{
"matchID": "260875",
"playerID": "100564",
"playerName": "Suyash Sharma",
"playerTeam": "RCB",
"playerMatchSixes": "",
"playerMatchFours": "",
"playerMatchBalls": "",
"playerMatchRuns": "",
"playerBattingNumber": "11",
"playerDismissalInfo": "",
"playerHowOut": "",
"playerMatchStrikeRate": "",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": true,
"zad": null
}
],
"bowling": [
{
"matchID": "260875",
"playerID": "67905",
"playerName": "Arshdeep Singh",
"playerTeam": "PBKS",
"playerDotBalls": "8",
"playerWicketsTaken": "3",
"playerMaidensBowled": "0",
"playerRunsConceeded": "40",
"playerWides": "2",
"playerNoBall": "0",
"playerOversBowled": "4",
"playerEconomyRate": "10.00",
"isCaptain": false,
"playingStatus": true,
"isSubstitutePlayer": false
},
{
"matchID": "260875",
"playerID": "63865",
"playerName": "Kyle Jamieson",
"playerTeam": "PBKS",
"playerDotBalls": "9",
"playerWicketsTaken": "3",
"playerMaidensBowled": "0",
"playerRunsConceeded": "48",
"playerWides": "3",
"playerNoBall": "0",
"playerOversBowled": "4",
"playerEconomyRate": "12.00",
"isCaptain": false,
"playingStatus": true,
"isSubstitutePlayer": false
},
{
"matchID": "260875",
"playerID": "67516",
"playerName": "Azmatullah Omarzai",
"playerTeam": "PBKS",
"playerDotBalls": "3",
"playerWicketsTaken": "1",
"playerMaidensBowled": "0",
"playerRunsConceeded": "35",
"playerWides": "2",
"playerNoBall": "0",
"playerOversBowled": "4",
"playerEconomyRate": "8.75",
"isCaptain": false,
"playingStatus": true,
"isSubstitutePlayer": false
},
{
"matchID": "260875",
"playerID": "67628",
"playerName": "Vyshak Vijaykumar",
"playerTeam": "PBKS",
"playerDotBalls": "5",
"playerWicketsTaken": "1",
"playerMaidensBowled": "0",
"playerRunsConceeded": "30",
"playerWides": "2",
"playerNoBall": "0",
"playerOversBowled": "4",
"playerEconomyRate": "7.50",
"isCaptain": false,
"playingStatus": true,
"isSubstitutePlayer": false
},
{
"matchID": "260875",
"playerID": "9844",
"playerName": "Yuzvendra Chahal",
"playerTeam": "PBKS",
"playerDotBalls": "3",
"playerWicketsTaken": "1",
"playerMaidensBowled": "0",
"playerRunsConceeded": "37",
"playerWides": "0",
"playerNoBall": "0",
"playerOversBowled": "4",
"playerEconomyRate": "9.25",
"isCaptain": false,
"playingStatus": false,
"isSubstitutePlayer": false
}
],
"extras": {
"byes": "0",
"legByes": "0",
"noBalls": "0",
"penalties": "0",
"wides": "9",
"totalExtras": "9"
},
"fow": [
{
"playerName": "Phil Salt",
"playerID": "65632",
"order": 1,
"over_ball": "1.4",
"runs": "18",
"isCaptain": false,
"isKeeper": false
},
{
"playerName": "Mayank Agarwal",
"playerID": "10115",
"order": 2,
"over_ball": "6.2",
"runs": "56",
"isCaptain": false,
"isKeeper": false
},
{
"playerName": "Rajat Patidar",
"playerID": "65687",
"order": 3,
"over_ball": "10.5",
"runs": "96",
"isCaptain": true,
"isKeeper": false
},
{
"playerName": "Virat Kohli",
"playerID": "3993",
"order": 4,
"over_ball": "14.5",
"runs": "131",
"isCaptain": false,
"isKeeper": false
},
{
"playerName": "Liam Livingstone",
"playerID": "63940",
"order": 5,
"over_ball": "16.5",
"runs": "167",
"isCaptain": false,
"isKeeper": false
},
{
"playerName": "Jitesh Sharma",
"playerID": "64724",
"order": 6,
"over_ball": "17.4",
"runs": "171",
"isCaptain": false,
"isKeeper": true
},
{
"playerName": "Romario Shepherd",
"playerID": "66243",
"order": 7,
"over_ball": "19.2",
"runs": "188",
"isCaptain": false,
"isKeeper": false
},
{
"playerName": "Krunal Pandya",
"playerID": "63788",
"order": 8,
"over_ball": "19.4",
"runs": "189",
"isCaptain": false,
"isKeeper": false
},
{
"playerName": "Bhuvneshwar Kumar",
"playerID": "5132",
"order": 9,
"over_ball": "19.6",
"runs": "190",
"isCaptain": false,
"isKeeper": false
}
],
"total": {
"overs": "20.0",
"runsScored": "190",
"wickets": "9",
"runRate": "9.50"
}
},
{
"Substitutes": [
{
"playerInID": "70222",
"playerInName": "Prabhsimran Singh",
"teamID": "1107",
"playerOutID": "9844",
"playerOutName": "Yuzvendra Chahal"
}
],
"impactPlayer": [
"Praveen Dubey",
"Xavier Bartlett",
"Prabhsimran Singh",
"Harpreet Brar",
"Suryansh Shedge"
],
"battingTeamName": "Punjab Kings",
"battingTeamShortName": "PBKS",
"battingTeamID": "1107",
"runsScored": null,
"wickets": null,
"overs": null,
"runRate": null,
"runRateProjection": [],
"nextBatsmans": [
{
"playerID": null,
"playerName": null,
"playerTeam": null,
"playerMatchSixes": null,
"playerMatchFours": null,
"playerMatchBalls": null,
"playerMatchRuns": null,
"playerBattingNumber": null,
"playerMatchStrikeRate": null,
"playerMatchAvg": null,
"isNotOut": null,
"zad": null
},
{
"playerID": null,
"playerName": null,
"playerTeam": null,
"playerMatchSixes": null,
"playerMatchFours": null,
"playerMatchBalls": null,
"playerMatchRuns": null,
"playerBattingNumber": null,
"playerMatchStrikeRate": null,
"playerMatchAvg": null,
"isNotOut": null,
"zad": null
},
{
"playerID": null,
"playerName": null,
"playerTeam": null,
"playerMatchSixes": null,
"playerMatchFours": null,
"playerMatchBalls": null,
"playerMatchRuns": null,
"playerBattingNumber": null,
"playerMatchStrikeRate": null,
"playerMatchAvg": null,
"isNotOut": null,
"zad": null
}
],
"batting": [
{
"matchID": "260875",
"playerID": "71366",
"playerName": "Priyansh Arya",
"playerTeam": "PBKS",
"playerMatchSixes": "0",
"playerMatchFours": "4",
"playerMatchBalls": "19",
"playerMatchRuns": "24",
"playerBattingNumber": "0",
"playerDismissalInfo": "caught",
"playerHowOut": "c Phil Salt b Josh Hazlewood",
"playerMatchStrikeRate": "126.31",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "LHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "4",
"zadval": "2,74,5"
},
{
"runs": "1",
"zadval": "4,174,3"
},
{
"runs": "4",
"zadval": ""
},
{
"runs": "1",
"zadval": "3,133,2"
},
{
"runs": "1",
"zadval": "8,355,4"
},
{
"runs": "2",
"zadval": "8,353,4"
},
{
"runs": "1",
"zadval": "8,336,4"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "4",
"zadval": "3,101,5"
},
{
"runs": "4",
"zadval": "3,103,5"
},
{
"runs": "1",
"zadval": "8,346,3"
},
{
"runs": "1",
"zadval": "1,5,4"
},
{
"runs": "4",
"zadval": "3,97,5"
}
]
},
{
"matchID": "260875",
"playerID": "70222",
"playerName": "Prabhsimran Singh",
"playerTeam": "PBKS",
"playerMatchSixes": "2",
"playerMatchFours": "0",
"playerMatchBalls": "22",
"playerMatchRuns": "26",
"playerBattingNumber": "1",
"playerDismissalInfo": "caught",
"playerHowOut": "c Bhuvneshwar Kumar b Krunal Pandya",
"playerMatchStrikeRate": "118.18",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": true,
"zad": [
{
"runs": "1",
"zadval": "4,162,3"
},
{
"runs": "1",
"zadval": "5,205,2"
},
{
"runs": "1",
"zadval": "2,55,4"
},
{
"runs": "2",
"zadval": "5,217,4"
},
{
"runs": "1",
"zadval": "5,192,3"
},
{
"runs": "1",
"zadval": "3,129,3"
},
{
"runs": "1",
"zadval": "7,296,3"
},
{
"runs": "1",
"zadval": "8,351,4"
},
{
"runs": "1",
"zadval": "8,336,4"
},
{
"runs": "1",
"zadval": "4,173,4"
},
{
"runs": "1",
"zadval": "1,27,2"
},
{
"runs": "6",
"zadval": "6,266,5"
},
{
"runs": "1",
"zadval": "8,344,2"
},
{
"runs": "1",
"zadval": "8,342,4"
},
{
"runs": "6",
"zadval": "4,137,5"
}
]
},
{
"matchID": "260875",
"playerID": "65893",
"playerName": "Josh Inglis",
"playerTeam": "PBKS",
"playerMatchSixes": "4",
"playerMatchFours": "1",
"playerMatchBalls": "23",
"playerMatchRuns": "39",
"playerBattingNumber": "2",
"playerDismissalInfo": "caught",
"playerHowOut": "c Liam Livingstone b Krunal Pandya",
"playerMatchStrikeRate": "169.56",
"isCaptain": false,
"isKeeper": true,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "2",
"zadval": "8,355,4"
},
{
"runs": "6",
"zadval": "8,354,5"
},
{
"runs": "1",
"zadval": "7,298,4"
},
{
"runs": "6",
"zadval": "8,344,5"
},
{
"runs": "1",
"zadval": "7,288,4"
},
{
"runs": "1",
"zadval": "8,346,4"
},
{
"runs": "1",
"zadval": "1,31,4"
},
{
"runs": "4",
"zadval": "8,337,5"
},
{
"runs": "1",
"zadval": "8,350,4"
},
{
"runs": "1",
"zadval": "3,115,4"
},
{
"runs": "6",
"zadval": "8,337,5"
},
{
"runs": "1",
"zadval": "5,194,4"
},
{
"runs": "1",
"zadval": "8,359,4"
},
{
"runs": "6",
"zadval": "8,337,5"
},
{
"runs": "1",
"zadval": "3,120,4"
}
]
},
{
"matchID": "260875",
"playerID": "63961",
"playerName": "Shreyas Iyer",
"playerTeam": "PBKS",
"playerMatchSixes": "0",
"playerMatchFours": "0",
"playerMatchBalls": "2",
"playerMatchRuns": "1",
"playerBattingNumber": "3",
"playerDismissalInfo": "caught",
"playerHowOut": "c Jitesh Sharma b Romario Shepherd",
"playerMatchStrikeRate": "50",
"isCaptain": true,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "5,205,4"
}
]
},
{
"matchID": "260875",
"playerID": "69657",
"playerName": "Nehal Wadhera",
"playerTeam": "PBKS",
"playerMatchSixes": "1",
"playerMatchFours": "0",
"playerMatchBalls": "18",
"playerMatchRuns": "15",
"playerBattingNumber": "4",
"playerDismissalInfo": "caught",
"playerHowOut": "c Krunal Pandya b Bhuvneshwar Kumar",
"playerMatchStrikeRate": "83.33",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "LHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "4,163,4"
},
{
"runs": "6",
"zadval": "8,346,5"
},
{
"runs": "1",
"zadval": "1,15,4"
},
{
"runs": "1",
"zadval": "2,46,3"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "1",
"zadval": "5,199,4"
},
{
"runs": "1",
"zadval": "1,15,4"
},
{
"runs": "0",
"zadval": ""
},
{
"runs": "1",
"zadval": "8,344,4"
},
{
"runs": "1",
"zadval": "1,5,4"
},
{
"runs": "2",
"zadval": "8,334,4"
}
]
},
{
"matchID": "260875",
"playerID": "63520",
"playerName": "Shashank Singh",
"playerTeam": "PBKS",
"playerMatchSixes": "6",
"playerMatchFours": "3",
"playerMatchBalls": "30",
"playerMatchRuns": "61",
"playerBattingNumber": "5",
"playerDismissalInfo": "not out",
"playerHowOut": "not out",
"playerMatchStrikeRate": "203.33",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "6,250,4"
},
{
"runs": "4",
"zadval": "7,271,5"
},
{
"runs": "1",
"zadval": "1,21,4"
},
{
"runs": "1",
"zadval": "8,340,4"
},
{
"runs": "1",
"zadval": "7,308,4"
},
{
"runs": "6",
"zadval": "2,56,5"
},
{
"runs": "1",
"zadval": ""
},
{
"runs": "6",
"zadval": "7,280,5"
},
{
"runs": "1",
"zadval": "6,236,4"
},
{
"runs": "1",
"zadval": ""
},
{
"runs": "2",
"zadval": "1,28,4"
},
{
"runs": "1",
"zadval": "8,345,4"
},
{
"runs": "6",
"zadval": "7,277,5"
},
{
"runs": "4",
"zadval": "2,71,5"
},
{
"runs": "2",
"zadval": "1,26,4"
},
{
"runs": "1",
"zadval": "3,121,2"
},
{
"runs": "6",
"zadval": "1,6,5"
},
{
"runs": "4",
"zadval": "2,86,5"
},
{
"runs": "6",
"zadval": "1,3,5"
},
{
"runs": "6",
"zadval": "5,193,5"
},
{
"runs": "1",
"zadval": "5,218,4"
},
{
"runs": "1",
"zadval": "5,202,3"
},
{
"runs": "1",
"zadval": ""
}
]
},
{
"matchID": "260875",
"playerID": "4311",
"playerName": "Marcus Stoinis",
"playerTeam": "PBKS",
"playerMatchSixes": "1",
"playerMatchFours": "0",
"playerMatchBalls": "2",
"playerMatchRuns": "6",
"playerBattingNumber": "6",
"playerDismissalInfo": "caught",
"playerHowOut": "c Yash Dayal b Bhuvneshwar Kumar",
"playerMatchStrikeRate": "300",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "6",
"zadval": "5,204,5"
}
]
},
{
"matchID": "260875",
"playerID": "67516",
"playerName": "Azmatullah Omarzai",
"playerTeam": "PBKS",
"playerMatchSixes": "0",
"playerMatchFours": "0",
"playerMatchBalls": "2",
"playerMatchRuns": "1",
"playerBattingNumber": "7",
"playerDismissalInfo": "caught",
"playerHowOut": "c sub Manoj Bhandage b Yash Dayal",
"playerMatchStrikeRate": "50",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": "5,193,4"
}
]
},
{
"matchID": "260875",
"playerID": "63865",
"playerName": "Kyle Jamieson",
"playerTeam": "PBKS",
"playerMatchSixes": "0",
"playerMatchFours": "0",
"playerMatchBalls": "2",
"playerMatchRuns": "0",
"playerBattingNumber": "8",
"playerDismissalInfo": "not out",
"playerHowOut": "not out",
"playerMatchStrikeRate": "0",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": [
{
"runs": "1",
"zadval": ""
}
]
},
{
"matchID": "260875",
"playerID": "67628",
"playerName": "Vyshak Vijaykumar",
"playerTeam": "PBKS",
"playerMatchSixes": "",
"playerMatchFours": "",
"playerMatchBalls": "",
"playerMatchRuns": "",
"playerBattingNumber": "9",
"playerDismissalInfo": "",
"playerHowOut": "",
"playerMatchStrikeRate": "",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": null
},
{
"matchID": "260875",
"playerID": "67905",
"playerName": "Arshdeep Singh",
"playerTeam": "PBKS",
"playerMatchSixes": "",
"playerMatchFours": "",
"playerMatchBalls": "",
"playerMatchRuns": "",
"playerBattingNumber": "10",
"playerDismissalInfo": "",
"playerHowOut": "",
"playerMatchStrikeRate": "",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "LHB",
"playingStatus": true,
"isSubstitutePlayer": false,
"zad": null
},
{
"matchID": "260875",
"playerID": "9844",
"playerName": "Yuzvendra Chahal",
"playerTeam": "PBKS",
"playerMatchSixes": "",
"playerMatchFours": "",
"playerMatchBalls": "",
"playerMatchRuns": "",
"playerBattingNumber": "11",
"playerDismissalInfo": "",
"playerHowOut": "Substitute",
"playerMatchStrikeRate": "",
"isCaptain": false,
"isKeeper": false,
"battingStyle": "RHB",
"playingStatus": false,
"isSubstitutePlayer": false,
"zad": null
}
],
"bowling": [
{
"matchID": "260875",
"playerID": "5132",
"playerName": "Bhuvneshwar Kumar",
"playerTeam": "RCB",
"playerDotBalls": "9",
"playerWicketsTaken": "2",
"playerMaidensBowled": "0",
"playerRunsConceeded": "38",
"playerWides": "0",
"playerNoBall": "0",
"playerOversBowled": "4",
"playerEconomyRate": "9.50",
"isCaptain": false,
"playingStatus": true,
"isSubstitutePlayer": false
},
{
"matchID": "260875",
"playerID": "70155",
"playerName": "Yash Dayal",
"playerTeam": "RCB",
"playerDotBalls": "10",
"playerWicketsTaken": "1",
"playerMaidensBowled": "0",
"playerRunsConceeded": "18",
"playerWides": "0",
"playerNoBall": "0",
"playerOversBowled": "3",
"playerEconomyRate": "6.00",
"isCaptain": false,
"playingStatus": true,
"isSubstitutePlayer": false
},
{
"matchID": "260875",
"playerID": "4255",
"playerName": "Josh Hazlewood",
"playerTeam": "RCB",
"playerDotBalls": "7",
"playerWicketsTaken": "1",
"playerMaidensBowled": "0",
"playerRunsConceeded": "54",
"playerWides": "2",
"playerNoBall": "0",
"playerOversBowled": "4",
"playerEconomyRate": "13.50",
"isCaptain": false,
"playingStatus": true,
"isSubstitutePlayer": false
},
{
"matchID": "260875",
"playerID": "63788",
"playerName": "Krunal Pandya",
"playerTeam": "RCB",
"playerDotBalls": "12",
"playerWicketsTaken": "2",
"playerMaidensBowled": "0",
"playerRunsConceeded": "17",
"playerWides": "0",
"playerNoBall": "0",
"playerOversBowled": "4",
"playerEconomyRate": "4.25",
"isCaptain": false,
"playingStatus": true,
"isSubstitutePlayer": false
},
{
"matchID": "260875",
"playerID": "100564",
"playerName": "Suyash Sharma",
"playerTeam": "RCB",
"playerDotBalls": "4",
"playerWicketsTaken": "0",
"playerMaidensBowled": "0",
"playerRunsConceeded": "19",
"playerWides": "0",
"playerNoBall": "0",
"playerOversBowled": "2",
"playerEconomyRate": "9.50",
"isCaptain": false,
"playingStatus": true,
"isSubstitutePlayer": true
},
{
"matchID": "260875",
"playerID": "66243",
"playerName": "Romario Shepherd",
"playerTeam": "RCB",
"playerDotBalls": "5",
"playerWicketsTaken": "1",
"playerMaidensBowled": "0",
"playerRunsConceeded": "30",
"playerWides": "1",
"playerNoBall": "0",
"playerOversBowled": "3",
"playerEconomyRate": "10.00",
"isCaptain": false,
"playingStatus": true,
"isSubstitutePlayer": false
}
],
"extras": {
"byes": "0",
"legByes": "8",
"noBalls": "0",
"penalties": "0",
"wides": "3",
"totalExtras": "11"
},
"fow": [
{
"playerName": "Priyansh Arya",
"playerID": "71366",
"order": 1,
"over_ball": "4.6",
"runs": "43",
"isCaptain": false,
"isKeeper": false
},
{
"playerName": "Prabhsimran Singh",
"playerID": "70222",
"order": 2,
"over_ball": "8.3",
"runs": "72",
"isCaptain": false,
"isKeeper": false
},
{
"playerName": "Shreyas Iyer",
"playerID": "63961",
"order": 3,
"over_ball": "9.4",
"runs": "79",
"isCaptain": true,
"isKeeper": false
},
{
"playerName": "Josh Inglis",
"playerID": "65893",
"order": 4,
"over_ball": "12.1",
"runs": "98",
"isCaptain": false,
"isKeeper": true
},
{
"playerName": "Nehal Wadhera",
"playerID": "69657",
"order": 5,
"over_ball": "16.2",
"runs": "136",
"isCaptain": false,
"isKeeper": false
},
{
"playerName": "Marcus Stoinis",
"playerID": "4311",
"order": 6,
"over_ball": "16.4",
"runs": "142",
"isCaptain": false,
"isKeeper": false
},
{
"playerName": "Azmatullah Omarzai",
"playerID": "67516",
"order": 7,
"over_ball": "17.2",
"runs": "145",
"isCaptain": false,
"isKeeper": false
}
],
"total": {
"overs": "20.0",
"runsScored": "184",
"wickets": "7",
"runRate": "9.20"
}
}
]
Get Match Graph Data
This endpoint retrieves detailed graphical data for a specific cricket match identified by matchId
. It provides insights into the match's run rate, score chart, and worm chart.
Request
Method:
GET
Endpoint:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/graph
Path Parameters:
matchId
: The unique identifier for the cricket match whose graphical data is being requested.
Response
Upon a successful request, the API returns a JSON object with the following structure:
runRate: Contains information about the run rate during different phases of the innings.
format: The format of the match (e.g., ODI, Test).
inningsPhase: An array detailing each innings phase, including:
highestRunrate: The highest run rate achieved.
teamID: Identifier of the team.
totalRuns: Total runs scored in that phase.
innings: The innings number.
totalWickets: Total wickets lost.
teamShortName: Short name of the team.
data: An array of objects containing:
r: Runs scored.
o: Overs bowled.
scoreChart: Provides the score details of each innings phase.
inningsPhase: An array of innings data, including:
_id: Unique identifier for the innings.
teamID: Identifier of the team.
teamShortName: Short name of the team.
totalRuns: Total runs scored.
totalWickets: Total wickets lost.
data: An array of objects with:
runs: Runs scored in the innings.
wickets: Wickets lost.
innings: The innings number.
overNumber: The over number.
wormChart: Displays the worm chart data for the innings.
format: The format of the match.
inningsPhase: An array detailing each innings phase, including:
totalRuns: Total runs scored.
_id: Unique identifier.
teamID: Identifier of the team.
teamShortName: Short name of the team.
totalWickets: Total wickets lost.
data: An array of objects with:
runs: Runs scored.
overNumber: The over number.
wickets: Wickets lost.
innings: The innings number.
score: The score at that point.
Expected Response Format
The response will be in JSON format with a status code of 200
indicating success.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/graph HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"runRate": {
"format": "TEST",
"inningsPhase": [
{
"highestRunrate": "3.86",
"teamID": "1",
"totalRuns": "211",
"innings": "0",
"totalWickets": "9",
"teamShortName": "AUS",
"data": [
{
"r": "0.00",
"o": "1"
},
{
"r": "0.00",
"o": "2"
},
{
"r": "0.00",
"o": "3"
},
{
"r": "1.25",
"o": "4"
},
{
"r": "1.00",
"o": "5"
},
{
"r": "1.83",
"o": "6"
},
{
"r": "2.29",
"o": "7"
},
{
"r": "2.25",
"o": "8"
},
{
"r": "2.44",
"o": "9"
},
{
"r": "2.60",
"o": "10"
},
{
"r": "2.36",
"o": "11"
},
{
"r": "2.42",
"o": "12"
},
{
"r": "2.23",
"o": "13"
},
{
"r": "2.64",
"o": "14"
},
{
"r": "2.47",
"o": "15"
},
{
"r": "2.56",
"o": "16"
},
{
"r": "2.41",
"o": "17"
},
{
"r": "2.56",
"o": "18"
},
{
"r": "2.47",
"o": "19"
},
{
"r": "2.65",
"o": "20"
},
{
"r": "2.76",
"o": "21"
},
{
"r": "3.00",
"o": "22"
},
{
"r": "2.91",
"o": "23"
},
{
"r": "2.79",
"o": "24"
},
{
"r": "3.12",
"o": "25"
},
{
"r": "3.00",
"o": "26"
},
{
"r": "3.04",
"o": "27"
},
{
"r": "3.21",
"o": "28"
},
{
"r": "3.24",
"o": "29"
},
{
"r": "3.13",
"o": "30"
},
{
"r": "3.03",
"o": "31"
},
{
"r": "3.09",
"o": "32"
},
{
"r": "3.15",
"o": "33"
},
{
"r": "3.21",
"o": "34"
},
{
"r": "3.17",
"o": "35"
},
{
"r": "3.25",
"o": "36"
},
{
"r": "3.32",
"o": "37"
},
{
"r": "3.50",
"o": "38"
},
{
"r": "3.51",
"o": "39"
},
{
"r": "3.55",
"o": "40"
},
{
"r": "3.54",
"o": "41"
},
{
"r": "3.48",
"o": "42"
},
{
"r": "3.65",
"o": "43"
},
{
"r": "3.66",
"o": "44"
},
{
"r": "3.71",
"o": "45"
},
{
"r": "3.74",
"o": "46"
},
{
"r": "3.70",
"o": "47"
},
{
"r": "3.81",
"o": "48"
},
{
"r": "3.86",
"o": "49"
},
{
"r": "3.80",
"o": "50"
},
{
"r": "3.76",
"o": "51"
},
{
"r": "3.73",
"o": "52"
},
{
"r": "3.75",
"o": "53"
},
{
"r": "3.74",
"o": "54"
},
{
"r": "3.82",
"o": "55"
},
{
"r": "3.77",
"o": "56"
}
]
},
{
"highestRunrate": "3.86",
"teamID": "7",
"totalRuns": "138",
"innings": "1",
"totalWickets": "9",
"teamShortName": "SA",
"data": [
{
"r": "0.00",
"o": "1"
},
{
"r": "1.50",
"o": "2"
},
{
"r": "2.33",
"o": "3"
},
{
"r": "1.75",
"o": "4"
},
{
"r": "1.60",
"o": "5"
},
{
"r": "2.33",
"o": "6"
},
{
"r": "2.00",
"o": "7"
},
{
"r": "1.88",
"o": "8"
},
{
"r": "2.11",
"o": "9"
},
{
"r": "1.90",
"o": "10"
},
{
"r": "1.73",
"o": "11"
},
{
"r": "1.67",
"o": "12"
},
{
"r": "1.62",
"o": "13"
},
{
"r": "1.64",
"o": "14"
},
{
"r": "1.53",
"o": "15"
},
{
"r": "1.63",
"o": "16"
},
{
"r": "1.59",
"o": "17"
},
{
"r": "1.50",
"o": "18"
},
{
"r": "1.53",
"o": "19"
},
{
"r": "1.50",
"o": "20"
},
{
"r": "1.62",
"o": "21"
},
{
"r": "1.95",
"o": "22"
},
{
"r": "1.96",
"o": "23"
},
{
"r": "1.88",
"o": "24"
},
{
"r": "2.20",
"o": "25"
},
{
"r": "2.27",
"o": "26"
},
{
"r": "2.44",
"o": "27"
},
{
"r": "2.39",
"o": "28"
},
{
"r": "2.34",
"o": "29"
},
{
"r": "2.30",
"o": "30"
},
{
"r": "2.26",
"o": "31"
},
{
"r": "2.38",
"o": "32"
},
{
"r": "2.30",
"o": "33"
},
{
"r": "2.38",
"o": "34"
},
{
"r": "2.49",
"o": "35"
},
{
"r": "2.56",
"o": "36"
},
{
"r": "2.51",
"o": "37"
},
{
"r": "2.47",
"o": "38"
},
{
"r": "2.41",
"o": "39"
},
{
"r": "2.35",
"o": "40"
},
{
"r": "2.29",
"o": "41"
},
{
"r": "2.26",
"o": "42"
},
{
"r": "2.21",
"o": "43"
},
{
"r": "2.20",
"o": "44"
},
{
"r": "2.22",
"o": "45"
},
{
"r": "2.20",
"o": "46"
},
{
"r": "2.30",
"o": "47"
},
{
"r": "2.31",
"o": "48"
},
{
"r": "2.47",
"o": "49"
},
{
"r": "2.46",
"o": "50"
},
{
"r": "2.45",
"o": "51"
},
{
"r": "2.42",
"o": "52"
},
{
"r": "2.43",
"o": "53"
},
{
"r": "2.41",
"o": "54"
},
{
"r": "2.45",
"o": "55"
},
{
"r": "2.41",
"o": "56"
},
{
"r": "2.42",
"o": "57"
}
]
}
]
},
"scoreChart": {
"inningsPhase": [
{
"_id": "1",
"teamID": "1",
"teamShortName": "AUS",
"totalRuns": 212,
"totalWickets": 10,
"data": [
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 1
},
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 2
},
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 3
},
{
"runs": 5,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 4
},
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 5
},
{
"runs": 6,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 6
},
{
"runs": 5,
"wickets": 2,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 7
},
{
"runs": 2,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 8
},
{
"runs": 4,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 9
},
{
"runs": 4,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 10
},
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 11
},
{
"runs": 3,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 12
},
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 13
},
{
"runs": 8,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 14
},
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 15
},
{
"runs": 4,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 16
},
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 17
},
{
"runs": 5,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 18
},
{
"runs": 1,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 19
},
{
"runs": 6,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 20
},
{
"runs": 5,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 21
},
{
"runs": 8,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 22
},
{
"runs": 1,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 23
},
{
"runs": 0,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 24
},
{
"runs": 11,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 25
},
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 26
},
{
"runs": 4,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 27
},
{
"runs": 8,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 28
},
{
"runs": 4,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 29
},
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 30
},
{
"runs": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 31
},
{
"runs": 5,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 32
},
{
"runs": 5,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 33
},
{
"runs": 5,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 34
},
{
"runs": 2,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 35
},
{
"runs": 6,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 36
},
{
"runs": 6,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 37
},
{
"runs": 10,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 38
},
{
"runs": 4,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 39
},
{
"runs": 5,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 40
},
{
"runs": 3,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 41
},
{
"runs": 1,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 42
},
{
"runs": 11,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 43
},
{
"runs": 4,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 44
},
{
"runs": 6,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 45
},
{
"runs": 5,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 46
},
{
"runs": 2,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 47
},
{
"runs": 9,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 48
},
{
"runs": 6,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 49
},
{
"runs": 1,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 50
},
{
"runs": 2,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 51
},
{
"runs": 2,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 52
},
{
"runs": 5,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 53
},
{
"runs": 3,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 54
},
{
"runs": 8,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 55
},
{
"runs": 1,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 56
},
{
"runs": 1,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"overNumber": 57
}
]
},
{
"_id": "2",
"teamID": "7",
"teamShortName": "SA",
"totalRuns": 138,
"totalWickets": 10,
"data": [
{
"runs": 0,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 1
},
{
"runs": 3,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 2
},
{
"runs": 4,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 3
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 4
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 5
},
{
"runs": 6,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 6
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 7
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 8
},
{
"runs": 4,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 9
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 10
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 11
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 12
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 13
},
{
"runs": 2,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 14
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 15
},
{
"runs": 3,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 16
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 17
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 18
},
{
"runs": 2,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 19
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 20
},
{
"runs": 4,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 21
},
{
"runs": 9,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 22
},
{
"runs": 2,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 23
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 24
},
{
"runs": 10,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 25
},
{
"runs": 4,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 26
},
{
"runs": 7,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 27
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 28
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 29
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 30
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 31
},
{
"runs": 6,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 32
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 33
},
{
"runs": 5,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 34
},
{
"runs": 6,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 35
},
{
"runs": 5,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 36
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 37
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 38
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 39
},
{
"runs": 0,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 40
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 41
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 42
},
{
"runs": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 43
},
{
"runs": 2,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 44
},
{
"runs": 3,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 45
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 46
},
{
"runs": 7,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 47
},
{
"runs": 3,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 48
},
{
"runs": 10,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 49
},
{
"runs": 2,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 50
},
{
"runs": 2,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 51
},
{
"runs": 1,
"wickets": 2,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 52
},
{
"runs": 3,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 53
},
{
"runs": 1,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 54
},
{
"runs": 5,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 55
},
{
"runs": 0,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 56
},
{
"runs": 3,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 57
},
{
"runs": 0,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"overNumber": 58
}
]
}
],
"format": "Test"
},
"wormChart": {
"format": "Test",
"inningsPhase": [
{
"totalRuns": 211,
"_id": "1",
"teamID": "1",
"teamShortName": "AUS",
"totalWickets": 9,
"data": [
{
"runs": 0,
"overNumber": 0,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "0"
},
{
"runs": 0,
"overNumber": 1,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "0"
},
{
"runs": 0,
"overNumber": 2,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "0"
},
{
"runs": 0,
"overNumber": 3,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "0"
},
{
"runs": 5,
"overNumber": 4,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "5"
},
{
"runs": 0,
"overNumber": 5,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "5"
},
{
"runs": 6,
"overNumber": 6,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "11"
},
{
"runs": 5,
"overNumber": 7,
"wickets": 2,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "16"
},
{
"runs": 2,
"overNumber": 8,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "18"
},
{
"runs": 4,
"overNumber": 9,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "22"
},
{
"runs": 4,
"overNumber": 10,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "26"
},
{
"runs": 0,
"overNumber": 11,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "26"
},
{
"runs": 3,
"overNumber": 12,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "29"
},
{
"runs": 0,
"overNumber": 13,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "29"
},
{
"runs": 8,
"overNumber": 14,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "37"
},
{
"runs": 0,
"overNumber": 15,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "37"
},
{
"runs": 4,
"overNumber": 16,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "41"
},
{
"runs": 0,
"overNumber": 17,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "41"
},
{
"runs": 5,
"overNumber": 18,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "46"
},
{
"runs": 1,
"overNumber": 19,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "47"
},
{
"runs": 6,
"overNumber": 20,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "53"
},
{
"runs": 5,
"overNumber": 21,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "58"
},
{
"runs": 8,
"overNumber": 22,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "66"
},
{
"runs": 1,
"overNumber": 23,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "67"
},
{
"runs": 0,
"overNumber": 24,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "67"
},
{
"runs": 11,
"overNumber": 25,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "78"
},
{
"runs": 0,
"overNumber": 26,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "78"
},
{
"runs": 4,
"overNumber": 27,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "82"
},
{
"runs": 8,
"overNumber": 28,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "90"
},
{
"runs": 4,
"overNumber": 29,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "94"
},
{
"runs": 0,
"overNumber": 30,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "94"
},
{
"runs": 0,
"overNumber": 31,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "94"
},
{
"runs": 5,
"overNumber": 32,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "99"
},
{
"runs": 5,
"overNumber": 33,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "104"
},
{
"runs": 5,
"overNumber": 34,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "109"
},
{
"runs": 2,
"overNumber": 35,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "111"
},
{
"runs": 6,
"overNumber": 36,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "117"
},
{
"runs": 6,
"overNumber": 37,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "123"
},
{
"runs": 10,
"overNumber": 38,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "133"
},
{
"runs": 4,
"overNumber": 39,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "137"
},
{
"runs": 5,
"overNumber": 40,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "142"
},
{
"runs": 3,
"overNumber": 41,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "145"
},
{
"runs": 1,
"overNumber": 42,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "146"
},
{
"runs": 11,
"overNumber": 43,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "157"
},
{
"runs": 4,
"overNumber": 44,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "161"
},
{
"runs": 6,
"overNumber": 45,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "167"
},
{
"runs": 5,
"overNumber": 46,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "172"
},
{
"runs": 2,
"overNumber": 47,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "174"
},
{
"runs": 9,
"overNumber": 48,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "183"
},
{
"runs": 6,
"overNumber": 49,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "189"
},
{
"runs": 1,
"overNumber": 50,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "190"
},
{
"runs": 2,
"overNumber": 51,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "192"
},
{
"runs": 2,
"overNumber": 52,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "194"
},
{
"runs": 5,
"overNumber": 53,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "199"
},
{
"runs": 3,
"overNumber": 54,
"wickets": 0,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "202"
},
{
"runs": 8,
"overNumber": 55,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "210"
},
{
"runs": 1,
"overNumber": 56,
"wickets": 1,
"innings": "1",
"teamID": "1",
"teamShortName": "AUS",
"score": "211"
}
]
},
{
"totalRuns": 138,
"_id": "2",
"teamID": "7",
"teamShortName": "SA",
"totalWickets": 9,
"data": [
{
"runs": 0,
"overNumber": 0,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "0"
},
{
"runs": 0,
"overNumber": 1,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "0"
},
{
"runs": 3,
"overNumber": 2,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "3"
},
{
"runs": 4,
"overNumber": 3,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "7"
},
{
"runs": 0,
"overNumber": 4,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "7"
},
{
"runs": 1,
"overNumber": 5,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "8"
},
{
"runs": 6,
"overNumber": 6,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "14"
},
{
"runs": 0,
"overNumber": 7,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "14"
},
{
"runs": 1,
"overNumber": 8,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "15"
},
{
"runs": 4,
"overNumber": 9,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "19"
},
{
"runs": 0,
"overNumber": 10,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "19"
},
{
"runs": 0,
"overNumber": 11,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "19"
},
{
"runs": 1,
"overNumber": 12,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "20"
},
{
"runs": 1,
"overNumber": 13,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "21"
},
{
"runs": 2,
"overNumber": 14,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "23"
},
{
"runs": 0,
"overNumber": 15,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "23"
},
{
"runs": 3,
"overNumber": 16,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "26"
},
{
"runs": 1,
"overNumber": 17,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "27"
},
{
"runs": 0,
"overNumber": 18,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "27"
},
{
"runs": 2,
"overNumber": 19,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "29"
},
{
"runs": 1,
"overNumber": 20,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "30"
},
{
"runs": 4,
"overNumber": 21,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "34"
},
{
"runs": 9,
"overNumber": 22,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "43"
},
{
"runs": 2,
"overNumber": 23,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "45"
},
{
"runs": 0,
"overNumber": 24,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "45"
},
{
"runs": 10,
"overNumber": 25,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "55"
},
{
"runs": 4,
"overNumber": 26,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "59"
},
{
"runs": 7,
"overNumber": 27,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "66"
},
{
"runs": 1,
"overNumber": 28,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "67"
},
{
"runs": 1,
"overNumber": 29,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "68"
},
{
"runs": 1,
"overNumber": 30,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "69"
},
{
"runs": 1,
"overNumber": 31,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "70"
},
{
"runs": 6,
"overNumber": 32,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "76"
},
{
"runs": 0,
"overNumber": 33,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "76"
},
{
"runs": 5,
"overNumber": 34,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "81"
},
{
"runs": 6,
"overNumber": 35,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "87"
},
{
"runs": 5,
"overNumber": 36,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "92"
},
{
"runs": 1,
"overNumber": 37,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "93"
},
{
"runs": 1,
"overNumber": 38,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "94"
},
{
"runs": 0,
"overNumber": 39,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "94"
},
{
"runs": 0,
"overNumber": 40,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "94"
},
{
"runs": 0,
"overNumber": 41,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "94"
},
{
"runs": 1,
"overNumber": 42,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "95"
},
{
"runs": 0,
"overNumber": 43,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "95"
},
{
"runs": 2,
"overNumber": 44,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "97"
},
{
"runs": 3,
"overNumber": 45,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "100"
},
{
"runs": 1,
"overNumber": 46,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "101"
},
{
"runs": 7,
"overNumber": 47,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "108"
},
{
"runs": 3,
"overNumber": 48,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "111"
},
{
"runs": 10,
"overNumber": 49,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "121"
},
{
"runs": 2,
"overNumber": 50,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "123"
},
{
"runs": 2,
"overNumber": 51,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "125"
},
{
"runs": 1,
"overNumber": 52,
"wickets": 2,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "126"
},
{
"runs": 3,
"overNumber": 53,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "129"
},
{
"runs": 1,
"overNumber": 54,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "130"
},
{
"runs": 5,
"overNumber": 55,
"wickets": 0,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "135"
},
{
"runs": 0,
"overNumber": 56,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "135"
},
{
"runs": 3,
"overNumber": 57,
"wickets": 1,
"innings": "2",
"teamID": "7",
"teamShortName": "SA",
"score": "138"
}
]
}
]
}
}
Get Last 12 Balls of a Cricket Match
This endpoint retrieves the last 12 balls from a specified cricket match.
Request
Method:
GET
Endpoint:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/last12balls
Query Parameters:
innings
(required): Specifies the innings number for which the last 12 balls are requested (e.g.,1
for the first innings).
Response
On a successful request, the API returns a JSON object with the following structure:
status: A boolean indicating the success of the request.
statusCode: An integer representing the status code of the response.
message: A string providing additional information about the request status.
response: An array containing the details of the last 12 balls, structured as follows:
over: An array of objects, each representing an over, which includes:
isWicket: A string indicating if a wicket fell on this ball.
isBall: A string indicating if this entry is a ball.
isLastBall: A string indicating if this is the last ball of the over.
overNumber: A string representing the number of the over.
runs: A string indicating the number of runs scored on this ball.
type: A string indicating the type of delivery.
overNumber: A string representing the number of the over.
Use this endpoint to get detailed information about the last 12 balls played in a specific innings of a cricket match.
1 to 10
1
{API_KEY}
GET /cricket/api/v2/match/{matchId}/last12balls HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"status": true,
"statusCode": 200,
"message": "Data fetch successfully",
"response": [
{
"over": [
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "true",
"overNumber": "55",
"runs": "0",
"type": ""
}
],
"overNumber": "55"
},
{
"over": [
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "56",
"runs": "0",
"type": ""
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "56",
"runs": "0",
"type": ""
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "56",
"runs": "1",
"type": "leg bye"
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "56",
"runs": "0",
"type": ""
},
{
"isWicket": "true",
"isBall": "true",
"isLastBall": "false",
"overNumber": "56",
"runs": "0",
"type": "wicket"
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "true",
"overNumber": "56",
"runs": "0",
"type": ""
}
],
"overNumber": "56"
},
{
"over": [
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "57",
"runs": "0",
"type": ""
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "57",
"runs": "0",
"type": ""
},
{
"isWicket": "false",
"isBall": "true",
"isLastBall": "false",
"overNumber": "57",
"runs": "0",
"type": ""
},
{
"isWicket": "false",
"isBall": "false",
"isLastBall": "false",
"overNumber": "57",
"runs": "0",
"type": "no ball"
},
{
"isWicket": "true",
"isBall": "true",
"isLastBall": "false",
"overNumber": "57",
"runs": "0",
"type": "wicket"
}
],
"overNumber": "57"
}
]
}
Get Team Records for a Match
This endpoint retrieves the team records for a specific cricket match identified by the matchId
. It provides detailed statistics about both the home and away teams, including their overall performance and records when batting first or second.
HTTP Request
Method: GET
Endpoint: https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/team-records
Request Headers
Content-Type:
application/json
Indicates that the request body format is JSON.
Request Parameters
matchId (path parameter): The unique identifier for the match for which team records are being requested.
Response Fields
matchID: The unique identifier for the match.
compType: The type of competition.
teamRecords: Contains detailed records for both teams.
matchType: Type of the match (e.g., ODI, T20).
homeTeamID: Identifier for the home team.
awayTeamID: Identifier for the away team.
homeTeamShortName: Short name of the home team.
awayTeamShortName: Short name of the away team.
overAllRecord: Overall performance records for both teams.
homeData: Statistics for the home team.
awayData: Statistics for the away team.
battingFirst: Records for matches where the home team batted first.
battingSecond: Records for matches where the home team batted second.
Error Codes
404 Not Found: The specified
matchId
does not exist.500 Internal Server Error: An unexpected error occurred on the server.
This documentation provides a comprehensive overview of the endpoint for retrieving team records for a specified match, including the request structure, expected responses, and potential error codes.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/team-records HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"matchID": "253698",
"compType": "T20 domestic",
"teamRecords": {
"matchType": "T20",
"homeTeamID": "1106",
"awayTeamID": "1105",
"homeTeamShortName": "KKR",
"awayTeamShortName": "RCB",
"overAllRecord": {
"homeData": {
"teamRuns": "1535",
"avgTeamRuns": "153.5",
"avgWickets": "6.3",
"wins": "6",
"highestScore": "222",
"lowestScore": "84",
"totalMatches": "10"
},
"awayData": {
"teamRuns": "1550",
"avgTeamRuns": "155",
"avgWickets": "6.6",
"wins": "4",
"highestScore": "221",
"lowestScore": "85",
"totalMatches": "10"
}
},
"battingFirst": {
"homeData": {
"teamRuns": "838",
"avgTeamRuns": "167.6",
"avgWickets": "7.2",
"wins": "3",
"highestScore": "222",
"lowestScore": "84",
"totalMatches": "5"
},
"awayData": {
"teamRuns": "810",
"avgTeamRuns": "162",
"avgWickets": "5.8",
"wins": "2",
"highestScore": "204",
"lowestScore": "92",
"totalMatches": "5"
}
},
"battingSecond": {
"homeData": {
"teamRuns": "697",
"avgTeamRuns": "139.4",
"avgWickets": "5.4",
"wins": "3",
"highestScore": "186",
"lowestScore": "94",
"totalMatches": "5"
},
"awayData": {
"teamRuns": "740",
"avgTeamRuns": "148",
"avgWickets": "7.4",
"wins": "2",
"highestScore": "221",
"lowestScore": "85",
"totalMatches": "5"
}
}
}
}
Get Winning Percentage for a Cricket Match
This endpoint retrieves the winning percentage for a specified cricket match identified by matchId
. It provides insights into the probability of each team winning the match, as well as the likelihood of a tie.
Request
Method: GET
URL:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/winning-percentage
Path Parameters
matchId
(string): The unique identifier for the cricket match whose winning percentages are being requested.
Response
On a successful request, the response will be in JSON format with the following structure:
status (boolean): Indicates if the request was successful.
statusCode (integer): A code representing the status of the response (0 for success).
message (string): A message providing additional information about the response (if any).
response (object): Contains the winning probabilities for the match.
matchID (string): The ID of the match.
teamsWinProbability (object): An object containing the winning probabilities.
homeTeamShortName (string): The short name of the home team.
homeTeamPercentage (string): The winning percentage of the home team.
awayTeamShortName (string): The short name of the away team.
awayTeamPercentage (string): The winning percentage of the away team.
tiePercentage (string): The percentage chance of a tie.
This endpoint is useful for analyzing match outcomes and making informed predictions based on team performance probabilities.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/winning-percentage HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"status": true,
"statusCode": 200,
"message": "Data fetch successfully",
"response": {
"matchID": "253698",
"teamsWinProbability": {
"homeTeamShortName": "KKR",
"homeTeamPercentage": "54",
"awayTeamShortName": "RCB",
"awayTeamPercentage": "46",
"tiePercentage": ""
}
}
}
Endpoint Description
This endpoint retrieves head-to-head statistics for two cricket teams in a specific match. It provides detailed information about the match, including team performance, venue details, and match results.
Request
Method: GET
URL:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/team-head2head
Path Parameters:
matchId
: The unique identifier for the match whose head-to-head statistics are being requested.
Response
Status Code: 200 OK
Content-Type: application/json
Response Body
The response will contain the following structure:
status
: Indicates the success of the request (boolean).statusCode
: A numerical code representing the status of the response (integer).message
: A message providing additional information about the response (string).response
: An array containing match details, which includes:id
: Unique identifier for the match (string).file_name
: Name of the file associated with the match (string).display_output
: Output to be displayed (string).result
: The overall result of the match (string).result_short
: A short description of the result (string).venue_id
: Unique identifier for the venue (string).venue_name
: Name of the venue (string).venue_city
: City where the venue is located (string).winner_team_id
: Identifier for the winning team (string).winner_team_name
: Name of the winning team (string).loser_team_id
: Identifier for the losing team (string).loser_team_name
: Name of the losing team (string).win_by
: Method of victory (string).margin_value
: The margin by which the match was won (string).match_player
: Key player of the match (string).match_start_date
: Start date of the match (string).match_end_date
: End date of the match (string).against_team_id
: Identifier for the opposing team (string).against_team_name
: Name of the opposing team (string).against_team_short_name
: Short name of the opposing team (string).home_team_id
: Identifier for the home team (string).away_team_id
: Identifier for the away team (string).match_number
: The number of the match in the series (string).innings
: An array containing details about each innings, which includes:number
: The innings number (string).batting_team
: The team that batted (string).bowling_team
: The team that bowled (string).total
: Total runs scored in the innings (string).wickets
: Number of wickets lost (string).overs
: Number of overs bowled (string).is_declared
: Indicates if the innings was declared (boolean).
Notes
Ensure that the
matchId
is valid and corresponds to an existing match to receive accurate results.The response structure may vary based on the match data available.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/team-head2head HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"status": true,
"statusCode": 200,
"message": "Data fetch successfully",
"response": [
{
"id": "255314",
"file_name": "saau06112025255314",
"display_output": "South Africa beat Australia by 5 wickets on June 11, 2025 at Lord's Cricket Ground, London",
"result": "South Africa beat Australia by 5 wickets",
"result_short": "SA beat AUS by 5 wkts",
"venue_id": "89",
"venue_name": "Lord's Cricket Ground, London",
"venue_city": "London",
"winner_team_id": "7",
"winner_team_name": "South Africa",
"loser_team_id": "1",
"loser_team_name": "Australia",
"win_by": "w",
"margin_value": "5",
"match_player": "Aiden Markram",
"match_start_date": "11-06-2025",
"match_end_date": "15-06-2025",
"against_team_id": "1",
"against_team_name": "Australia",
"against_team_short_name": "AUS",
"home_team_id": "7",
"away_team_id": "1",
"match_number": "Final",
"innings": [
{
"number": "1",
"batting_team": "1",
"bowling_team": "7",
"total": "212",
"wickets": "10",
"overs": "56.4",
"is_declared": false
},
{
"number": "2",
"batting_team": "7",
"bowling_team": "1",
"total": "138",
"wickets": "10",
"overs": "57.1",
"is_declared": false
},
{
"number": "3",
"batting_team": "1",
"bowling_team": "7",
"total": "207",
"wickets": "10",
"overs": "65",
"is_declared": false
},
{
"number": "4",
"batting_team": "7",
"bowling_team": "1",
"total": "282",
"wickets": "5",
"overs": "83.4",
"is_declared": false
}
]
},
{
"id": "213024",
"file_name": "ausa01042023213024",
"display_output": "Australia drew with South Africa on January 4, 2023 at Sydney Cricket Ground (SCG), Sydney",
"result": "Australia drew with South Africa",
"result_short": "AUS drew with SA",
"venue_id": "154",
"venue_name": "Sydney Cricket Ground (SCG), Sydney",
"venue_city": "Sydney",
"winner_team_id": "",
"winner_team_name": "",
"loser_team_id": "",
"loser_team_name": "",
"win_by": "d",
"margin_value": "",
"match_player": "Usman Khawaja",
"match_start_date": "04-01-2023",
"match_end_date": "08-01-2023",
"against_team_id": "1",
"against_team_name": "Australia",
"against_team_short_name": "AUS",
"home_team_id": "1",
"away_team_id": "7",
"match_number": "3rd Test",
"innings": [
{
"number": "1",
"batting_team": "1",
"bowling_team": "7",
"total": "475",
"wickets": "4",
"overs": "131",
"is_declared": true
},
{
"number": "2",
"batting_team": "7",
"bowling_team": "1",
"total": "255",
"wickets": "10",
"overs": "108",
"is_declared": false
},
{
"number": "3",
"batting_team": "7",
"bowling_team": "1",
"total": "106",
"wickets": "2",
"overs": "41.5",
"is_declared": false
}
]
},
{
"id": "213023",
"file_name": "ausa12262022213023",
"display_output": "Australia beat South Africa by an innings and 182 runs on December 26, 2022 at Melbourne Cricket Ground (MCG), Melbourne",
"result": "Australia beat South Africa by an innings and 182 runs",
"result_short": "AUS beat SA by an innings and 182 runs",
"venue_id": "96",
"venue_name": "Melbourne Cricket Ground (MCG), Melbourne",
"venue_city": "Melbourne",
"winner_team_id": "1",
"winner_team_name": "Australia",
"loser_team_id": "7",
"loser_team_name": "South Africa",
"win_by": "i",
"margin_value": "182",
"match_player": "David Warner",
"match_start_date": "26-12-2022",
"match_end_date": "30-12-2022",
"against_team_id": "1",
"against_team_name": "Australia",
"against_team_short_name": "AUS",
"home_team_id": "1",
"away_team_id": "7",
"match_number": "2nd Test",
"innings": [
{
"number": "1",
"batting_team": "7",
"bowling_team": "1",
"total": "189",
"wickets": "10",
"overs": "68.4",
"is_declared": false
},
{
"number": "2",
"batting_team": "1",
"bowling_team": "7",
"total": "575",
"wickets": "8",
"overs": "145",
"is_declared": false
},
{
"number": "3",
"batting_team": "7",
"bowling_team": "1",
"total": "204",
"wickets": "10",
"overs": "68.5",
"is_declared": false
}
]
},
{
"id": "213022",
"file_name": "ausa12172022213022",
"display_output": "Australia beat South Africa by 6 wickets on December 17, 2022 at The Gabba, Brisbane",
"result": "Australia beat South Africa by 6 wickets",
"result_short": "AUS beat SA by 6 wkts",
"venue_id": "22",
"venue_name": "The Gabba, Brisbane",
"venue_city": "Brisbane",
"winner_team_id": "1",
"winner_team_name": "Australia",
"loser_team_id": "7",
"loser_team_name": "South Africa",
"win_by": "w",
"margin_value": "6",
"match_player": "Travis Head",
"match_start_date": "17-12-2022",
"match_end_date": "21-12-2022",
"against_team_id": "1",
"against_team_name": "Australia",
"against_team_short_name": "AUS",
"home_team_id": "1",
"away_team_id": "7",
"match_number": "1st Test",
"innings": [
{
"number": "1",
"batting_team": "7",
"bowling_team": "1",
"total": "152",
"wickets": "10",
"overs": "48.2",
"is_declared": false
},
{
"number": "2",
"batting_team": "1",
"bowling_team": "7",
"total": "218",
"wickets": "10",
"overs": "50.3",
"is_declared": false
},
{
"number": "3",
"batting_team": "7",
"bowling_team": "1",
"total": "99",
"wickets": "10",
"overs": "37.4",
"is_declared": false
},
{
"number": "4",
"batting_team": "1",
"bowling_team": "7",
"total": "35",
"wickets": "4",
"overs": "7.5",
"is_declared": false
}
]
},
{
"id": "183124",
"file_name": "saau03302018183124",
"display_output": "South Africa beat Australia by 492 runs on March 30, 2018 at The Wanderers Stadium, Johannesburg",
"result": "South Africa beat Australia by 492 runs",
"result_short": "SA beat AUS by 492 runs",
"venue_id": "111",
"venue_name": "The Wanderers Stadium, Johannesburg",
"venue_city": "Johannesburg",
"winner_team_id": "7",
"winner_team_name": "South Africa",
"loser_team_id": "1",
"loser_team_name": "Australia",
"win_by": "r",
"margin_value": "492",
"match_player": "Vernon Philander",
"match_start_date": "30-03-2018",
"match_end_date": "03-04-2018",
"against_team_id": "1",
"against_team_name": "Australia",
"against_team_short_name": "AUS",
"home_team_id": "7",
"away_team_id": "1",
"match_number": "4th Test",
"innings": [
{
"number": "1",
"batting_team": "7",
"bowling_team": "1",
"total": "488",
"wickets": "10",
"overs": "136.5",
"is_declared": false
},
{
"number": "2",
"batting_team": "1",
"bowling_team": "7",
"total": "221",
"wickets": "10",
"overs": "70",
"is_declared": false
},
{
"number": "3",
"batting_team": "7",
"bowling_team": "1",
"total": "344",
"wickets": "6",
"overs": "105",
"is_declared": true
},
{
"number": "4",
"batting_team": "1",
"bowling_team": "7",
"total": "119",
"wickets": "10",
"overs": "46.4",
"is_declared": false
}
]
}
]
}
Endpoint Description
This endpoint retrieves the last five matches played by a specific cricket team in a given match. It provides detailed insights into the team's recent performance, including match results, venues, and other relevant statistics.
Request
Method: GET
URL:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/team-last-five
Path Parameters:
matchId
: The unique identifier for the match whose last five matches are being requested.
Response
Status Code: 200 OK
Content-Type: application/json
Response Body
The response will contain the following structure:
status
: Indicates the success of the request (boolean).statusCode
: A numerical code representing the status of the response (integer).message
: A message providing additional information about the response (string).response
: An array containing match details, which includes:id
: Unique identifier for the team (string).last_five_matches
: An array of the last five matches played by the team, each containing:id
: Unique identifier for the match (string).file_name
: Name of the file associated with the match (string).display_output
: Output to be displayed (string).result
: The overall result of the match (string).result_short
: A short description of the result (string).venue_id
: Unique identifier for the venue (string).venue_name
: Name of the venue (string).venue_city
: City where the venue is located (string).winner_team_id
: Identifier for the winning team (string).winner_team_name
: Name of the winning team (string).loser_team_id
: Identifier for the losing team (string).loser_team_name
: Name of the losing team (string).win_by
: Method of victory (string).margin_value
: The margin by which the match was won (string).match_player
: Key player of the match (string).match_start_date
: Start date of the match (string).match_end_date
: End date of the match (string).against_team_id
: Identifier for the opposing team (string).against_team_name
: Name of the opposing team (string).against_team_short_name
: Short name of the opposing team (string).home_team_id
: Identifier for the home team (string).away_team_id
: Identifier for the away team (string).match_number
: The number of the match in the series (string).innings
: An array containing details about each innings, which includes:number
: The innings number (string).batting_team
: The team that batted (string).bowling_team
: The team that bowled (string).total
: Total runs scored in the innings (string).wickets
: Number of wickets lost (string).overs
: Number of overs bowled (string).is_declared
: Indicates if the innings was declared (boolean).
Notes
Ensure that the
matchId
is valid and corresponds to an existing match to receive accurate results.The response structure may vary based on the match data available.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/team-last-five HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"status": true,
"statusCode": 200,
"message": "Data fetch successfully",
"response": [
{
"id": "7",
"last_five_matches": [
{
"id": "255314",
"file_name": "saau06112025255314",
"display_output": "South Africa beat Australia by 5 wickets on June 11, 2025 at Lord's Cricket Ground, London",
"result": "South Africa beat Australia by 5 wickets",
"result_short": "SA beat AUS by 5 wkts",
"venue_id": "89",
"venue_name": "Lord's Cricket Ground, London",
"venue_city": "London",
"winner_team_id": "7",
"winner_team_name": "South Africa",
"loser_team_id": "1",
"loser_team_name": "Australia",
"win_by": "w",
"margin_value": "5",
"match_player": "Aiden Markram",
"match_start_date": "11-06-2025",
"match_end_date": "15-06-2025",
"against_team_id": "1",
"against_team_name": "Australia",
"against_team_short_name": "AUS",
"home_team_id": "7",
"away_team_id": "1",
"match_number": "Final",
"innings": [
{
"number": "1",
"batting_team": "1",
"bowling_team": "7",
"total": "212",
"wickets": "10",
"overs": "56.4",
"is_declared": false
},
{
"number": "2",
"batting_team": "7",
"bowling_team": "1",
"total": "138",
"wickets": "10",
"overs": "57.1",
"is_declared": false
},
{
"number": "3",
"batting_team": "1",
"bowling_team": "7",
"total": "207",
"wickets": "10",
"overs": "65",
"is_declared": false
},
{
"number": "4",
"batting_team": "7",
"bowling_team": "1",
"total": "282",
"wickets": "5",
"overs": "83.4",
"is_declared": false
}
]
}
]
},
{
"id": "1",
"last_five_matches": [
{
"id": "255314",
"file_name": "saau06112025255314",
"display_output": "South Africa beat Australia by 5 wickets on June 11, 2025 at Lord's Cricket Ground, London",
"result": "South Africa beat Australia by 5 wickets",
"result_short": "SA beat AUS by 5 wkts",
"venue_id": "89",
"venue_name": "Lord's Cricket Ground, London",
"venue_city": "London",
"winner_team_id": "7",
"winner_team_name": "South Africa",
"loser_team_id": "1",
"loser_team_name": "Australia",
"win_by": "w",
"margin_value": "5",
"match_player": "Aiden Markram",
"match_start_date": "11-06-2025",
"match_end_date": "15-06-2025",
"against_team_id": "7",
"against_team_name": "South Africa",
"against_team_short_name": "SA",
"home_team_id": "7",
"away_team_id": "1",
"match_number": "Final",
"innings": [
{
"number": "1",
"batting_team": "1",
"bowling_team": "7",
"total": "212",
"wickets": "10",
"overs": "56.4",
"is_declared": false
},
{
"number": "2",
"batting_team": "7",
"bowling_team": "1",
"total": "138",
"wickets": "10",
"overs": "57.1",
"is_declared": false
},
{
"number": "3",
"batting_team": "1",
"bowling_team": "7",
"total": "207",
"wickets": "10",
"overs": "65",
"is_declared": false
},
{
"number": "4",
"batting_team": "7",
"bowling_team": "1",
"total": "282",
"wickets": "5",
"overs": "83.4",
"is_declared": false
}
]
}
]
}
]
}
Get Match Summary
This endpoint retrieves the summary of a specific cricket match identified by its matchId
. The summary includes details about the innings, scores, batting and bowling performances, and the top performers of the match.
Request
Method:
GET
Endpoint:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/summery
Path Parameters:
matchId
(string): The unique identifier for the match whose summary is being requested.
Response
The response will be in JSON format and includes the following structure:
status (boolean): Indicates the success of the request.
statusCode (integer): A code representing the status of the response.
message (string): A message providing additional information about the response.
response (object): Contains the detailed match summary, including:
innings (array): A list of innings played in the match, where each inning includes:
score (object): Contains the scoring details:
overs
(string): The number of overs played.runsScored
(string): Total runs scored.wickets
(string): Number of wickets lost.runRate
(string): The run rate of the inning.battingTeamName
(string): Name of the batting team.battingTeamID
(string): Identifier for the batting team.
battingList (array): A list of players who batted, with details for each player including:
playerID
(string): Unique identifier for the player.playerName
(string): Name of the player.playerTeam
(string): Team of the player.playerMatchBalls
(string): Balls faced by the player.playerMatchRuns
(string): Runs scored by the player.playerBattingNumber
(string): Batting order of the player.playerMatchSixes
(string): Number of sixes hit by the player.playerMatchFours
(string): Number of fours hit by the player.
bowlingList (array): A list of players who bowled, with details for each player including:
playerID
(string): Unique identifier for the player.playerName
(string): Name of the player.playerTeam
(string): Team of the player.playerDotBalls
(string): Number of dot balls bowled.playerWicketsTaken
(string): Number of wickets taken.playerMaidensBowled
(string): Number of maiden overs bowled.playerRunsConceeded
(string): Runs conceded by the player.playerOversBowled
(string): Overs bowled by the player.playerEconomyRate
(string): Economy rate of the player.
topPerformer (object): Contains the top performers in the match:
batsman (object): Details of the top batsman.
bowler (object): Details of the top bowler.
Notes
Ensure that the
matchId
is valid and corresponds to an existing match.The response will provide comprehensive details about the match, which can be useful for analysis or reporting.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/summery HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"status": true,
"statusCode": 200,
"message": "Data fetch successfully",
"response": {
"innings": [
{
"score": {
"overs": "56.4",
"runsScored": "212",
"wickets": "10",
"runRate": "3.74",
"battingTeamName": "AUS",
"battingTeamID": "1"
},
"battingList": [
{
"playerID": "63277",
"playerName": "Beau Webster",
"playerTeam": "AUS",
"playerMatchBalls": "92",
"playerMatchRuns": "72",
"playerBattingNumber": "5",
"playerMatchSixes": "0",
"playerMatchFours": "11"
},
{
"playerID": "4308",
"playerName": "Steve Smith",
"playerTeam": "AUS",
"playerMatchBalls": "112",
"playerMatchRuns": "66",
"playerBattingNumber": "3",
"playerMatchSixes": "0",
"playerMatchFours": "10"
}
],
"bowlingList": [
{
"playerID": "63611",
"playerName": "Kagiso Rabada",
"playerTeam": "SA",
"playerDotBalls": "76",
"playerWicketsTaken": "5",
"playerMaidensBowled": "5",
"playerRunsConceeded": "51",
"playerOversBowled": "15.4",
"playerEconomyRate": "3.25"
},
{
"playerID": "69409",
"playerName": "Marco Jansen",
"playerTeam": "SA",
"playerDotBalls": "63",
"playerWicketsTaken": "3",
"playerMaidensBowled": "5",
"playerRunsConceeded": "49",
"playerOversBowled": "14",
"playerEconomyRate": "3.50"
}
]
},
{
"score": {
"overs": "57.1",
"runsScored": "138",
"wickets": "10",
"runRate": "2.41",
"battingTeamName": "SA",
"battingTeamID": "7"
},
"battingList": [
{
"playerID": "63604",
"playerName": "David Bedingham",
"playerTeam": "SA",
"playerMatchBalls": "111",
"playerMatchRuns": "45",
"playerBattingNumber": "5",
"playerMatchSixes": "0",
"playerMatchFours": "6"
},
{
"playerID": "12492",
"playerName": "Temba Bavuma",
"playerTeam": "SA",
"playerMatchBalls": "84",
"playerMatchRuns": "36",
"playerBattingNumber": "3",
"playerMatchSixes": "1",
"playerMatchFours": "4"
}
],
"bowlingList": [
{
"playerID": "56964",
"playerName": "Pat Cummins",
"playerTeam": "AUS",
"playerDotBalls": "95",
"playerWicketsTaken": "6",
"playerMaidensBowled": "6",
"playerRunsConceeded": "28",
"playerOversBowled": "18.1",
"playerEconomyRate": "1.54"
},
{
"playerID": "10053",
"playerName": "Mitchell Starc",
"playerTeam": "AUS",
"playerDotBalls": "59",
"playerWicketsTaken": "2",
"playerMaidensBowled": "3",
"playerRunsConceeded": "41",
"playerOversBowled": "13",
"playerEconomyRate": "3.15"
}
]
},
{
"score": {
"overs": "65.0",
"runsScored": "207",
"wickets": "10",
"runRate": "3.18",
"battingTeamName": "AUS",
"battingTeamID": "1"
},
"battingList": [
{
"playerID": "10053",
"playerName": "Mitchell Starc",
"playerTeam": "AUS",
"playerMatchBalls": "136",
"playerMatchRuns": "58",
"playerBattingNumber": "8",
"playerMatchSixes": "0",
"playerMatchFours": "5"
},
{
"playerID": "63706",
"playerName": "Alex Carey",
"playerTeam": "AUS",
"playerMatchBalls": "50",
"playerMatchRuns": "43",
"playerBattingNumber": "6",
"playerMatchSixes": "0",
"playerMatchFours": "5"
}
],
"bowlingList": [
{
"playerID": "63611",
"playerName": "Kagiso Rabada",
"playerTeam": "SA",
"playerDotBalls": "80",
"playerWicketsTaken": "4",
"playerMaidensBowled": "1",
"playerRunsConceeded": "59",
"playerOversBowled": "18",
"playerEconomyRate": "3.27"
},
{
"playerID": "64225",
"playerName": "Lungi Ngidi",
"playerTeam": "SA",
"playerDotBalls": "50",
"playerWicketsTaken": "3",
"playerMaidensBowled": "1",
"playerRunsConceeded": "38",
"playerOversBowled": "13",
"playerEconomyRate": "2.92"
}
]
},
{
"score": {
"overs": "83.4",
"runsScored": "282",
"wickets": "5",
"runRate": "3.37",
"battingTeamName": "SA",
"battingTeamID": "7"
},
"battingList": [
{
"playerID": "64219",
"playerName": "Aiden Markram",
"playerTeam": "SA",
"playerMatchBalls": "207",
"playerMatchRuns": "136",
"playerBattingNumber": "0",
"playerMatchSixes": "0",
"playerMatchFours": "14"
},
{
"playerID": "12492",
"playerName": "Temba Bavuma",
"playerTeam": "SA",
"playerMatchBalls": "134",
"playerMatchRuns": "66",
"playerBattingNumber": "3",
"playerMatchSixes": "0",
"playerMatchFours": "5"
}
],
"bowlingList": [
{
"playerID": "10053",
"playerName": "Mitchell Starc",
"playerTeam": "AUS",
"playerDotBalls": "48",
"playerWicketsTaken": "3",
"playerMaidensBowled": "1",
"playerRunsConceeded": "66",
"playerOversBowled": "14.4",
"playerEconomyRate": "4.50"
},
{
"playerID": "4255",
"playerName": "Josh Hazlewood",
"playerTeam": "AUS",
"playerDotBalls": "80",
"playerWicketsTaken": "1",
"playerMaidensBowled": "2",
"playerRunsConceeded": "58",
"playerOversBowled": "19",
"playerEconomyRate": "3.05"
}
]
}
],
"topPerformer": {
"batsman": {
"playerID": "64219",
"playerName": "Aiden Markram",
"playerTeam": "SA",
"playerMatchBalls": "207",
"playerMatchRuns": "136",
"playerBattingNumber": "0",
"playerMatchSixes": "0",
"playerMatchFours": "14"
},
"bowler": {
"playerID": "56964",
"playerName": "Pat Cummins",
"playerTeam": "AUS",
"playerDotBalls": "95",
"playerWicketsTaken": "6",
"playerMaidensBowled": "6",
"playerRunsConceeded": "28",
"playerOversBowled": "18.1",
"playerEconomyRate": "1.54"
}
}
}
}
Get Team Analysis for Match
This endpoint retrieves the team analysis for a specific cricket match identified by its matchId
. The analysis includes details about both teams participating in the match, such as their overall ratings, batting strengths against different types of bowling, and other relevant metrics.
Request
Method:
GET
Endpoint:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/team-analysis
Path Parameters:
matchId
(string): The unique identifier for the match whose team analysis is being requested.
Response
The response will be in JSON format and includes the following structure:
status (boolean): Indicates the success of the request.
statusCode (integer): A code representing the status of the response.
message (string): A message providing additional information about the response.
response (object): Contains the detailed team analysis, including:
matchID (string): The identifier for the match.
compTypeID (string): The competition type identifier.
compType (string): The competition type name.
teamA (object): Analysis details for Team A, including:
teamID (string|null): The unique identifier for Team A.
teamShortName (string|null): The short name of Team A.
battingVSPace (string|null): Batting performance against pace bowling.
battingVSSpin (string|null): Batting performance against spin bowling.
paceBowling (string|null): Analysis of pace bowling performance.
spinBowling (string|null): Analysis of spin bowling performance.
battingDepth (string|null): The batting depth of Team A.
overallRating (string|null): The overall rating of Team A.
teamB (object): Analysis details for Team B, including:
teamID (string|null): The unique identifier for Team B.
teamShortName (string|null): The short name of Team B.
battingVSPace (string|null): Batting performance against pace bowling.
battingVSSpin (string|null): Batting performance against spin bowling.
paceBowling (string|null): Analysis of pace bowling performance.
spinBowling (string|null): Analysis of spin bowling performance.
battingDepth (string|null): The batting depth of Team B.
overallRating (string|null): The overall rating of Team B.
Notes
Ensure that the
matchId
is valid and corresponds to an existing match.The response will provide comprehensive details about the team analysis, which can be useful for tactical assessments and performance evaluations.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/team-analysis HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"status": true,
"statusCode": 200,
"message": "Data fetch successfully",
"response": {
"matchID": "",
"compTypeID": "",
"compType": "",
"teamA": {
"teamID": null,
"teamShortName": null,
"battingVSPace": null,
"battingVSSpin": null,
"paceBowling": null,
"spinBowling": null,
"battingDepth": null,
"overallRating": null
},
"teamB": {
"teamID": null,
"teamShortName": null,
"battingVSPace": null,
"battingVSSpin": null,
"paceBowling": null,
"spinBowling": null,
"battingDepth": null,
"overallRating": null
}
}
}
Get Top Picks for a Cricket Match
This endpoint retrieves the top picks for a specific cricket match identified by the matchId
. It provides insights into the two competing teams and their respective data, which can be useful for fans and analysts alike.
Request
Method: GET
Endpoint:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/top-pick
Path Parameters
matchId
(string): The unique identifier for the cricket match for which top picks are being requested.
Response
The response is returned in JSON format and contains the following structure:
status (boolean): Indicates whether the request was successful.
statusCode (integer): A code representing the status of the request (0 indicates success).
message (string): A message providing additional context about the request status (can be empty).
response (object): Contains the details of the match:
team1Name (string): The name of the first team.
team2Name (string): The name of the second team.
team1Data (array): An array containing data related to the first team.
team2Data (array): An array containing data related to the second team.
This endpoint allows users to gather important information about the match, facilitating better engagement and analysis.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/top-pick HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"status": true,
"statusCode": 200,
"message": "Data fetch successfully",
"response": {
"team1Name": "",
"team2Name": "",
"team1Data": [],
"team2Data": []
}
}
Get Stadium Information for a Cricket Match
This endpoint retrieves detailed information about the stadium where a specific cricket match is being held. It provides various statistics and characteristics related to the venue.
Request
Method: GET
URL: https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/stadiumv2
Path Parameters
matchId
(string): The unique identifier for the cricket match. This parameter is required to specify which match's stadium information you are requesting.
Request Headers
Content-Type
: (optional) The media type of the resource. For this request, it is typically set toapplication/json
.
Response
Status Code: 200 OK Content-Type: application/json
Response Body
The response will contain a JSON object with the following fields:
firstBattingWinPercent
(string): The percentage of matches won by the team batting first at this venue.avgFirstInningScore
(string): The average score made in the first innings at this stadium.highestScoreChased
(string): The highest score successfully chased down at this venue.venueName
(string): The name of the stadium.venueID
(string): A unique identifier for the venue.paceWicket
(string): Information regarding the pace wicket characteristics of the stadium.spinWicket
(string): Information regarding the spin wicket characteristics of the stadium.StadiumCharacteristics
(array of strings): An array containing various characteristics of the stadium.text
(string): Additional text or notes regarding the stadium.
This endpoint is useful for analysts and fans who want to understand the performance metrics and characteristics of a cricket stadium in relation to specific matches.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/stadiumv2 HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"firstBattingWinPercent": "50",
"avgFirstInningScore": "328",
"highestScoreChased": "294",
"venueName": "Clontarf Cricket Club, Dublin",
"venueID": "30",
"paceWicket": "18",
"spinWicket": "5",
"StadiumCharacteristics": [
"Neutral",
"Pace Friendly",
"Toss Agnostic",
"Sunny"
],
"text": "*ODI Data from Last 3 Years"
}
Get Player Records for a Cricket Match
This endpoint retrieves player records for a specific cricket match identified by the matchId
. It provides detailed statistics for both batting and bowling performances of players participating in the match.
HTTP Request
Method: GET
Endpoint:
https://apiv3.sportsapi360.com/cricket/api/v2/match/:matchId/player-record
Request Parameters
matchId (path parameter): The unique identifier for the cricket match for which player records are being requested.
Response Fields
status: Indicates the success of the request (boolean).
statusCode: A code representing the status of the response (integer).
message: A message providing additional information about the response (string).
response: Contains detailed player statistics for both batting and bowling, including:
matchID: The ID of the match.
compType: The type of competition.
playerRecordBatting: Statistics related to batting performance.
playerRecordBowling: Statistics related to bowling performance.
Each of the player records includes fields such as teamID
, shortName
, playerID
, playerName
, and various performance metrics.
This endpoint is essential for retrieving comprehensive player statistics for analysis and reporting purposes.
{API_KEY}
GET /cricket/api/v2/match/{matchId}/player-record HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"status": true,
"statusCode": 200,
"message": "Data fetch successfully",
"response": {
"matchID": "256686",
"compType": "ODI international",
"playerRecordBatting": {
"battingAverage": [
{
"teamID": "9",
"shortName": "WI",
"playerID": "60160",
"playerName": "John Campbell",
"playerRuns": "179",
"battingAverage": "179",
"playerBallsFaced": "137",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66085",
"playerName": "Harry Tector",
"playerRuns": "162",
"battingAverage": "81",
"playerBallsFaced": "202",
"totalMatches": "3"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4454",
"playerName": "Andy Balbirnie",
"playerRuns": "391",
"battingAverage": "55.86",
"playerBallsFaced": "450",
"totalMatches": "8"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "59314",
"playerName": "Evin Lewis",
"playerRuns": "219",
"battingAverage": "54.75",
"playerBallsFaced": "233",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "63797",
"playerName": "Shai Hope",
"playerRuns": "352",
"battingAverage": "39.11",
"playerBallsFaced": "406",
"totalMatches": "10"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "74165",
"playerName": "Matthew Forde",
"playerRuns": "38",
"battingAverage": "38",
"playerBallsFaced": "48",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4476",
"playerName": "Paul Stirling",
"playerRuns": "449",
"battingAverage": "37.42",
"playerBallsFaced": "536",
"totalMatches": "13"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"playerRuns": "140",
"battingAverage": "28",
"playerBallsFaced": "217",
"totalMatches": "9"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"playerRuns": "155",
"battingAverage": "25.83",
"playerBallsFaced": "233",
"totalMatches": "8"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64543",
"playerName": "Brandon King",
"playerRuns": "77",
"battingAverage": "19.25",
"playerBallsFaced": "117",
"totalMatches": "4"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "95288",
"playerName": "Cade Carmichael",
"playerRuns": "16",
"battingAverage": "16",
"playerBallsFaced": "21",
"totalMatches": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "57643",
"playerName": "Justin Greaves",
"playerRuns": "64",
"battingAverage": "16",
"playerBallsFaced": "102",
"totalMatches": "4"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63157",
"playerName": "Barry McCarthy",
"playerRuns": "47",
"battingAverage": "15.67",
"playerBallsFaced": "61",
"totalMatches": "5"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66087",
"playerName": "Lorcan Tucker",
"playerRuns": "78",
"battingAverage": "15.6",
"playerBallsFaced": "115",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "66243",
"playerName": "Romario Shepherd",
"playerRuns": "74",
"battingAverage": "14.8",
"playerBallsFaced": "79",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64262",
"playerName": "Gudakesh Motie",
"playerRuns": "8",
"battingAverage": "8",
"playerBallsFaced": "4",
"totalMatches": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64264",
"playerName": "Alzarri Joseph",
"playerRuns": "26",
"battingAverage": "6.5",
"playerBallsFaced": "53",
"totalMatches": "7"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "9694",
"playerName": "George Dockrell",
"playerRuns": "49",
"battingAverage": "6.13",
"playerBallsFaced": "73",
"totalMatches": "11"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "65282",
"playerName": "Keacy Carty",
"playerRuns": "6",
"battingAverage": "6",
"playerBallsFaced": "15",
"totalMatches": "1"
}
],
"battingStrikeRate": [
{
"teamID": "9",
"shortName": "WI",
"playerID": "64262",
"playerName": "Gudakesh Motie",
"playerRuns": "8",
"battingStrikeRate": "200",
"playerBallsFaced": "4",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "84550",
"playerName": "Thomas Mayes",
"playerRuns": "8",
"battingStrikeRate": "160",
"playerBallsFaced": "5",
"totalMatches": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "60160",
"playerName": "John Campbell",
"playerRuns": "179",
"battingStrikeRate": "130.66",
"playerBallsFaced": "137",
"totalMatches": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "59314",
"playerName": "Evin Lewis",
"playerRuns": "219",
"battingStrikeRate": "93.99",
"playerBallsFaced": "233",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "66243",
"playerName": "Romario Shepherd",
"playerRuns": "74",
"battingStrikeRate": "93.67",
"playerBallsFaced": "79",
"totalMatches": "5"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4454",
"playerName": "Andy Balbirnie",
"playerRuns": "391",
"battingStrikeRate": "86.89",
"playerBallsFaced": "450",
"totalMatches": "8"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "63797",
"playerName": "Shai Hope",
"playerRuns": "352",
"battingStrikeRate": "86.7",
"playerBallsFaced": "406",
"totalMatches": "10"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4476",
"playerName": "Paul Stirling",
"playerRuns": "449",
"battingStrikeRate": "83.77",
"playerBallsFaced": "536",
"totalMatches": "13"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66085",
"playerName": "Harry Tector",
"playerRuns": "162",
"battingStrikeRate": "80.2",
"playerBallsFaced": "202",
"totalMatches": "3"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "74165",
"playerName": "Matthew Forde",
"playerRuns": "38",
"battingStrikeRate": "79.17",
"playerBallsFaced": "48",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63157",
"playerName": "Barry McCarthy",
"playerRuns": "47",
"battingStrikeRate": "77.05",
"playerBallsFaced": "61",
"totalMatches": "5"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "95288",
"playerName": "Cade Carmichael",
"playerRuns": "16",
"battingStrikeRate": "76.19",
"playerBallsFaced": "21",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66087",
"playerName": "Lorcan Tucker",
"playerRuns": "78",
"battingStrikeRate": "67.83",
"playerBallsFaced": "115",
"totalMatches": "5"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "9694",
"playerName": "George Dockrell",
"playerRuns": "49",
"battingStrikeRate": "67.12",
"playerBallsFaced": "73",
"totalMatches": "11"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"playerRuns": "155",
"battingStrikeRate": "66.52",
"playerBallsFaced": "233",
"totalMatches": "8"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64543",
"playerName": "Brandon King",
"playerRuns": "77",
"battingStrikeRate": "65.81",
"playerBallsFaced": "117",
"totalMatches": "4"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"playerRuns": "140",
"battingStrikeRate": "64.52",
"playerBallsFaced": "217",
"totalMatches": "9"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "57643",
"playerName": "Justin Greaves",
"playerRuns": "64",
"battingStrikeRate": "62.75",
"playerBallsFaced": "102",
"totalMatches": "4"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64264",
"playerName": "Alzarri Joseph",
"playerRuns": "26",
"battingStrikeRate": "49.06",
"playerBallsFaced": "53",
"totalMatches": "7"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "65282",
"playerName": "Keacy Carty",
"playerRuns": "6",
"battingStrikeRate": "40",
"playerBallsFaced": "15",
"totalMatches": "1"
}
],
"totalFours": [
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4476",
"playerName": "Paul Stirling",
"playerRuns": "449",
"totalFours": "50",
"playerBallsFaced": "536",
"totalMatches": "13"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "63797",
"playerName": "Shai Hope",
"playerRuns": "352",
"totalFours": "45",
"playerBallsFaced": "406",
"totalMatches": "10"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4454",
"playerName": "Andy Balbirnie",
"playerRuns": "391",
"totalFours": "35",
"playerBallsFaced": "450",
"totalMatches": "8"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "59314",
"playerName": "Evin Lewis",
"playerRuns": "219",
"totalFours": "22",
"playerBallsFaced": "233",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "60160",
"playerName": "John Campbell",
"playerRuns": "179",
"totalFours": "15",
"playerBallsFaced": "137",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66085",
"playerName": "Harry Tector",
"playerRuns": "162",
"totalFours": "13",
"playerBallsFaced": "202",
"totalMatches": "3"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"playerRuns": "155",
"totalFours": "13",
"playerBallsFaced": "233",
"totalMatches": "8"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"playerRuns": "140",
"totalFours": "12",
"playerBallsFaced": "217",
"totalMatches": "9"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64543",
"playerName": "Brandon King",
"playerRuns": "77",
"totalFours": "10",
"playerBallsFaced": "117",
"totalMatches": "4"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "57643",
"playerName": "Justin Greaves",
"playerRuns": "64",
"totalFours": "9",
"playerBallsFaced": "102",
"totalMatches": "4"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "66243",
"playerName": "Romario Shepherd",
"playerRuns": "74",
"totalFours": "8",
"playerBallsFaced": "79",
"totalMatches": "5"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "9694",
"playerName": "George Dockrell",
"playerRuns": "49",
"totalFours": "6",
"playerBallsFaced": "73",
"totalMatches": "11"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66087",
"playerName": "Lorcan Tucker",
"playerRuns": "78",
"totalFours": "6",
"playerBallsFaced": "115",
"totalMatches": "5"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63157",
"playerName": "Barry McCarthy",
"playerRuns": "47",
"totalFours": "5",
"playerBallsFaced": "61",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64264",
"playerName": "Alzarri Joseph",
"playerRuns": "26",
"totalFours": "4",
"playerBallsFaced": "53",
"totalMatches": "7"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "74165",
"playerName": "Matthew Forde",
"playerRuns": "38",
"totalFours": "4",
"playerBallsFaced": "48",
"totalMatches": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64262",
"playerName": "Gudakesh Motie",
"playerRuns": "8",
"totalFours": "2",
"playerBallsFaced": "4",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "95288",
"playerName": "Cade Carmichael",
"playerRuns": "16",
"totalFours": "1",
"playerBallsFaced": "21",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "84550",
"playerName": "Thomas Mayes",
"playerRuns": "8",
"totalFours": "1",
"playerBallsFaced": "5",
"totalMatches": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "65282",
"playerName": "Keacy Carty",
"playerRuns": "6",
"totalFours": "1",
"playerBallsFaced": "15",
"totalMatches": "1"
}
],
"totalSixes": [
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4454",
"playerName": "Andy Balbirnie",
"playerRuns": "391",
"totalSixes": "12",
"playerBallsFaced": "450",
"totalMatches": "8"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4476",
"playerName": "Paul Stirling",
"playerRuns": "449",
"totalSixes": "10",
"playerBallsFaced": "536",
"totalMatches": "13"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "59314",
"playerName": "Evin Lewis",
"playerRuns": "219",
"totalSixes": "7",
"playerBallsFaced": "233",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "60160",
"playerName": "John Campbell",
"playerRuns": "179",
"totalSixes": "6",
"playerBallsFaced": "137",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"playerRuns": "140",
"totalSixes": "3",
"playerBallsFaced": "217",
"totalMatches": "9"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "63797",
"playerName": "Shai Hope",
"playerRuns": "352",
"totalSixes": "3",
"playerBallsFaced": "406",
"totalMatches": "10"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"playerRuns": "155",
"totalSixes": "2",
"playerBallsFaced": "233",
"totalMatches": "8"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66085",
"playerName": "Harry Tector",
"playerRuns": "162",
"totalSixes": "1",
"playerBallsFaced": "202",
"totalMatches": "3"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63157",
"playerName": "Barry McCarthy",
"playerRuns": "47",
"totalSixes": "1",
"playerBallsFaced": "61",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64543",
"playerName": "Brandon King",
"playerRuns": "77",
"totalSixes": "1",
"playerBallsFaced": "117",
"totalMatches": "4"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "66243",
"playerName": "Romario Shepherd",
"playerRuns": "74",
"totalSixes": "1",
"playerBallsFaced": "79",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "74165",
"playerName": "Matthew Forde",
"playerRuns": "38",
"totalSixes": "1",
"playerBallsFaced": "48",
"totalMatches": "1"
}
],
"totalRuns": [
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4476",
"playerName": "Paul Stirling",
"playerRuns": "449",
"playerBallsFaced": "536",
"totalMatches": "13"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4454",
"playerName": "Andy Balbirnie",
"playerRuns": "391",
"playerBallsFaced": "450",
"totalMatches": "8"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "63797",
"playerName": "Shai Hope",
"playerRuns": "352",
"playerBallsFaced": "406",
"totalMatches": "10"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "59314",
"playerName": "Evin Lewis",
"playerRuns": "219",
"playerBallsFaced": "233",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "60160",
"playerName": "John Campbell",
"playerRuns": "179",
"playerBallsFaced": "137",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66085",
"playerName": "Harry Tector",
"playerRuns": "162",
"playerBallsFaced": "202",
"totalMatches": "3"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"playerRuns": "155",
"playerBallsFaced": "233",
"totalMatches": "8"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"playerRuns": "140",
"playerBallsFaced": "217",
"totalMatches": "9"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66087",
"playerName": "Lorcan Tucker",
"playerRuns": "78",
"playerBallsFaced": "115",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64543",
"playerName": "Brandon King",
"playerRuns": "77",
"playerBallsFaced": "117",
"totalMatches": "4"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "66243",
"playerName": "Romario Shepherd",
"playerRuns": "74",
"playerBallsFaced": "79",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "57643",
"playerName": "Justin Greaves",
"playerRuns": "64",
"playerBallsFaced": "102",
"totalMatches": "4"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "9694",
"playerName": "George Dockrell",
"playerRuns": "49",
"playerBallsFaced": "73",
"totalMatches": "11"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63157",
"playerName": "Barry McCarthy",
"playerRuns": "47",
"playerBallsFaced": "61",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "74165",
"playerName": "Matthew Forde",
"playerRuns": "38",
"playerBallsFaced": "48",
"totalMatches": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64264",
"playerName": "Alzarri Joseph",
"playerRuns": "26",
"playerBallsFaced": "53",
"totalMatches": "7"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "95288",
"playerName": "Cade Carmichael",
"playerRuns": "16",
"playerBallsFaced": "21",
"totalMatches": "1"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "84550",
"playerName": "Thomas Mayes",
"playerRuns": "8",
"playerBallsFaced": "5",
"totalMatches": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64262",
"playerName": "Gudakesh Motie",
"playerRuns": "8",
"playerBallsFaced": "4",
"totalMatches": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "65282",
"playerName": "Keacy Carty",
"playerRuns": "6",
"playerBallsFaced": "15",
"totalMatches": "1"
}
],
"fifties": [
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4476",
"playerName": "Paul Stirling",
"playerRuns": "449",
"fifties": "5",
"playerBallsFaced": "536",
"totalMatches": "13"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66085",
"playerName": "Harry Tector",
"playerRuns": "162",
"fifties": "3",
"playerBallsFaced": "202",
"totalMatches": "3"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4454",
"playerName": "Andy Balbirnie",
"playerRuns": "391",
"fifties": "1",
"playerBallsFaced": "450",
"totalMatches": "8"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"playerRuns": "140",
"fifties": "1",
"playerBallsFaced": "217",
"totalMatches": "9"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "59314",
"playerName": "Evin Lewis",
"playerRuns": "219",
"fifties": "1",
"playerBallsFaced": "233",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "66243",
"playerName": "Romario Shepherd",
"playerRuns": "74",
"fifties": "1",
"playerBallsFaced": "79",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"playerRuns": "155",
"fifties": "1",
"playerBallsFaced": "233",
"totalMatches": "8"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "63797",
"playerName": "Shai Hope",
"playerRuns": "352",
"fifties": "1",
"playerBallsFaced": "406",
"totalMatches": "10"
}
],
"hundreds": [
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4454",
"playerName": "Andy Balbirnie",
"playerRuns": "391",
"hundreds": "2",
"playerBallsFaced": "450",
"totalMatches": "8"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "59314",
"playerName": "Evin Lewis",
"playerRuns": "219",
"hundreds": "1",
"playerBallsFaced": "233",
"totalMatches": "5"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "60160",
"playerName": "John Campbell",
"playerRuns": "179",
"hundreds": "1",
"playerBallsFaced": "137",
"totalMatches": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "63797",
"playerName": "Shai Hope",
"playerRuns": "352",
"hundreds": "1",
"playerBallsFaced": "406",
"totalMatches": "10"
}
]
},
"playerRecordBowling": {
"totalWickets": [
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"totalWickets": "17",
"playerRunsConceeded": "344",
"totalMatches": "9",
"ballsBowled": "486"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "9694",
"playerName": "George Dockrell",
"totalWickets": "11",
"playerRunsConceeded": "361",
"totalMatches": "11",
"ballsBowled": "388"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64264",
"playerName": "Alzarri Joseph",
"totalWickets": "11",
"playerRunsConceeded": "219",
"totalMatches": "7",
"ballsBowled": "336"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63157",
"playerName": "Barry McCarthy",
"totalWickets": "10",
"playerRunsConceeded": "231",
"totalMatches": "5",
"ballsBowled": "239"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"totalWickets": "8",
"playerRunsConceeded": "206",
"totalMatches": "8",
"ballsBowled": "258"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66081",
"playerName": "Josh Little",
"totalWickets": "5",
"playerRunsConceeded": "334",
"totalMatches": "6",
"ballsBowled": "336"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4476",
"playerName": "Paul Stirling",
"totalWickets": "3",
"playerRunsConceeded": "160",
"totalMatches": "13",
"ballsBowled": "210"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "74165",
"playerName": "Matthew Forde",
"totalWickets": "3",
"playerRunsConceeded": "68",
"totalMatches": "1",
"ballsBowled": "60"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "66243",
"playerName": "Romario Shepherd",
"totalWickets": "2",
"playerRunsConceeded": "113",
"totalMatches": "5",
"ballsBowled": "185"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "84550",
"playerName": "Thomas Mayes",
"totalWickets": "1",
"playerRunsConceeded": "23",
"totalMatches": "1",
"ballsBowled": "36"
}
],
"bowlingAverage": [
{
"teamID": "9",
"shortName": "WI",
"playerID": "64264",
"playerName": "Alzarri Joseph",
"totalWickets": "11",
"playerRunsConceeded": "219",
"totalMatches": "7",
"ballsBowled": "336",
"bowlingAverage": "19.91"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"totalWickets": "17",
"playerRunsConceeded": "344",
"totalMatches": "9",
"ballsBowled": "486",
"bowlingAverage": "20.24"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "74165",
"playerName": "Matthew Forde",
"totalWickets": "3",
"playerRunsConceeded": "68",
"totalMatches": "1",
"ballsBowled": "60",
"bowlingAverage": "22.67"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "84550",
"playerName": "Thomas Mayes",
"totalWickets": "1",
"playerRunsConceeded": "23",
"totalMatches": "1",
"ballsBowled": "36",
"bowlingAverage": "23"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63157",
"playerName": "Barry McCarthy",
"totalWickets": "10",
"playerRunsConceeded": "231",
"totalMatches": "5",
"ballsBowled": "239",
"bowlingAverage": "23.1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"totalWickets": "8",
"playerRunsConceeded": "206",
"totalMatches": "8",
"ballsBowled": "258",
"bowlingAverage": "25.75"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "9694",
"playerName": "George Dockrell",
"totalWickets": "11",
"playerRunsConceeded": "361",
"totalMatches": "11",
"ballsBowled": "388",
"bowlingAverage": "32.82"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4476",
"playerName": "Paul Stirling",
"totalWickets": "3",
"playerRunsConceeded": "160",
"totalMatches": "13",
"ballsBowled": "210",
"bowlingAverage": "53.33"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "66243",
"playerName": "Romario Shepherd",
"totalWickets": "2",
"playerRunsConceeded": "113",
"totalMatches": "5",
"ballsBowled": "185",
"bowlingAverage": "56.5"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66081",
"playerName": "Josh Little",
"totalWickets": "5",
"playerRunsConceeded": "334",
"totalMatches": "6",
"ballsBowled": "336",
"bowlingAverage": "66.8"
}
],
"bowlingStrikeRate": [
{
"teamID": "9",
"shortName": "WI",
"playerID": "74165",
"playerName": "Matthew Forde",
"totalWickets": "3",
"playerRunsConceeded": "68",
"totalMatches": "1",
"ballsBowled": "60",
"bowlingStrikeRate": "20"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63157",
"playerName": "Barry McCarthy",
"totalWickets": "10",
"playerRunsConceeded": "231",
"totalMatches": "5",
"ballsBowled": "239",
"bowlingStrikeRate": "23.9"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"totalWickets": "17",
"playerRunsConceeded": "344",
"totalMatches": "9",
"ballsBowled": "486",
"bowlingStrikeRate": "28.59"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64264",
"playerName": "Alzarri Joseph",
"totalWickets": "11",
"playerRunsConceeded": "219",
"totalMatches": "7",
"ballsBowled": "336",
"bowlingStrikeRate": "30.55"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"totalWickets": "8",
"playerRunsConceeded": "206",
"totalMatches": "8",
"ballsBowled": "258",
"bowlingStrikeRate": "32.25"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "9694",
"playerName": "George Dockrell",
"totalWickets": "11",
"playerRunsConceeded": "361",
"totalMatches": "11",
"ballsBowled": "388",
"bowlingStrikeRate": "35.27"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "84550",
"playerName": "Thomas Mayes",
"totalWickets": "1",
"playerRunsConceeded": "23",
"totalMatches": "1",
"ballsBowled": "36",
"bowlingStrikeRate": "36"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66081",
"playerName": "Josh Little",
"totalWickets": "5",
"playerRunsConceeded": "334",
"totalMatches": "6",
"ballsBowled": "336",
"bowlingStrikeRate": "67.2"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4476",
"playerName": "Paul Stirling",
"totalWickets": "3",
"playerRunsConceeded": "160",
"totalMatches": "13",
"ballsBowled": "210",
"bowlingStrikeRate": "70"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "66243",
"playerName": "Romario Shepherd",
"totalWickets": "2",
"playerRunsConceeded": "113",
"totalMatches": "5",
"ballsBowled": "185",
"bowlingStrikeRate": "92.5"
}
],
"economy": [
{
"teamID": "9",
"shortName": "WI",
"playerID": "66243",
"playerName": "Romario Shepherd",
"totalWickets": "2",
"playerRunsConceeded": "113",
"totalMatches": "5",
"ballsBowled": "185",
"economy": "3.66"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "84550",
"playerName": "Thomas Mayes",
"totalWickets": "1",
"playerRunsConceeded": "23",
"totalMatches": "1",
"ballsBowled": "36",
"economy": "3.83"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64264",
"playerName": "Alzarri Joseph",
"totalWickets": "11",
"playerRunsConceeded": "219",
"totalMatches": "7",
"ballsBowled": "336",
"economy": "3.91"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"totalWickets": "17",
"playerRunsConceeded": "344",
"totalMatches": "9",
"ballsBowled": "486",
"economy": "4.25"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "87991",
"playerName": "Liam McCarthy",
"totalWickets": "0",
"playerRunsConceeded": "26",
"totalMatches": "1",
"ballsBowled": "36",
"economy": "4.33"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "57643",
"playerName": "Justin Greaves",
"totalWickets": "0",
"playerRunsConceeded": "27",
"totalMatches": "4",
"ballsBowled": "36",
"economy": "4.5"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "4476",
"playerName": "Paul Stirling",
"totalWickets": "3",
"playerRunsConceeded": "160",
"totalMatches": "13",
"ballsBowled": "210",
"economy": "4.57"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"totalWickets": "8",
"playerRunsConceeded": "206",
"totalMatches": "8",
"ballsBowled": "258",
"economy": "4.79"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64262",
"playerName": "Gudakesh Motie",
"totalWickets": "0",
"playerRunsConceeded": "53",
"totalMatches": "1",
"ballsBowled": "60",
"economy": "5.3"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "9694",
"playerName": "George Dockrell",
"totalWickets": "11",
"playerRunsConceeded": "361",
"totalMatches": "11",
"ballsBowled": "388",
"economy": "5.58"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63157",
"playerName": "Barry McCarthy",
"totalWickets": "10",
"playerRunsConceeded": "231",
"totalMatches": "5",
"ballsBowled": "239",
"economy": "5.8"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "66081",
"playerName": "Josh Little",
"totalWickets": "5",
"playerRunsConceeded": "334",
"totalMatches": "6",
"ballsBowled": "336",
"economy": "5.96"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "74165",
"playerName": "Matthew Forde",
"totalWickets": "3",
"playerRunsConceeded": "68",
"totalMatches": "1",
"ballsBowled": "60",
"economy": "6.8"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "101907",
"playerName": "Shamar Joseph",
"totalWickets": "0",
"playerRunsConceeded": "51",
"totalMatches": "1",
"ballsBowled": "42",
"economy": "7.29"
}
],
"threeWickets": [
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63160",
"playerName": "Andy McBrine",
"totalWickets": "17",
"playerRunsConceeded": "344",
"totalMatches": "9",
"ballsBowled": "486",
"threeWickets": "2"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "9694",
"playerName": "George Dockrell",
"totalWickets": "11",
"playerRunsConceeded": "361",
"totalMatches": "11",
"ballsBowled": "388",
"threeWickets": "2"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "64264",
"playerName": "Alzarri Joseph",
"totalWickets": "11",
"playerRunsConceeded": "219",
"totalMatches": "7",
"ballsBowled": "336",
"threeWickets": "2"
},
{
"teamID": "13",
"shortName": "IRE",
"playerID": "63157",
"playerName": "Barry McCarthy",
"totalWickets": "10",
"playerRunsConceeded": "231",
"totalMatches": "5",
"ballsBowled": "239",
"threeWickets": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "58071",
"playerName": "Roston Chase",
"totalWickets": "8",
"playerRunsConceeded": "206",
"totalMatches": "8",
"ballsBowled": "258",
"threeWickets": "1"
},
{
"teamID": "9",
"shortName": "WI",
"playerID": "74165",
"playerName": "Matthew Forde",
"totalWickets": "3",
"playerRunsConceeded": "68",
"totalMatches": "1",
"ballsBowled": "60",
"threeWickets": "1"
}
],
"fiveWickets": []
}
}
}