Cricket Api Version 3 is release in beta

Team Data API

Team Short Info

get

Get Team Information

This endpoint retrieves detailed information about a specific cricket team based on the provided teamId.

Request

  • Method: GET

  • URL: https://apiv3.sportsapi360.com/cricket/api/v2/team/info/:teamId

  • Path Parameters:

    • teamId (string): The unique identifier of the cricket team whose information is being requested.

Response

The response will return a JSON object containing the following fields:

  • status (boolean): Indicates whether the request was successful.

  • statusCode (integer): A code representing the status of the response.

  • message (string): A message providing additional context about the response.

  • response (object): Contains detailed information about the team:

    • teamID (string): The unique identifier for the team.

    • name (string): The full name of the team.

    • shortName (string): The abbreviated name of the team.

    • description (string): A brief description of the team.

    • image (string): A URL link to an image representing the team.

This endpoint is useful for applications that need to display cricket team information, allowing users to access details about their favorite teams.

Authorizations
Path parameters
teamIdstringRequired
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
200
OK
application/json
Responseobject
get
GET /cricket/api/v2/team/info/{teamId} HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "status": true,
  "statusCode": 200,
  "message": "Data fetch successfully",
  "response": {
    "teamID": "4",
    "name": "India",
    "shortName": "IND",
    "description": "<p>The Indian Cricket Team is governed by the Board of Control for Cricket in India (BCCI), the governing body of cricket in the country. The first recorded match in India was in 1721 when a group of sailors gathered to play in Western India. However, it was only on 25th June 1932 at the famous Lord's cricket ground in England that a national team played an official Test match. Only the sixth team to play Test cricket, India are known to be traditionally strong on its home soil while not really making an impact on away tours. In the first 50 years of their playing history, India won only 35 of the 196 matches played. But it's heartening to note much has changed over the past few years.</p>\r\n<p><br />\r\nWith the emergence of cricketers like Sunil Gavaskar and Kapil Dev, Indian cricket went from strength to strength. The 1983 ICC Cricket World Cup was definitely a high point not just in cricket but in Indian sporting history as well. They possessed jewels like Sachin Tendulkar, Rahul Dravid, Anil Kumble and Sourav Ganguly who brought much glory for the country with their stellar contributions.</p>\r\n<p> </p>\r\n<p>A new breed of cricketers also took centre-stage in the form of Mahendra Singh Dhoni, Yuvraj Singh, Zaheer Khan, Harbhajan Singh, etc. Winning the inaugural ICC World Twenty20 in 2007 was a special moment in India's cricketing annals. But the biggest moment of glory came on 2nd April 2011 when India beat Sri Lanka in the finals of the 2011 ICC Cricket World Cup at the Wankhede Stadium in Mumbai and went on to become world champions. Under Dhoni's captaincy, an Indian team made history after 28 long years and gave its multitude of fans much to cheer about.</p>\r\n<p> </p>\r\n<p>In 2013, Dhoni became the only captain in the history of the game to win all three major ICC trophies after India won the Champions Trophy in England. Although after some poor away form in Test cricket, Dhoni stepped down as captain in red-ball cricket in 2014. However, earlier that year, India finished runners-up in the T20 World Cup held in Bangladesh as they lost to Sri Lanka in the final.</p>\r\n<p> </p>\r\n<p>Except for the 2007 World Cup, India have generally done well in the ICC events. In the 2015 World Cup, they played an aggressive brand of cricket but then lost to the eventual winners Australia in the semis. There was a change in leadership when MS Dhoni stepped down from the shorter formats as well and Virat Kohli was handed over the captaincy. Under his captaincy, India reached the final of the ICC Champions Trophy in 2017 but faced defeat against their arch-rivals. However, in the longer format of the game, India's performance has been excellent, especially at home. They are the current holders of the ICC Test mace and also created history by winning a Test series in Australia after a wait of 71 years, a feat never achieved before by any Asian team.</p>\r\n<p> </p>\r\n<p>The infrastructure of the Indian cricket team has improved by leaps and bounds in the last decade or so. Plenty of youngsters are getting good exposure and chance to play alongside some greats of the game in the Indian Premier League and as a result, their bench strength can be considered to be one of the best at the moment.</p>",
    "image": "https://static-image.sportsapi360.com/cricket/logo/team/4"
  }
}

Team Info Full

get

Get Team Information

This endpoint retrieves detailed information about a specific cricket team identified by the teamId parameter.

Request Type

  • HTTP Method: GET

API Version

  • Version: v2

Endpoint

  • URL: https://apiv3.sportsapi360.com/cricket/api/v2/team/:teamId

Request Parameters

  • teamId (path parameter):

    • Type: String

    • Description: The unique identifier for the cricket team whose information is being requested.

    • Example: 12345

Expected Responses

  • 200 OK: Returns the detailed information of the requested cricket team.

    • Response Body: Contains team details such as:

      • name: The name of the cricket team.

      • players: A list of players in the team.

      • statistics: Various statistics related to the team.

    • {"name": "Team A","players": [ {"name": "Player 1", "role": "Batsman"}, {"name": "Player 2", "role": "Bowler"}],"statistics": { "matchesPlayed": 100, "wins": 70, "losses": 30}}

  • 404 Not Found: The specified teamId does not correspond to any existing cricket team.

    • Response Body: An error message indicating that the team was not found.

    • {"error": "Team not found"}

  • 401 Unauthorized: Authentication credentials are missing or invalid.

    • Response Body: An error message indicating authentication failure.

    • {"error": "Authentication failed"}

Authentication

Ensure that you include the appropriate authentication headers in your request to access this endpoint.

Headers

  • Include necessary headers as required by your authentication method (e.g., API Key, Bearer Token).

Authorizations
Path parameters
teamIdstringRequired
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
200
OK
application/json
Responseobject
get
GET /cricket/api/v2/team/{teamId} HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "image": "https://static-image.sportsapi360.com/cricket/logo/team/4",
  "teamID": "4",
  "id": "4",
  "lastUpdated": "2025-06-12T10:41+05:30",
  "name": "India",
  "teamDisplayName": "India",
  "shortTeamDisplayName": "IND",
  "shortName": "IND",
  "gender": "Male",
  "isInternational": "true",
  "homeVenueId": "-",
  "homeVenueName": "-",
  "homeVenueShortName": "-",
  "nationalityId": "4",
  "nationality": "India",
  "nationalityShortName": "IND",
  "owner": "-",
  "homeGroundId": "-",
  "homeGround": "-",
  "roleDetails": [
    {
      "id": "6",
      "name": "Coach",
      "personId": "3478",
      "personName": "Gautam Gambhir",
      "personShortName": "Gautam Gambhir",
      "isPrimary": "true"
    }
  ],
  "writeup": "<p>The Indian Cricket Team is governed by the Board of Control for Cricket in India (BCCI), the governing body of cricket in the country. The first recorded match in India was in 1721 when a group of sailors gathered to play in Western India. However, it was only on 25th June 1932 at the famous Lord's cricket ground in England that a national team played an official Test match. Only the sixth team to play Test cricket, India are known to be traditionally strong on its home soil while not really making an impact on away tours. In the first 50 years of their playing history, India won only 35 of the 196 matches played. But it's heartening to note much has changed over the past few years.</p>\r\n<p><br />\r\nWith the emergence of cricketers like Sunil Gavaskar and Kapil Dev, Indian cricket went from strength to strength. The 1983 ICC Cricket World Cup was definitely a high point not just in cricket but in Indian sporting history as well. They possessed jewels like Sachin Tendulkar, Rahul Dravid, Anil Kumble and Sourav Ganguly who brought much glory for the country with their stellar contributions.</p>\r\n<p> </p>\r\n<p>A new breed of cricketers also took centre-stage in the form of Mahendra Singh Dhoni, Yuvraj Singh, Zaheer Khan, Harbhajan Singh, etc. Winning the inaugural ICC World Twenty20 in 2007 was a special moment in India's cricketing annals. But the biggest moment of glory came on 2nd April 2011 when India beat Sri Lanka in the finals of the 2011 ICC Cricket World Cup at the Wankhede Stadium in Mumbai and went on to become world champions. Under Dhoni's captaincy, an Indian team made history after 28 long years and gave its multitude of fans much to cheer about.</p>\r\n<p> </p>\r\n<p>In 2013, Dhoni became the only captain in the history of the game to win all three major ICC trophies after India won the Champions Trophy in England. Although after some poor away form in Test cricket, Dhoni stepped down as captain in red-ball cricket in 2014. However, earlier that year, India finished runners-up in the T20 World Cup held in Bangladesh as they lost to Sri Lanka in the final.</p>\r\n<p> </p>\r\n<p>Except for the 2007 World Cup, India have generally done well in the ICC events. In the 2015 World Cup, they played an aggressive brand of cricket but then lost to the eventual winners Australia in the semis. There was a change in leadership when MS Dhoni stepped down from the shorter formats as well and Virat Kohli was handed over the captaincy. Under his captaincy, India reached the final of the ICC Champions Trophy in 2017 but faced defeat against their arch-rivals. However, in the longer format of the game, India's performance has been excellent, especially at home. They are the current holders of the ICC Test mace and also created history by winning a Test series in Australia after a wait of 71 years, a feat never achieved before by any Asian team.</p>\r\n<p> </p>\r\n<p>The infrastructure of the Indian cricket team has improved by leaps and bounds in the last decade or so. Plenty of youngsters are getting good exposure and chance to play alongside some greats of the game in the Indian Premier League and as a result, their bench strength can be considered to be one of the best at the moment.</p>",
  "socialDetails": [
    {
      "id": "-",
      "name": "-",
      "url": "-"
    }
  ],
  "trophyCabinet": null,
  "stats": [
    {
      "compTypeId": "1",
      "compType": "Test",
      "leagueId": "0",
      "leagueName": "International",
      "parentId": "0",
      "parentSeriesName": "International",
      "ranking": "4",
      "rating": "105",
      "firstMatch": {
        "matchId": "219",
        "date": "25/06/1932",
        "outcome": "England beat India by 158 runs",
        "against": {
          "id": "3",
          "name": "England",
          "shortName": "ENG"
        },
        "venue": {
          "id": "89",
          "name": "Lord's Cricket Ground, London",
          "shortName": "Lord's Cricket Ground, London"
        }
      },
      "captain": {
        "id": "66818",
        "name": "Shubman Singh Gill",
        "shortName": "Shubman Gill"
      },
      "championship": {
        "championshipId": "6",
        "championshipName": "ICC World Test Championship, 2023/25",
        "teamPosition": "3",
        "seriesPlayed": "6",
        "seriesWon": "3",
        "seriesLost": "2",
        "seriesDrawn": "1",
        "matchesPlayed": "19",
        "matchesWon": "9",
        "matchesLost": "8",
        "matchesDrawn": "2",
        "matchesTied": "0",
        "points": "114",
        "form": "L, L, D, L, W"
      },
      "overall": {
        "matchesPlayed": "589",
        "matchesWon": "181",
        "matchesLost": "184",
        "matchesTied": "1",
        "noResult": "223",
        "winPercentage": "30.73",
        "topPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "200",
              "average": "53.78",
              "value": "15921",
              "displayText": "Sachin Tendulkar - (15921 runs for India)"
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "matchesPlayed": "132",
              "economy": "2.69",
              "value": "619",
              "displayText": "Anil Kumble - (619 wickets for India)"
            }
          ]
        },
        "top_3Performers": {
          "record": [
            {
              "type": "batting",
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "200",
              "average": "53.78",
              "value": "15921",
              "displayText": "Sachin Tendulkar - (15921 runs for India)"
            },
            {
              "type": "batting",
              "id": "1004",
              "name": "Rahul Dravid",
              "matchesPlayed": "163",
              "average": "52.63",
              "value": "13265",
              "displayText": "Rahul Dravid - (13265 runs for India)"
            },
            {
              "type": "batting",
              "id": "1199",
              "name": "Sunil Gavaskar",
              "matchesPlayed": "125",
              "average": "51.12",
              "value": "10122",
              "displayText": "Sunil Gavaskar - (10122 runs for India)"
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "matchesPlayed": "128",
              "economy": "2.69",
              "value": "619",
              "displayText": "Anil Kumble - (619 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "4555",
              "name": "Ravichandran Ashwin",
              "matchesPlayed": "106",
              "economy": "2.83",
              "value": "537",
              "displayText": "Ravichandran Ashwin - (537 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "1682",
              "name": "Kapil Dev",
              "matchesPlayed": "131",
              "economy": "2.78",
              "value": "434",
              "displayText": "Kapil Dev - (434 wickets for India)"
            }
          ]
        },
        "higestIndividualPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "270",
              "name": "Virender Sehwag",
              "value": "319",
              "displayText": "319 by Virender Sehwag v South Africa on March 26, 2008 - India drew with South Africa",
              "isNotOut": "False",
              "against": {
                "id": "7",
                "name": "South Africa",
                "shortName": "SA"
              },
              "venue": {
                "id": "91",
                "name": "MA Chidambaram Stadium, Chennai",
                "shortName": "MA Chidambaram Stadium, Chennai"
              },
              "matchId": "1870",
              "matchDate": "26/03/2008",
              "outcome": "India drew with South Africa"
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "value": "10/74",
              "displayText": "10/74 by Anil Kumble v Pakistan on February 4, 1999 - India beat Pakistan by 212 runs",
              "against": {
                "id": "6",
                "name": "Pakistan",
                "shortName": "PAK"
              },
              "venue": {
                "id": "54",
                "name": "Arun Jaitley Stadium, Delhi",
                "shortName": "Arun Jaitley Stadium, Delhi"
              },
              "matchId": "1443",
              "matchDate": "04/02/1999",
              "outcome": "India beat Pakistan by 212 runs"
            }
          ]
        },
        "bestIndividualPerformers": {
          "record": [
            {
              "type": "batting",
              "id": "270",
              "name": "Virender Sehwag",
              "value": "319",
              "displayText": "319 by Virender Sehwag v South Africa on March 26, 2008 - d",
              "isNotOut": "False",
              "against": {
                "id": "7",
                "name": "South Africa",
                "shortName": "SA"
              },
              "venue": {
                "id": "91",
                "name": "MA Chidambaram Stadium, Chennai",
                "shortName": "MA Chidambaram Stadium, Chennai"
              },
              "matchId": "1870",
              "matchDate": "26/03/2008",
              "outcome": "d"
            },
            {
              "type": "batting",
              "id": "270",
              "name": "Virender Sehwag",
              "value": "309",
              "displayText": "309 by Virender Sehwag v Pakistan on March 28, 2004 - i",
              "isNotOut": "False",
              "against": {
                "id": "6",
                "name": "Pakistan",
                "shortName": "PAK"
              },
              "venue": {
                "id": "100",
                "name": "Multan Cricket Stadium, Multan",
                "shortName": "Multan Cricket Stadium, Multan"
              },
              "matchId": "1693",
              "matchDate": "28/03/2004",
              "outcome": "i"
            },
            {
              "type": "batting",
              "id": "62297",
              "name": "Karun Nair",
              "value": "303",
              "displayText": "303* by Karun Nair v England on December 16, 2016 - i",
              "isNotOut": "True",
              "against": {
                "id": "3",
                "name": "England",
                "shortName": "ENG"
              },
              "venue": {
                "id": "91",
                "name": "MA Chidambaram Stadium, Chennai",
                "shortName": "MA Chidambaram Stadium, Chennai"
              },
              "matchId": "181708",
              "matchDate": "16/12/2016",
              "outcome": "i"
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "value": "10/74",
              "displayText": "10/74 by Anil Kumble v Pakistan on February 4, 1999 - r",
              "against": {
                "id": "6",
                "name": "Pakistan",
                "shortName": "PAK"
              },
              "venue": {
                "id": "54",
                "name": "Arun Jaitley Stadium, Delhi",
                "shortName": "Arun Jaitley Stadium, Delhi"
              },
              "matchId": "1443",
              "matchDate": "04/02/1999",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "225",
              "name": "Jasubhai Patel",
              "value": "9/69",
              "displayText": "9/69 by Jasubhai Patel v Australia on December 19, 1959 - r",
              "against": {
                "id": "1",
                "name": "Australia",
                "shortName": "AUS"
              },
              "venue": {
                "id": "61",
                "name": "Green Park, Kanpur",
                "shortName": "Green Park, Kanpur"
              },
              "matchId": "483",
              "matchDate": "19/12/1959",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "1682",
              "name": "Kapil Dev",
              "value": "9/83",
              "displayText": "9/83 by Kapil Dev v West Indies on November 12, 1983 - r",
              "against": {
                "id": "9",
                "name": "West Indies",
                "shortName": "WI"
              },
              "venue": {
                "id": "137",
                "name": "Narendra Modi Stadium, Ahmedabad",
                "shortName": "Narendra Modi Stadium, Ahmedabad"
              },
              "matchId": "967",
              "matchDate": "12/11/1983",
              "outcome": "r"
            }
          ]
        },
        "performanceAgainst": {
          "team": [
            {
              "id": "1188",
              "name": "Afghanistan",
              "shortName": "AFG",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "185950",
                "matchFilename": "inaf06142018185950",
                "date": "14/06/2018",
                "runs": "474",
                "wicket": "10",
                "overs": "104",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by  an innings and 262 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "185950",
                "matchFilename": "inaf06142018185950",
                "date": "14/06/2018",
                "runs": "474",
                "wicket": "10",
                "overs": "104",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by  an innings and 262 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1",
              "name": "Australia",
              "shortName": "AUS",
              "matchesPlayed": "112",
              "matchesWon": "33",
              "matchesLost": "48",
              "matchesTied": "1",
              "noResult": "30",
              "winPercentage": "29.46",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "1680",
                "matchFilename": "auin010220041680",
                "date": "02/01/2004",
                "runs": "705",
                "wicket": "7",
                "overs": "187",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "Australia drew with India"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "195482",
                "matchFilename": "auin12172020195482",
                "date": "17/12/2020",
                "runs": "36",
                "wicket": "10",
                "overs": "21",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "Australia beat India by 8 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "195485",
                "matchFilename": "auin01152021195485",
                "date": "15/01/2021",
                "runs": "328",
                "wicket": "7",
                "overs": "97",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "India beat Australia by 3 wickets"
              }
            },
            {
              "id": "2",
              "name": "Bangladesh",
              "shortName": "BAN",
              "matchesPlayed": "15",
              "matchesWon": "13",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "86.67",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "181779",
                "matchFilename": "inba02092017181779",
                "date": "09/02/2017",
                "runs": "687",
                "wicket": "6",
                "overs": "166",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 208 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "6802",
                "matchFilename": "bain011720106802",
                "date": "17/01/2010",
                "runs": "243",
                "wicket": "10",
                "overs": "70",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 113 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "218325",
                "matchFilename": "bain12222022218325",
                "date": "22/12/2022",
                "runs": "145",
                "wicket": "7",
                "overs": "47",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 3 wickets"
              }
            },
            {
              "id": "3",
              "name": "England",
              "shortName": "ENG",
              "matchesPlayed": "136",
              "matchesWon": "35",
              "matchesLost": "51",
              "matchesTied": "0",
              "noResult": "50",
              "winPercentage": "25.74",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "181708",
                "matchFilename": "inen12162016181708",
                "date": "16/12/2016",
                "runs": "759",
                "wicket": "7",
                "overs": "190",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "India beat England by an innings and 75 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "353",
                "matchFilename": "enin07171952353",
                "date": "17/07/1952",
                "runs": "58",
                "wicket": "10",
                "overs": "21",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "England beat India by an innings and 207 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "1897",
                "matchFilename": "inen121120081897",
                "date": "11/12/2008",
                "runs": "387",
                "wicket": "4",
                "overs": "98.3",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "India beat England by 6 wickets"
              }
            },
            {
              "id": "5",
              "name": "New Zealand",
              "shortName": "NZ",
              "matchesPlayed": "65",
              "matchesWon": "22",
              "matchesLost": "16",
              "matchesTied": "0",
              "noResult": "27",
              "winPercentage": "33.85",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "1466",
                "matchFilename": "innz102919991466",
                "date": "29/10/1999",
                "runs": "583",
                "wicket": "7",
                "overs": "167",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "India drew with New Zealand"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "247148",
                "matchFilename": "innz10162024247148",
                "date": "16/10/2024",
                "runs": "46",
                "wicket": "10",
                "overs": "31",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "New Zealand beat India by 8 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "95750",
                "matchFilename": "innz0831201295750",
                "date": "31/08/2012",
                "runs": "261",
                "wicket": "5",
                "overs": "63.2",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "India beat New Zealand by 5 wickets"
              }
            },
            {
              "id": "6",
              "name": "Pakistan",
              "shortName": "PAK",
              "matchesPlayed": "59",
              "matchesWon": "9",
              "matchesLost": "12",
              "matchesTied": "0",
              "noResult": "38",
              "winPercentage": "15.25",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "1693",
                "matchFilename": "pkin032820041693",
                "date": "28/03/2004",
                "runs": "675",
                "wicket": "5",
                "overs": "161",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by an innings and 52 runs."
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "356",
                "matchFilename": "inpk10231952356",
                "date": "23/10/1952",
                "runs": "106",
                "wicket": "10",
                "overs": "55",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "Pakistan beat India by an innings and 43 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "1849",
                "matchFilename": "inpk112220071849",
                "date": "22/11/2007",
                "runs": "203",
                "wicket": "4",
                "overs": "61.1",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 6 wickets"
              }
            },
            {
              "id": "7",
              "name": "South Africa",
              "shortName": "SA",
              "matchesPlayed": "44",
              "matchesWon": "16",
              "matchesLost": "18",
              "matchesTied": "0",
              "noResult": "10",
              "winPercentage": "36.36",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "6578",
                "matchFilename": "insa021420106578",
                "date": "14/02/2010",
                "runs": "643",
                "wicket": "6",
                "overs": "153",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "India beat South Africa by an innings and 57 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "1347",
                "matchFilename": "sain122619961347",
                "date": "26/12/1996",
                "runs": "66",
                "wicket": "10",
                "overs": "34",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "South Africa beat India by 328 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "1724",
                "matchFilename": "insa112820041724",
                "date": "28/11/2004",
                "runs": "117",
                "wicket": "2",
                "overs": "39.4",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "India beat South Africa by 8 wickets"
              }
            },
            {
              "id": "8",
              "name": "Sri Lanka",
              "shortName": "SL",
              "matchesPlayed": "46",
              "matchesWon": "22",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "17",
              "winPercentage": "47.83",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "6273",
                "matchFilename": "insl120220096273",
                "date": "02/12/2009",
                "runs": "726",
                "wicket": "9",
                "overs": "163",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "India beat Sri Lanka by an innings and 24 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "179109",
                "matchFilename": "slin08122015179109",
                "date": "12/08/2015",
                "runs": "112",
                "wicket": "10",
                "overs": "49",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Sri Lanka beat India by 63 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "1557",
                "matchFilename": "slin082220011557",
                "date": "22/08/2001",
                "runs": "264",
                "wicket": "3",
                "overs": "78.4",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "India beat Sri Lanka by 7 wickets"
              }
            },
            {
              "id": "9",
              "name": "West Indies",
              "shortName": "WI",
              "matchesPlayed": "100",
              "matchesWon": "23",
              "matchesLost": "30",
              "matchesTied": "0",
              "noResult": "47",
              "winPercentage": "23",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "187755",
                "matchFilename": "inwi10042018187755",
                "date": "04/10/2018",
                "runs": "649",
                "wicket": "9",
                "overs": "149",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "India beat West Indies by an innings and 272 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "1081",
                "matchFilename": "inwi112519871081",
                "date": "25/11/1987",
                "runs": "75",
                "wicket": "10",
                "overs": "30",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "West Indies beat India by 5 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "775",
                "matchFilename": "wiin04071976775",
                "date": "07/04/1976",
                "runs": "403",
                "wicket": "4",
                "overs": "147",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "India beat West Indies by 6 wickets"
              }
            },
            {
              "id": "10",
              "name": "Zimbabwe",
              "shortName": "ZIM",
              "matchesPlayed": "11",
              "matchesWon": "7",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "63.64",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "1517",
                "matchFilename": "inzm112520001517",
                "date": "25/11/2000",
                "runs": "609",
                "wicket": "6",
                "overs": "155",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India drew with Zimbabwe"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "1425",
                "matchFilename": "zmin100719981425",
                "date": "07/10/1998",
                "runs": "173",
                "wicket": "10",
                "overs": "56",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "Zimbabwe beat India by 61 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "1515",
                "matchFilename": "inzm111820001515",
                "date": "18/11/2000",
                "runs": "190",
                "wicket": "3",
                "overs": "37.3",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India beat Zimbabwe by 7 wickets"
              }
            }
          ]
        },
        "homeRecords": {
          "matchesPlayed": "292",
          "matchesWon": "118",
          "matchesLost": "58",
          "matchesTied": "1",
          "noResult": "115",
          "winPercentage": "40.41",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "2962",
                "name": "Sachin Tendulkar",
                "value": "7216",
                "displayText": "Sachin Tendulkar - (7216 runs for India)"
              },
              {
                "type": "bowling",
                "id": "4555",
                "name": "Ravichandran Ashwin",
                "value": "371",
                "displayText": "Ravichandran Ashwin - (371 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "270",
                "name": "Virender Sehwag",
                "value": "319",
                "displayText": "319 by Virender Sehwag v South Africa on March 26, 2008 - India drew with South Africa",
                "isNotOut": "False",
                "against": {
                  "id": "7",
                  "name": "South Africa",
                  "shortName": "SA"
                },
                "venue": {
                  "id": "91",
                  "name": "MA Chidambaram Stadium, Chennai",
                  "shortName": "MA Chidambaram Stadium, Chennai"
                },
                "matchId": "1870",
                "matchDate": "26/03/2008",
                "outcome": "India drew with South Africa"
              },
              {
                "type": "bowling",
                "id": "1767",
                "name": "Anil Kumble",
                "value": "10/74",
                "displayText": "10/74 by Anil Kumble v Pakistan on February 4, 1999 - India beat Pakistan by 212 runs",
                "against": {
                  "id": "6",
                  "name": "Pakistan",
                  "shortName": "PAK"
                },
                "venue": {
                  "id": "54",
                  "name": "Arun Jaitley Stadium, Delhi",
                  "shortName": "Arun Jaitley Stadium, Delhi"
                },
                "matchId": "1443",
                "matchDate": "04/02/1999",
                "outcome": "India beat Pakistan by 212 runs"
              }
            ]
          }
        },
        "awayRecords": {
          "matchesPlayed": "292",
          "matchesWon": "60",
          "matchesLost": "124",
          "matchesTied": "0",
          "noResult": "108",
          "winPercentage": "20.55",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "2962",
                "name": "Sachin Tendulkar",
                "value": "8705",
                "displayText": "Sachin Tendulkar - (8705 runs for India)"
              },
              {
                "type": "bowling",
                "id": "1767",
                "name": "Anil Kumble",
                "value": "269",
                "displayText": "Anil Kumble - (269 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "270",
                "name": "Virender Sehwag",
                "value": "309",
                "displayText": "309 by Virender Sehwag v Pakistan on March 28, 2004 - India beat Pakistan by an innings and 52 runs.",
                "isNotOut": "False",
                "against": {
                  "id": "6",
                  "name": "Pakistan",
                  "shortName": "PAK"
                },
                "venue": {
                  "id": "100",
                  "name": "Multan Cricket Stadium, Multan",
                  "shortName": "Multan Cricket Stadium, Multan"
                },
                "matchId": "1693",
                "matchDate": "28/03/2004",
                "outcome": "India beat Pakistan by an innings and 52 runs."
              },
              {
                "type": "bowling",
                "id": "2409",
                "name": "Erapalli Prasanna",
                "value": "8/76",
                "displayText": "8/76 by Erapalli Prasanna v New Zealand on January 24, 1976 - India beat New Zealand by 8 wickets",
                "against": {
                  "id": "5",
                  "name": "New Zealand",
                  "shortName": "NZ"
                },
                "venue": {
                  "id": "49",
                  "name": "Eden Park, Auckland",
                  "shortName": "Eden Park, Auckland"
                },
                "matchId": "769",
                "matchDate": "24/01/1976",
                "outcome": "India beat New Zealand by 8 wickets"
              }
            ]
          }
        },
        "neutralRecords": {
          "matchesPlayed": "5",
          "matchesWon": "3",
          "matchesLost": "2",
          "matchesTied": "0",
          "noResult": "0",
          "winPercentage": "60",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "65756",
                "name": "Rishabh Pant",
                "value": "332",
                "displayText": "Rishabh Pant - (332 runs for India)"
              },
              {
                "type": "bowling",
                "id": "4555",
                "name": "Ravichandran Ashwin",
                "value": "22",
                "displayText": "Ravichandran Ashwin - (22 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3850",
                "name": "Ravindra Jadeja",
                "value": "175",
                "displayText": "175* by Ravindra Jadeja v Sri Lanka on March 4, 2022 - India beat Sri Lanka by an innings and 222 runs",
                "isNotOut": "True",
                "against": {
                  "id": "8",
                  "name": "Sri Lanka",
                  "shortName": "SL"
                },
                "venue": {
                  "id": "125",
                  "name": "I.S. Bindra Punjab Cricket Association Stadium, Mohali",
                  "shortName": "I.S. Bindra Punjab Cricket Association Stadium, Mohali"
                },
                "matchId": "205704",
                "matchDate": "04/03/2022",
                "outcome": "India beat Sri Lanka by an innings and 222 runs"
              },
              {
                "type": "bowling",
                "id": "63755",
                "name": "Jasprit Bumrah",
                "value": "5/24",
                "displayText": "5/24 by Jasprit Bumrah v Sri Lanka on March 12, 2022 - India beat Sri Lanka by 238 runs",
                "against": {
                  "id": "8",
                  "name": "Sri Lanka",
                  "shortName": "SL"
                },
                "venue": {
                  "id": "90",
                  "name": "M.Chinnaswamy Stadium, Bengaluru",
                  "shortName": "M.Chinnaswamy Stadium, Bengaluru"
                },
                "matchId": "205706",
                "matchDate": "12/03/2022",
                "outcome": "India beat Sri Lanka by 238 runs"
              }
            ]
          }
        },
        "venuesBasedPerformance": {
          "venue": [
            {
              "id": "1",
              "name": "Australia - Adelaide Oval, Adelaide",
              "shortName": "Adelaide Oval, Adelaide",
              "matchesPlayed": "14",
              "matchesWon": "2",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "14.29"
            },
            {
              "id": "4",
              "name": "West Indies - Antigua Recreation Ground, St. John's",
              "shortName": "Antigua Recreation Ground, St. John's",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "0"
            },
            {
              "id": "7",
              "name": "Sri Lanka - Asgiriya Stadium, Kandy",
              "shortName": "Asgiriya Stadium, Kandy",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "id": "9",
              "name": "Pakistan - Bagh-e-Jinnah, Lahore",
              "shortName": "Bagh-e-Jinnah, Lahore",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "10",
              "name": "Pakistan - Dring Stadium, Bahawalpur",
              "shortName": "Dring Stadium, Bahawalpur",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "11",
              "name": "Bangladesh - Bangabandhu National Stadium, Dhaka",
              "shortName": "Bangabandhu National Stadium, Dhaka",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "12",
              "name": "India - Barabati Stadium, Cuttack",
              "shortName": "Barabati Stadium, Cuttack",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "14",
              "name": "New Zealand - Cello Basin Reserve, Wellington",
              "shortName": "Cello Basin Reserve, Wellington",
              "matchesPlayed": "8",
              "matchesWon": "1",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "12.5"
            },
            {
              "id": "15",
              "name": "West Indies - Daren Sammy National Cricket Stadium, Gros Islet",
              "shortName": "Daren Sammy National Cricket Stadium, Gros Islet",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "19",
              "name": "Guyana - Bourda, Georgetown, Guyana",
              "shortName": "Bourda, Georgetown, Guyana",
              "matchesPlayed": "6",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "0"
            },
            {
              "id": "20",
              "name": "India - Brabourne Stadium, Mumbai",
              "shortName": "Brabourne Stadium, Mumbai",
              "matchesPlayed": "18",
              "matchesWon": "5",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "11",
              "winPercentage": "27.78"
            },
            {
              "id": "22",
              "name": "Australia - The Gabba, Brisbane",
              "shortName": "The Gabba, Brisbane",
              "matchesPlayed": "8",
              "matchesWon": "1",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "12.5"
            },
            {
              "id": "29",
              "name": "New Zealand - Carisbrook, Dunedin",
              "shortName": "Carisbrook, Dunedin",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "31",
              "name": "Bangladesh - MA Aziz Stadium, Chittagong",
              "shortName": "MA Aziz Stadium, Chittagong",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "48",
              "name": "India - Eden Gardens, Kolkata",
              "shortName": "Eden Gardens, Kolkata",
              "matchesPlayed": "42",
              "matchesWon": "13",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "20",
              "winPercentage": "30.95"
            },
            {
              "id": "49",
              "name": "New Zealand - Eden Park, Auckland",
              "shortName": "Eden Park, Auckland",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "40"
            },
            {
              "id": "50",
              "name": "England - Edgbaston, Birmingham",
              "shortName": "Edgbaston, Birmingham",
              "matchesPlayed": "8",
              "matchesWon": "0",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "53",
              "name": "Bangladesh - Khan Shaheb Osman Ali Stadium, Fatullah",
              "shortName": "Khan Shaheb Osman Ali Stadium, Fatullah",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "54",
              "name": "India - Arun Jaitley Stadium, Delhi",
              "shortName": "Arun Jaitley Stadium, Delhi",
              "matchesPlayed": "35",
              "matchesWon": "14",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "15",
              "winPercentage": "40"
            },
            {
              "id": "55",
              "name": "Pakistan - Gaddafi Stadium, Lahore",
              "shortName": "Gaddafi Stadium, Lahore",
              "matchesPlayed": "7",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "0"
            },
            {
              "id": "56",
              "name": "Sri Lanka - Galle International Stadium, Galle",
              "shortName": "Galle International Stadium, Galle",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "40"
            },
            {
              "id": "58",
              "name": "India - Gandhi Stadium, Jalandhar",
              "shortName": "Gandhi Stadium, Jalandhar",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "59",
              "name": "South Africa - Mangaung Oval, Bloemfontein",
              "shortName": "Mangaung Oval, Bloemfontein",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "61",
              "name": "India - Green Park, Kanpur",
              "shortName": "Green Park, Kanpur",
              "matchesPlayed": "24",
              "matchesWon": "8",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "13",
              "winPercentage": "33.33"
            },
            {
              "id": "62",
              "name": "India - Gymkhana Ground, Mumbai",
              "shortName": "Gymkhana Ground, Mumbai",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "63",
              "name": "Zimbabwe - Harare Sports Club, Harare",
              "shortName": "Harare Sports Club, Harare",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "25"
            },
            {
              "id": "65",
              "name": "England - Headingley, Leeds",
              "shortName": "Headingley, Leeds",
              "matchesPlayed": "7",
              "matchesWon": "2",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "28.57"
            },
            {
              "id": "69",
              "name": "Pakistan - Iqbal Stadium, Faisalabad",
              "shortName": "Iqbal Stadium, Faisalabad",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "0"
            },
            {
              "id": "70",
              "name": "New Zealand - AMI Stadium, Christchurch",
              "shortName": "AMI Stadium, Christchurch",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "75",
              "name": "Pakistan - Jinnah Stadium, Sialkot",
              "shortName": "Jinnah Stadium, Sialkot",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "78",
              "name": "India - K.D.Singh Babu Stadium, Lucknow",
              "shortName": "K.D.Singh Babu Stadium, Lucknow",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "81",
              "name": "England - Kennington Oval, London",
              "shortName": "Kennington Oval, London",
              "matchesPlayed": "15",
              "matchesWon": "2",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "13.33"
            },
            {
              "id": "82",
              "name": "West Indies - Kensington Oval, Bridgetown",
              "shortName": "Kensington Oval, Bridgetown",
              "matchesPlayed": "9",
              "matchesWon": "0",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "84",
              "name": "South Africa - Kingsmead, Durban",
              "shortName": "Kingsmead, Durban",
              "matchesPlayed": "5",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "20"
            },
            {
              "id": "86",
              "name": "India - Lal Bahadur Shastri Stadium, Hyderabad",
              "shortName": "Lal Bahadur Shastri Stadium, Hyderabad",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "id": "89",
              "name": "England - Lord's Cricket Ground, London",
              "shortName": "Lord's Cricket Ground, London",
              "matchesPlayed": "19",
              "matchesWon": "3",
              "matchesLost": "12",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "15.79"
            },
            {
              "id": "90",
              "name": "India - M.Chinnaswamy Stadium, Bengaluru",
              "shortName": "M.Chinnaswamy Stadium, Bengaluru",
              "matchesPlayed": "25",
              "matchesWon": "9",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "9",
              "winPercentage": "36"
            },
            {
              "id": "91",
              "name": "India - MA Chidambaram Stadium, Chennai",
              "shortName": "MA Chidambaram Stadium, Chennai",
              "matchesPlayed": "35",
              "matchesWon": "16",
              "matchesLost": "7",
              "matchesTied": "1",
              "noResult": "11",
              "winPercentage": "45.71"
            },
            {
              "id": "92",
              "name": "India - Holkar Cricket Stadium, Indore",
              "shortName": "Holkar Cricket Stadium, Indore",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "95",
              "name": "New Zealand - McLean Park, Napier",
              "shortName": "McLean Park, Napier",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "96",
              "name": "Australia - Melbourne Cricket Ground (MCG), Melbourne",
              "shortName": "Melbourne Cricket Ground (MCG), Melbourne",
              "matchesPlayed": "15",
              "matchesWon": "4",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "26.67"
            },
            {
              "id": "100",
              "name": "Pakistan - Multan Cricket Stadium, Multan",
              "shortName": "Multan Cricket Stadium, Multan",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "105",
              "name": "Pakistan - National Stadium, Karachi",
              "shortName": "National Stadium, Karachi",
              "matchesPlayed": "6",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "id": "106",
              "name": "India - Nehru Stadium, Chennai",
              "shortName": "Nehru Stadium, Chennai",
              "matchesPlayed": "9",
              "matchesWon": "2",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "22.22"
            },
            {
              "id": "111",
              "name": "South Africa - The Wanderers Stadium, Johannesburg",
              "shortName": "The Wanderers Stadium, Johannesburg",
              "matchesPlayed": "6",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "33.33"
            },
            {
              "id": "112",
              "name": "South Africa - Newlands, Cape Town",
              "shortName": "Newlands, Cape Town",
              "matchesPlayed": "7",
              "matchesWon": "1",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "14.29"
            },
            {
              "id": "113",
              "name": "Pakistan - Niaz Stadium, Hyderabad, Sind",
              "shortName": "Niaz Stadium, Hyderabad, Sind",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "117",
              "name": "England - Emirates Old Trafford, Manchester",
              "shortName": "Emirates Old Trafford, Manchester",
              "matchesPlayed": "9",
              "matchesWon": "0",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "0"
            },
            {
              "id": "120",
              "name": "Sri Lanka - P Sara Oval, Colombo",
              "shortName": "P Sara Oval, Colombo",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "40"
            },
            {
              "id": "125",
              "name": "India - I.S. Bindra Punjab Cricket Association Stadium, Mohali",
              "shortName": "I.S. Bindra Punjab Cricket Association Stadium, Mohali",
              "matchesPlayed": "14",
              "matchesWon": "8",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "57.14"
            },
            {
              "id": "127",
              "name": "West Indies - Queen's Park Oval, Port of Spain",
              "shortName": "Queen's Park Oval, Port of Spain",
              "matchesPlayed": "14",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "21.43"
            },
            {
              "id": "129",
              "name": "Zimbabwe - Queens Sports Club, Bulawayo",
              "shortName": "Queens Sports Club, Bulawayo",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "131",
              "name": "Sri Lanka - R.Premadasa Stadium, Colombo",
              "shortName": "R.Premadasa Stadium, Colombo",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "134",
              "name": "Pakistan - Rawalpindi Cricket Stadium, Rawalpindi",
              "shortName": "Rawalpindi Cricket Stadium, Rawalpindi",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "136",
              "name": "West Indies - Sabina Park, Kingston",
              "shortName": "Sabina Park, Kingston",
              "matchesPlayed": "13",
              "matchesWon": "3",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "23.08"
            },
            {
              "id": "137",
              "name": "India - Narendra Modi Stadium, Ahmedabad",
              "shortName": "Narendra Modi Stadium, Ahmedabad",
              "matchesPlayed": "15",
              "matchesWon": "6",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "40"
            },
            {
              "id": "139",
              "name": "India - Sawai Mansingh Stadium, Jaipur",
              "shortName": "Sawai Mansingh Stadium, Jaipur",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "140",
              "name": "India - Sector 16 Stadium, Chandigarh",
              "shortName": "Sector 16 Stadium, Chandigarh",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "141",
              "name": "Pakistan - Peshawar Club Ground, Peshawar",
              "shortName": "Peshawar Club Ground, Peshawar",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "145",
              "name": "Bangladesh - Shere Bangla National Stadium, Mirpur",
              "shortName": "Shere Bangla National Stadium, Mirpur",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "147",
              "name": "Sri Lanka - Sinhalese Sports Club, Colombo",
              "shortName": "Sinhalese Sports Club, Colombo",
              "matchesPlayed": "9",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "33.33"
            },
            {
              "id": "148",
              "name": "West Indies - Sir Vivian Richards Stadium North Sound, Saint Peters",
              "shortName": "Sir Vivian Richards Stadium North Sound, Saint Peters",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "150",
              "name": "South Africa - St George's Park, Gqeberha",
              "shortName": "St George's Park, Gqeberha",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "153",
              "name": "South Africa - SuperSport Park, Centurion",
              "shortName": "SuperSport Park, Centurion",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "25"
            },
            {
              "id": "154",
              "name": "Australia - Sydney Cricket Ground (SCG), Sydney",
              "shortName": "Sydney Cricket Ground (SCG), Sydney",
              "matchesPlayed": "14",
              "matchesWon": "1",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "7.14"
            },
            {
              "id": "158",
              "name": "India - Rajiv Gandhi International Stadium, Hyderabad",
              "shortName": "Rajiv Gandhi International Stadium, Hyderabad",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "159",
              "name": "England - Utilita Bowl, Southampton",
              "shortName": "Utilita Bowl, Southampton",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "161",
              "name": "England - Trent Bridge, Nottingham",
              "shortName": "Trent Bridge, Nottingham",
              "matchesPlayed": "8",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "25"
            },
            {
              "id": "163",
              "name": "India - University Ground, Lucknow",
              "shortName": "University Ground, Lucknow",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "165",
              "name": "India - Vidarbha Cricket Association Stadium, Nagpur",
              "shortName": "Vidarbha Cricket Association Stadium, Nagpur",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "167",
              "name": "Australia - W.A.C.A. Ground, Perth",
              "shortName": "W.A.C.A. Ground, Perth",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "25"
            },
            {
              "id": "168",
              "name": "India - Wankhede Stadium, Mumbai",
              "shortName": "Wankhede Stadium, Mumbai",
              "matchesPlayed": "27",
              "matchesWon": "12",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "44.44"
            },
            {
              "id": "169",
              "name": "West Indies - Warner Park, Basseterre",
              "shortName": "Warner Park, Basseterre",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "170",
              "name": "New Zealand - Seddon Park, Hamilton",
              "shortName": "Seddon Park, Hamilton",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "25"
            },
            {
              "id": "181",
              "name": "Bangladesh - Zahur Ahmed Chowdhury Stadium, Chattogram",
              "shortName": "Zahur Ahmed Chowdhury Stadium, Chattogram",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "185",
              "name": "India - Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium, Visakhapatnam",
              "shortName": "Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium, Visakhapatnam",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "244",
              "name": "India - Vidarbha Cricket Association Ground, Nagpur",
              "shortName": "Vidarbha Cricket Association Ground, Nagpur",
              "matchesPlayed": "15",
              "matchesWon": "6",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "40"
            },
            {
              "id": "246",
              "name": "India - Niranjan Shah Stadium, Rajkot",
              "shortName": "Niranjan Shah Stadium, Rajkot",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "248",
              "name": "India - Himachal Pradesh Cricket Association Stadium, Dharamsala",
              "shortName": "Himachal Pradesh Cricket Association Stadium, Dharamsala",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "325",
              "name": "New Zealand - Hagley Oval, Christchurch",
              "shortName": "Hagley Oval, Christchurch",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "458",
              "name": "West Indies - Windsor Park, Roseau",
              "shortName": "Windsor Park, Roseau",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "543",
              "name": "Sri Lanka - Pallekele International Cricket Stadium, Kandy",
              "shortName": "Pallekele International Cricket Stadium, Kandy",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "581",
              "name": "India - JSCA International Stadium Complex, Ranchi",
              "shortName": "JSCA International Stadium Complex, Ranchi",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "1763",
              "name": "India - Maharashtra Cricket Association Stadium, Pune",
              "shortName": "Maharashtra Cricket Association Stadium, Pune",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "1926",
              "name": "Australia - Perth Stadium, Perth",
              "shortName": "Perth Stadium, Perth",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            }
          ]
        },
        "listOfCaptains": {
          "captain": [
            {
              "id": "3993",
              "name": "Virat Kohli",
              "shortName": "Kohli",
              "matchesPlayed": "68",
              "matchesWon": "40",
              "matchesLost": "17",
              "matchesTied": "0",
              "noResult": "11",
              "winPercentage": "58.82"
            },
            {
              "id": "3676",
              "name": "MS Dhoni",
              "shortName": "Dhoni",
              "matchesPlayed": "60",
              "matchesWon": "27",
              "matchesLost": "18",
              "matchesTied": "0",
              "noResult": "15",
              "winPercentage": "45"
            },
            {
              "id": "1186",
              "name": "Sourav Ganguly",
              "shortName": "Ganguly",
              "matchesPlayed": "49",
              "matchesWon": "21",
              "matchesLost": "13",
              "matchesTied": "0",
              "noResult": "15",
              "winPercentage": "42.86"
            },
            {
              "id": "1199",
              "name": "Sunil Gavaskar",
              "shortName": "Gavaskar",
              "matchesPlayed": "47",
              "matchesWon": "9",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "30",
              "winPercentage": "19.15"
            },
            {
              "id": "487",
              "name": "Mohammad Azharuddin",
              "shortName": "Azharuddin",
              "matchesPlayed": "47",
              "matchesWon": "14",
              "matchesLost": "14",
              "matchesTied": "0",
              "noResult": "19",
              "winPercentage": "29.79"
            },
            {
              "id": "2206",
              "name": "Nawab of Pataudi",
              "shortName": "of Pataudi",
              "matchesPlayed": "40",
              "matchesWon": "9",
              "matchesLost": "19",
              "matchesTied": "0",
              "noResult": "12",
              "winPercentage": "22.5"
            },
            {
              "id": "1682",
              "name": "Kapil Dev",
              "shortName": "Dev",
              "matchesPlayed": "34",
              "matchesWon": "4",
              "matchesLost": "7",
              "matchesTied": "1",
              "noResult": "22",
              "winPercentage": "11.76"
            },
            {
              "id": "2962",
              "name": "Sachin Tendulkar",
              "shortName": "Tendulkar",
              "matchesPlayed": "25",
              "matchesWon": "4",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "12",
              "winPercentage": "16"
            },
            {
              "id": "1004",
              "name": "Rahul Dravid",
              "shortName": "Dravid",
              "matchesPlayed": "25",
              "matchesWon": "8",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "11",
              "winPercentage": "32"
            },
            {
              "id": "3852",
              "name": "Rohit Sharma",
              "shortName": "Sharma",
              "matchesPlayed": "24",
              "matchesWon": "12",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "50"
            },
            {
              "id": "559",
              "name": "Bishan Bedi",
              "shortName": "Bedi",
              "matchesPlayed": "22",
              "matchesWon": "6",
              "matchesLost": "11",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "27.27"
            },
            {
              "id": "3105",
              "name": "Ajit Wadekar",
              "shortName": "Wadekar",
              "matchesPlayed": "16",
              "matchesWon": "4",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "25"
            },
            {
              "id": "13",
              "name": "Lala Amarnath",
              "shortName": "Amarnath",
              "matchesPlayed": "15",
              "matchesWon": "2",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "13.33"
            },
            {
              "id": "1425",
              "name": "Vijay Hazare",
              "shortName": "Hazare",
              "matchesPlayed": "14",
              "matchesWon": "1",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "7.14"
            },
            {
              "id": "1767",
              "name": "Anil Kumble",
              "shortName": "Kumble",
              "matchesPlayed": "14",
              "matchesWon": "3",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "21.43"
            },
            {
              "id": "839",
              "name": "Nari Contractor",
              "shortName": "Contractor",
              "matchesPlayed": "12",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "16.67"
            },
            {
              "id": "3074",
              "name": "Dilip Vengsarkar",
              "shortName": "Vengsarkar",
              "matchesPlayed": "10",
              "matchesWon": "2",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "20"
            },
            {
              "id": "3049",
              "name": "Polly Umrigar",
              "shortName": "Umrigar",
              "matchesPlayed": "8",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "25"
            },
            {
              "id": "1911",
              "name": "Vinoo Mankad",
              "shortName": "Mankad",
              "matchesPlayed": "6",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "0"
            },
            {
              "id": "3991",
              "name": "Ajinkya Rahane",
              "shortName": "Rahane",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "66.67"
            },
            {
              "id": "3076",
              "name": "Srinivas Venkataraghavan",
              "shortName": "Venkataraghavan",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "id": "2463",
              "name": "Gulabrai Ramchand",
              "shortName": "Ramchand",
              "matchesPlayed": "5",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "20"
            },
            {
              "id": "2847",
              "name": "Kris Srikkanth",
              "shortName": "Srikkanth",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "0"
            },
            {
              "id": "202",
              "name": "C.K. Nayudu",
              "shortName": "Nayudu",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "87",
              "name": "Datta Gaekwad",
              "shortName": "Gaekwad",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "270",
              "name": "Virender Sehwag",
              "shortName": "Sehwag",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "2205",
              "name": "Nawab of Pataudi Sr.",
              "shortName": "of Pataudi Sr.",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "1213",
              "name": "Ghulam Ahmed",
              "shortName": "Ahmed",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "3097",
              "name": " Vizianagra",
              "shortName": "Vizianagra",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "63755",
              "name": "Jasprit Bumrah",
              "shortName": "Bumrah",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "60122",
              "name": "KL Rahul",
              "shortName": "Rahul",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "3093",
              "name": "Gundappa Viswanath",
              "shortName": "Viswanath",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "349",
              "name": "Hemu Adhikari",
              "shortName": "Adhikari",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "257",
              "name": "Pankaj Roy",
              "shortName": "Roy",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "622",
              "name": "Chandu Borde",
              "shortName": "Borde",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "2716",
              "name": "Ravi Shastri",
              "shortName": "Shastri",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "splitByYear": {
          "year": [
            {
              "value": "1932",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1933",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1934",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1936",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1946",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "value": "1947",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1948",
              "matchesPlayed": "6",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "value": "1949",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1951",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "value": "1952",
              "matchesPlayed": "11",
              "matchesWon": "3",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "27.27"
            },
            {
              "value": "1953",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "0"
            },
            {
              "value": "1955",
              "matchesPlayed": "9",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "11.11"
            },
            {
              "value": "1956",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "25"
            },
            {
              "value": "1956",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "25"
            },
            {
              "value": "1958",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1959",
              "matchesPlayed": "9",
              "matchesWon": "1",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "11.11"
            },
            {
              "value": "1960",
              "matchesPlayed": "6",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "0"
            },
            {
              "value": "1961",
              "matchesPlayed": "6",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "16.67"
            },
            {
              "value": "1962",
              "matchesPlayed": "6",
              "matchesWon": "1",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "16.67"
            },
            {
              "value": "1964",
              "matchesPlayed": "8",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "12.5"
            },
            {
              "value": "1965",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "25"
            },
            {
              "value": "1966",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1967",
              "matchesPlayed": "6",
              "matchesWon": "0",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1968",
              "matchesPlayed": "6",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "1969",
              "matchesPlayed": "8",
              "matchesWon": "2",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "25"
            },
            {
              "value": "1971",
              "matchesPlayed": "8",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "25"
            },
            {
              "value": "1972",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "1973",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "value": "1974",
              "matchesPlayed": "6",
              "matchesWon": "1",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "16.67"
            },
            {
              "value": "1975",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "1976",
              "matchesPlayed": "11",
              "matchesWon": "4",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "36.36"
            },
            {
              "value": "1977",
              "matchesPlayed": "7",
              "matchesWon": "2",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "28.57"
            },
            {
              "value": "1978",
              "matchesPlayed": "8",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "12.5"
            },
            {
              "value": "1979",
              "matchesPlayed": "17",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "12",
              "winPercentage": "23.53"
            },
            {
              "value": "1980",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "33.33"
            },
            {
              "value": "1981",
              "matchesPlayed": "9",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "22.22"
            },
            {
              "value": "1982",
              "matchesPlayed": "9",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "0"
            },
            {
              "value": "1983",
              "matchesPlayed": "18",
              "matchesWon": "0",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "11",
              "winPercentage": "0"
            },
            {
              "value": "1984",
              "matchesPlayed": "5",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "20"
            },
            {
              "value": "1985",
              "matchesPlayed": "7",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "0"
            },
            {
              "value": "1986",
              "matchesPlayed": "9",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "1",
              "noResult": "5",
              "winPercentage": "33.33"
            },
            {
              "value": "1987",
              "matchesPlayed": "9",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "11.11"
            },
            {
              "value": "1988",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "value": "1989",
              "matchesPlayed": "8",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "0"
            },
            {
              "value": "1990",
              "matchesPlayed": "7",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "14.29"
            },
            {
              "value": "1991",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1992",
              "matchesPlayed": "7",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "0"
            },
            {
              "value": "1993",
              "matchesPlayed": "8",
              "matchesWon": "5",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "62.5"
            },
            {
              "value": "1994",
              "matchesPlayed": "7",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "57.14"
            },
            {
              "value": "1995",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "value": "1996",
              "matchesPlayed": "8",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "37.5"
            },
            {
              "value": "1997",
              "matchesPlayed": "12",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "10",
              "winPercentage": "0"
            },
            {
              "value": "1998",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "40"
            },
            {
              "value": "1999",
              "matchesPlayed": "10",
              "matchesWon": "2",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "20"
            },
            {
              "value": "2000",
              "matchesPlayed": "6",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "33.33"
            },
            {
              "value": "2001",
              "matchesPlayed": "13",
              "matchesWon": "5",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "38.46"
            },
            {
              "value": "2002",
              "matchesPlayed": "16",
              "matchesWon": "6",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "37.5"
            },
            {
              "value": "2003",
              "matchesPlayed": "5",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "20"
            },
            {
              "value": "2004",
              "matchesPlayed": "12",
              "matchesWon": "6",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "50"
            },
            {
              "value": "2005",
              "matchesPlayed": "8",
              "matchesWon": "5",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "62.5"
            },
            {
              "value": "2006",
              "matchesPlayed": "12",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "25"
            },
            {
              "value": "2007",
              "matchesPlayed": "10",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "30"
            },
            {
              "value": "2008",
              "matchesPlayed": "15",
              "matchesWon": "6",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "40"
            },
            {
              "value": "2009",
              "matchesPlayed": "6",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "50"
            },
            {
              "value": "2010",
              "matchesPlayed": "14",
              "matchesWon": "8",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "57.14"
            },
            {
              "value": "2011",
              "matchesPlayed": "12",
              "matchesWon": "3",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "25"
            },
            {
              "value": "2012",
              "matchesPlayed": "9",
              "matchesWon": "3",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "33.33"
            },
            {
              "value": "2013",
              "matchesPlayed": "8",
              "matchesWon": "6",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "75"
            },
            {
              "value": "2014",
              "matchesPlayed": "10",
              "matchesWon": "1",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "10"
            },
            {
              "value": "2015",
              "matchesPlayed": "9",
              "matchesWon": "5",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "55.56"
            },
            {
              "value": "2016",
              "matchesPlayed": "12",
              "matchesWon": "9",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "75"
            },
            {
              "value": "2017",
              "matchesPlayed": "11",
              "matchesWon": "7",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "63.64"
            },
            {
              "value": "2018",
              "matchesPlayed": "14",
              "matchesWon": "7",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "2019",
              "matchesPlayed": "8",
              "matchesWon": "7",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "87.5"
            },
            {
              "value": "2020",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "25"
            },
            {
              "value": "2021",
              "matchesPlayed": "14",
              "matchesWon": "8",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "57.14"
            },
            {
              "value": "2022",
              "matchesPlayed": "7",
              "matchesWon": "4",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "57.14"
            },
            {
              "value": "2023",
              "matchesPlayed": "8",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "37.5"
            },
            {
              "value": "2024",
              "matchesPlayed": "15",
              "matchesWon": "8",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "53.33"
            },
            {
              "value": "2025",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            }
          ]
        },
        "lastTwelveMonths": {
          "matchesPlayed": "10",
          "matchesWon": "3",
          "matchesLost": "6",
          "matchesTied": "0",
          "noResult": "1",
          "winPercentage": "30",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "69238",
                "name": "Yashasvi Jaiswal",
                "value": "770",
                "displayText": "Yashasvi Jaiswal - (770 runs for India)"
              },
              {
                "type": "bowling",
                "id": "63755",
                "name": "Jasprit Bumrah",
                "value": "46",
                "displayText": "Jasprit Bumrah - (46 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "69238",
                "name": "Yashasvi Jaiswal",
                "value": "161",
                "displayText": "161 by Yashasvi Jaiswal v Australia on November 22, 2024 - India beat Australia by 295 runs",
                "isNotOut": "False",
                "against": {
                  "id": "1",
                  "name": "Australia",
                  "shortName": "AUS"
                },
                "venue": {
                  "id": "1926",
                  "name": "Perth Stadium, Perth",
                  "shortName": "Perth Stadium, Perth"
                },
                "matchId": "243091",
                "matchDate": "November 22, 2024",
                "outcome": "India beat Australia by 295 runs"
              },
              {
                "type": "bowling",
                "id": "65859",
                "name": "Washington Sundar",
                "value": "7/59",
                "displayText": "7/59 by Washington Sundar v New Zealand on October 24, 2024 - New Zealand beat India by 113 runs",
                "against": {
                  "id": "5",
                  "name": "New Zealand",
                  "shortName": "NZ"
                },
                "venue": {
                  "id": "1763",
                  "name": "Maharashtra Cricket Association Stadium, Pune",
                  "shortName": "Maharashtra Cricket Association Stadium, Pune"
                },
                "matchId": "247149",
                "matchDate": "10/24/2024",
                "outcome": "New Zealand beat India by 113 runs"
              }
            ]
          },
          "performanceAgainst": {
            "team": [
              {
                "id": "1188",
                "name": "Afghanistan",
                "shortName": "AFG",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "1",
                "name": "Australia",
                "shortName": "AUS",
                "matchesPlayed": "112",
                "matchesWon": "33",
                "matchesLost": "48",
                "matchesTied": "1",
                "noResult": "30",
                "winPercentage": "29.46"
              },
              {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN",
                "matchesPlayed": "15",
                "matchesWon": "13",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "2",
                "winPercentage": "86.67"
              },
              {
                "id": "3",
                "name": "England",
                "shortName": "ENG",
                "matchesPlayed": "136",
                "matchesWon": "35",
                "matchesLost": "51",
                "matchesTied": "0",
                "noResult": "50",
                "winPercentage": "25.74"
              },
              {
                "id": "5",
                "name": "New Zealand",
                "shortName": "NZ",
                "matchesPlayed": "65",
                "matchesWon": "22",
                "matchesLost": "16",
                "matchesTied": "0",
                "noResult": "27",
                "winPercentage": "33.85"
              },
              {
                "id": "6",
                "name": "Pakistan",
                "shortName": "PAK",
                "matchesPlayed": "59",
                "matchesWon": "9",
                "matchesLost": "12",
                "matchesTied": "0",
                "noResult": "38",
                "winPercentage": "15.25"
              },
              {
                "id": "7",
                "name": "South Africa",
                "shortName": "SA",
                "matchesPlayed": "44",
                "matchesWon": "16",
                "matchesLost": "18",
                "matchesTied": "0",
                "noResult": "10",
                "winPercentage": "36.36"
              },
              {
                "id": "8",
                "name": "Sri Lanka",
                "shortName": "SL",
                "matchesPlayed": "46",
                "matchesWon": "22",
                "matchesLost": "7",
                "matchesTied": "0",
                "noResult": "17",
                "winPercentage": "47.83"
              },
              {
                "id": "9",
                "name": "West Indies",
                "shortName": "WI",
                "matchesPlayed": "100",
                "matchesWon": "23",
                "matchesLost": "30",
                "matchesTied": "0",
                "noResult": "47",
                "winPercentage": "23"
              },
              {
                "id": "10",
                "name": "Zimbabwe",
                "shortName": "ZIM",
                "matchesPlayed": "11",
                "matchesWon": "7",
                "matchesLost": "2",
                "matchesTied": "0",
                "noResult": "2",
                "winPercentage": "63.64"
              }
            ]
          }
        },
        "manOfTheMatches": {
          "manOfTheMatch": [
            {
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "200",
              "manOfTheMatch": "26"
            },
            {
              "id": "4555",
              "name": "Ravichandran Ashwin",
              "matchesPlayed": "106",
              "manOfTheMatch": "18"
            },
            {
              "id": "1767",
              "name": "Anil Kumble",
              "matchesPlayed": "132",
              "manOfTheMatch": "18"
            }
          ]
        },
        "manOfTheSeries": {
          "manOfTheSeries": [
            {
              "id": "4555",
              "name": "Ravichandran Ashwin",
              "seriesPlayed": "41",
              "manOfTheSeries": "11"
            },
            {
              "id": "2962",
              "name": "Sachin Tendulkar",
              "seriesPlayed": "74",
              "manOfTheSeries": "5"
            },
            {
              "id": "270",
              "name": "Virender Sehwag",
              "seriesPlayed": "38",
              "manOfTheSeries": "5"
            }
          ]
        },
        "leaders": {
          "mostMatchesPlayed": {
            "stat": "Most Matches Played",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null
          },
          "mostRunsLeader": {
            "stat": "Most Runs",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "highestScore": {
            "stat": "Highest Score",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "mostHundreds": {
            "stat": "Most Hundreds",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "hundreds": null
          },
          "mostFifties": {
            "stat": "Most Fifties",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fifties": null
          },
          "mostFours": {
            "stat": "Most Fours",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fours": null
          },
          "mostSixes": {
            "stat": "Most Sixes",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "sixes": null
          },
          "bestBattingAverage": {
            "stat": "Best Batting Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          },
          "bestStrikeRate": {
            "stat": "Best Strike Rate",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "strikeRate": null
          },
          "mostWickets": {
            "stat": "Most Wickets",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "wickets": null
          },
          "bestBowlingFigure": {
            "stat": "Best Bowling Figure",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "bowlingFigure": null
          },
          "bestEconomy": {
            "stat": "Best Economy",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "economy": null
          },
          "bestBowlingAverage": {
            "stat": "Best Bowling Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          }
        }
      }
    },
    {
      "compTypeId": "2",
      "compType": "ODI",
      "leagueId": "0",
      "leagueName": "International",
      "parentId": "0",
      "parentSeriesName": "International",
      "ranking": "1",
      "rating": "124",
      "firstMatch": {
        "matchId": "1940",
        "date": "13/07/1974",
        "outcome": "England beat India by 4 wickets",
        "against": {
          "id": "3",
          "name": "England",
          "shortName": "ENG"
        },
        "venue": {
          "id": "65",
          "name": "Headingley, Leeds",
          "shortName": "Headingley, Leeds"
        }
      },
      "captain": {
        "id": "3852",
        "name": "Rohit Gurunath Sharma",
        "shortName": "Rohit Sharma"
      },
      "championship": {
        "seriesId": "-",
        "seriesName": "-",
        "played": "-",
        "won": "-",
        "lost": "-",
        "draw": "-",
        "pts": "-",
        "form": "-"
      },
      "trophyDetails": null,
      "overall": {
        "matchesPlayed": "1066",
        "matchesWon": "567",
        "matchesLost": "445",
        "matchesTied": "10",
        "noResult": "44",
        "winPercentage": "53.19",
        "topPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "463",
              "average": "44.83",
              "value": "18426",
              "displayText": "Sachin Tendulkar - (18426 runs for India)"
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "matchesPlayed": "269",
              "economy": "4.29",
              "value": "334",
              "displayText": "Anil Kumble - (334 wickets for India)"
            }
          ]
        },
        "top_3Performers": {
          "record": [
            {
              "type": "batting",
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "463",
              "average": "44.83",
              "value": "18426",
              "displayText": "Sachin Tendulkar - (18426 runs for India)"
            },
            {
              "type": "batting",
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "302",
              "average": "57.88",
              "value": "14181",
              "displayText": "Virat Kohli - (14181 runs for India)"
            },
            {
              "type": "batting",
              "id": "1186",
              "name": "Sourav Ganguly",
              "matchesPlayed": "308",
              "average": "40.95",
              "value": "11221",
              "displayText": "Sourav Ganguly - (11221 runs for India)"
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "matchesPlayed": "263",
              "economy": "4.29",
              "value": "334",
              "displayText": "Anil Kumble - (334 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "2848",
              "name": "Javagal Srinath",
              "matchesPlayed": "227",
              "economy": "4.44",
              "value": "315",
              "displayText": "Javagal Srinath - (315 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "355",
              "name": "Ajit Agarkar",
              "matchesPlayed": "188",
              "economy": "5.07",
              "value": "288",
              "displayText": "Ajit Agarkar - (288 wickets for India)"
            }
          ]
        },
        "higestIndividualPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "3852",
              "name": "Rohit Sharma",
              "value": "264",
              "displayText": "264 by Rohit Sharma v Sri Lanka on November 13, 2014 - India beat Sri Lanka by 153 runs",
              "isNotOut": "False",
              "against": {
                "id": "8",
                "name": "Sri Lanka",
                "shortName": "SL"
              },
              "venue": {
                "id": "48",
                "name": "Eden Gardens, Kolkata",
                "shortName": "Eden Gardens, Kolkata"
              },
              "matchId": "177521",
              "matchDate": "13/11/2014",
              "outcome": "India beat Sri Lanka by 153 runs"
            },
            {
              "type": "bowling",
              "id": "28994",
              "name": "Mohammad Shami",
              "value": "7/57",
              "displayText": "7/57 by Mohammad Shami v New Zealand on November 15, 2023 - India beat New Zealand by 70 runs",
              "against": {
                "id": "5",
                "name": "New Zealand",
                "shortName": "NZ"
              },
              "venue": {
                "id": "168",
                "name": "Wankhede Stadium, Mumbai",
                "shortName": "Wankhede Stadium, Mumbai"
              },
              "matchId": "228844",
              "matchDate": "15/11/2023",
              "outcome": "India beat New Zealand by 70 runs"
            }
          ]
        },
        "bestIndividualPerformers": {
          "record": [
            {
              "type": "batting",
              "id": "3852",
              "name": "Rohit Sharma",
              "value": "264",
              "displayText": "264 by Rohit Sharma v Sri Lanka on November 13, 2014 - r",
              "isNotOut": "False",
              "against": {
                "id": "8",
                "name": "Sri Lanka",
                "shortName": "SL"
              },
              "venue": {
                "id": "48",
                "name": "Eden Gardens, Kolkata",
                "shortName": "Eden Gardens, Kolkata"
              },
              "matchId": "177521",
              "matchDate": "13/11/2014",
              "outcome": "r"
            },
            {
              "type": "batting",
              "id": "270",
              "name": "Virender Sehwag",
              "value": "219",
              "displayText": "219 by Virender Sehwag v West Indies on December 8, 2011 - r",
              "isNotOut": "False",
              "against": {
                "id": "9",
                "name": "West Indies",
                "shortName": "WI"
              },
              "venue": {
                "id": "92",
                "name": "Holkar Cricket Stadium, Indore",
                "shortName": "Holkar Cricket Stadium, Indore"
              },
              "matchId": "92241",
              "matchDate": "08/12/2011",
              "outcome": "r"
            },
            {
              "type": "batting",
              "id": "64712",
              "name": "Ishan Kishan",
              "value": "210",
              "displayText": "210 by Ishan Kishan v Bangladesh on December 10, 2022 - r",
              "isNotOut": "False",
              "against": {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN"
              },
              "venue": {
                "id": "181",
                "name": "Zahur Ahmed Chowdhury Stadium, Chattogram",
                "shortName": "Zahur Ahmed Chowdhury Stadium, Chattogram"
              },
              "matchId": "218323",
              "matchDate": "10/12/2022",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "28994",
              "name": "Mohammad Shami",
              "value": "7/57",
              "displayText": "7/57 by Mohammad Shami v New Zealand on November 15, 2023 - r",
              "against": {
                "id": "5",
                "name": "New Zealand",
                "shortName": "NZ"
              },
              "venue": {
                "id": "168",
                "name": "Wankhede Stadium, Mumbai",
                "shortName": "Wankhede Stadium, Mumbai"
              },
              "matchId": "228844",
              "matchDate": "15/11/2023",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "4178",
              "name": "Stuart Binny",
              "value": "6/4",
              "displayText": "6/4 by Stuart Binny v Bangladesh on June 17, 2014 - r",
              "against": {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN"
              },
              "venue": {
                "id": "145",
                "name": "Shere Bangla National Stadium, Mirpur",
                "shortName": "Shere Bangla National Stadium, Mirpur"
              },
              "matchId": "176432",
              "matchDate": "17/06/2014",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "value": "6/12",
              "displayText": "6/12 by Anil Kumble v West Indies on November 27, 1993 - r",
              "against": {
                "id": "9",
                "name": "West Indies",
                "shortName": "WI"
              },
              "venue": {
                "id": "48",
                "name": "Eden Gardens, Kolkata",
                "shortName": "Eden Gardens, Kolkata"
              },
              "matchId": "2786",
              "matchDate": "27/11/1993",
              "outcome": "r"
            }
          ]
        },
        "performanceAgainst": {
          "team": [
            {
              "id": "1188",
              "name": "Afghanistan",
              "shortName": "AFG",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "75",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "228784",
                "matchFilename": "inaf10112023228784",
                "date": "11/10/2023",
                "runs": "273",
                "wicket": "2",
                "overs": "35",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 8 wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "186704",
                "matchFilename": "inaf06222019186704",
                "date": "22/06/2019",
                "runs": "224",
                "wicket": "8",
                "overs": "50",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 11 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "228784",
                "matchFilename": "inaf10112023228784",
                "date": "11/10/2023",
                "runs": "274",
                "wicket": "2",
                "overs": "35",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 8 wickets"
              }
            },
            {
              "id": "1",
              "name": "Australia",
              "shortName": "AUS",
              "matchesPlayed": "152",
              "matchesWon": "58",
              "matchesLost": "84",
              "matchesTied": "0",
              "noResult": "10",
              "winPercentage": "38.16",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "230519",
                "matchFilename": "inau09242023230519",
                "date": "24/09/2023",
                "runs": "399",
                "wicket": "5",
                "overs": "50",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "India beat Australia by 99 runs (D/L method)"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "2032",
                "matchFilename": "auin010819812032",
                "date": "08/01/1981",
                "runs": "63",
                "wicket": "10",
                "overs": "25",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "Australia beat India by 9 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "173852",
                "matchFilename": "inau10162013173852",
                "date": "16/10/2013",
                "runs": "363",
                "wicket": "1",
                "overs": "43.3",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "India beat Australia by 9 wickets"
              }
            },
            {
              "id": "2",
              "name": "Bangladesh",
              "shortName": "BAN",
              "matchesPlayed": "42",
              "matchesWon": "33",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "78.57",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "218323",
                "matchFilename": "bain12102022218323",
                "date": "10/12/2022",
                "runs": "409",
                "wicket": "8",
                "overs": "50",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 227 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "176432",
                "matchFilename": "bain06172014176432",
                "date": "17/06/2014",
                "runs": "105",
                "wicket": "10",
                "overs": "25",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 47 runs (D/L method)"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "6294",
                "matchFilename": "bain010720106294",
                "date": "07/01/2010",
                "runs": "298",
                "wicket": "4",
                "overs": "47.3",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 6 wickets"
              }
            },
            {
              "id": "11",
              "name": "Bermuda",
              "shortName": "BER",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4471",
                "matchFilename": "inbe031920074471",
                "date": "19/03/2007",
                "runs": "413",
                "wicket": "5",
                "overs": "50",
                "vsId": "11",
                "vsName": "Bermuda",
                "matchResult": "India beat Bermuda by 257 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4471",
                "matchFilename": "inbe031920074471",
                "date": "19/03/2007",
                "runs": "413",
                "wicket": "5",
                "overs": "50",
                "vsId": "11",
                "vsName": "Bermuda",
                "matchResult": "India beat Bermuda by 257 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "24",
              "name": "East Africa",
              "shortName": "EA",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "1953",
                "matchFilename": "eain061119751953",
                "date": "11/06/1975",
                "runs": "124",
                "wicket": "0",
                "overs": "29.5",
                "vsId": "24",
                "vsName": "East Africa",
                "matchResult": "India beat East Africa by 10 wickets"
              }
            },
            {
              "id": "3",
              "name": "England",
              "shortName": "ENG",
              "matchesPlayed": "110",
              "matchesWon": "61",
              "matchesLost": "44",
              "matchesTied": "2",
              "noResult": "3",
              "winPercentage": "55.45",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4735",
                "matchFilename": "inen111420084735",
                "date": "14/11/2008",
                "runs": "387",
                "wicket": "5",
                "overs": "50",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "India beat England by 158 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "205283",
                "matchFilename": "enin07142022205283",
                "date": "14/07/2022",
                "runs": "146",
                "wicket": "10",
                "overs": "38",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "England beat India by 100 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "181709",
                "matchFilename": "inen01152017181709",
                "date": "15/01/2017",
                "runs": "357",
                "wicket": "7",
                "overs": "48.1",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "India beat England by 3 wickets"
              }
            },
            {
              "id": "19",
              "name": "Hong Kong, China",
              "shortName": "HK",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4676",
                "matchFilename": "hkin062520084676",
                "date": "25/06/2008",
                "runs": "374",
                "wicket": "4",
                "overs": "50",
                "vsId": "19",
                "vsName": "Hong Kong, China",
                "matchResult": "India beat Hong Kong by 256 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "187191",
                "matchFilename": "inhk09182018187191",
                "date": "18/09/2018",
                "runs": "285",
                "wicket": "7",
                "overs": "50",
                "vsId": "19",
                "vsName": "Hong Kong, China",
                "matchResult": "India beat Hong Kong by 26 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "13",
              "name": "Ireland",
              "shortName": "IRE",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "174012",
                "matchFilename": "inir03102015174012",
                "date": "10/03/2015",
                "runs": "261",
                "wicket": "2",
                "overs": "36.5",
                "vsId": "13",
                "vsName": "Ireland",
                "matchResult": "India beat Ireland by 8 wickets"
              }
            },
            {
              "id": "14",
              "name": "Kenya",
              "shortName": "KEN",
              "matchesPlayed": "13",
              "matchesWon": "11",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "84.62",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3692",
                "matchFilename": "inke102420013692",
                "date": "24/10/2001",
                "runs": "351",
                "wicket": "3",
                "overs": "50",
                "vsId": "14",
                "vsName": "Kenya",
                "matchResult": "India beat Kenya by 186 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3689",
                "matchFilename": "inke101720013689",
                "date": "17/10/2001",
                "runs": "176",
                "wicket": "10",
                "overs": "46",
                "vsId": "14",
                "vsName": "Kenya",
                "matchResult": "Kenya beat India by 70 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "3911",
                "matchFilename": "inke030720033911",
                "date": "07/03/2003",
                "runs": "227",
                "wicket": "4",
                "overs": "47.5",
                "vsId": "14",
                "vsName": "Kenya",
                "matchResult": "India beat Kenya by 6 wickets"
              }
            },
            {
              "id": "20",
              "name": "Namibia",
              "shortName": "NAM",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3891",
                "matchFilename": "inna022320033891",
                "date": "23/02/2003",
                "runs": "311",
                "wicket": "2",
                "overs": "50",
                "vsId": "20",
                "vsName": "Namibia",
                "matchResult": "India beat Namibia by 181 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3891",
                "matchFilename": "inna022320033891",
                "date": "23/02/2003",
                "runs": "311",
                "wicket": "2",
                "overs": "50",
                "vsId": "20",
                "vsName": "Namibia",
                "matchResult": "India beat Namibia by 181 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "637",
              "name": "Nepal",
              "shortName": "NEP",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "230222",
                "matchFilename": "innp09042023230222",
                "date": "04/09/2023",
                "runs": "231",
                "wicket": "0",
                "overs": "20.1",
                "vsId": "637",
                "vsName": "Nepal",
                "matchResult": "India beat Nepal by 10 wickets (D/L method)"
              }
            },
            {
              "id": "15",
              "name": "Netherlands",
              "shortName": "NED",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "228841",
                "matchFilename": "inne11122023228841",
                "date": "12/11/2023",
                "runs": "410",
                "wicket": "4",
                "overs": "50",
                "vsId": "15",
                "vsName": "Netherlands",
                "matchResult": "India beat Netherlands by 160 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3875",
                "matchFilename": "inne021220033875",
                "date": "12/02/2003",
                "runs": "204",
                "wicket": "10",
                "overs": "48",
                "vsId": "15",
                "vsName": "Netherlands",
                "matchResult": "India beat Netherlands by 68 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "7599",
                "matchFilename": "inne030920117599",
                "date": "09/03/2011",
                "runs": "192",
                "wicket": "5",
                "overs": "36.3",
                "vsId": "15",
                "vsName": "Netherlands",
                "matchResult": "India beat Netherlands by 5 wickets"
              }
            },
            {
              "id": "5",
              "name": "New Zealand",
              "shortName": "NZ",
              "matchesPlayed": "120",
              "matchesWon": "62",
              "matchesLost": "50",
              "matchesTied": "1",
              "noResult": "7",
              "winPercentage": "51.67",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "228844",
                "matchFilename": "innz11152023228844",
                "date": "15/11/2023",
                "runs": "397",
                "wicket": "4",
                "overs": "50",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "India beat New Zealand by 70 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "7877",
                "matchFilename": "innz081020107877",
                "date": "10/08/2010",
                "runs": "88",
                "wicket": "10",
                "overs": "29",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "New Zealand beat India by 200 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "8012",
                "matchFilename": "innz120720108012",
                "date": "07/12/2010",
                "runs": "322",
                "wicket": "5",
                "overs": "48.5",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "India beat New Zealand by 5 wickets"
              }
            },
            {
              "id": "6",
              "name": "Pakistan",
              "shortName": "PAK",
              "matchesPlayed": "136",
              "matchesWon": "58",
              "matchesLost": "73",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "42.65",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4164",
                "matchFilename": "inpk040520054164",
                "date": "05/04/2005",
                "runs": "356",
                "wicket": "9",
                "overs": "50",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 58 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "1983",
                "matchFilename": "pkin101319781983",
                "date": "13/10/1978",
                "runs": "79",
                "wicket": "10",
                "overs": "34",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "Pakistan beat India by 8 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "92253",
                "matchFilename": "inpk0318201292253",
                "date": "18/03/2012",
                "runs": "331",
                "wicket": "4",
                "overs": "47.5",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 6 wickets"
              }
            },
            {
              "id": "16",
              "name": "Scotland",
              "shortName": "SCO",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "4536",
                "matchFilename": "scin081620074536",
                "date": "16/08/2007",
                "runs": "213",
                "wicket": "3",
                "overs": "39.5",
                "vsId": "16",
                "vsName": "Scotland",
                "matchResult": "India beat Scotland by 7 wickets (D/L Method)"
              }
            },
            {
              "id": "7",
              "name": "South Africa",
              "shortName": "SA",
              "matchesPlayed": "94",
              "matchesWon": "40",
              "matchesLost": "51",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "42.55",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "6796",
                "matchFilename": "insa022420106796",
                "date": "24/02/2010",
                "runs": "401",
                "wicket": "3",
                "overs": "50",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "India beat South Africa by 153 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4375",
                "matchFilename": "sain112220064375",
                "date": "22/11/2006",
                "runs": "91",
                "wicket": "10",
                "overs": "29",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "South Africa beat India by 157 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "3500",
                "matchFilename": "insa030920003500",
                "date": "09/03/2000",
                "runs": "303",
                "wicket": "7",
                "overs": "49.4",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "India beat South Africa by 3 wickets"
              }
            },
            {
              "id": "8",
              "name": "Sri Lanka",
              "shortName": "SL",
              "matchesPlayed": "171",
              "matchesWon": "99",
              "matchesLost": "59",
              "matchesTied": "2",
              "noResult": "11",
              "winPercentage": "57.89",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "6287",
                "matchFilename": "insl121520096287",
                "date": "15/12/2009",
                "runs": "414",
                "wicket": "7",
                "overs": "50",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "India beat Sri Lanka by 3 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3580",
                "matchFilename": "insl102920003580",
                "date": "29/10/2000",
                "runs": "54",
                "wicket": "10",
                "overs": "26",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Sri Lanka beat India by 245 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "91854",
                "matchFilename": "insl0228201291854",
                "date": "28/02/2012",
                "runs": "322",
                "wicket": "3",
                "overs": "36.4",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "India beat Sri Lanka by 7 wickets"
              }
            },
            {
              "id": "21",
              "name": "United Arab Emirates",
              "shortName": "UAE",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "2832",
                "matchFilename": "uain041319942832",
                "date": "13/04/1994",
                "runs": "273",
                "wicket": "5",
                "overs": "50",
                "vsId": "21",
                "vsName": "United Arab Emirates",
                "matchResult": "India beat United Arab Emirates by 71 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4072",
                "matchFilename": "inua071620044072",
                "date": "16/07/2004",
                "runs": "260",
                "wicket": "6",
                "overs": "50",
                "vsId": "21",
                "vsName": "United Arab Emirates",
                "matchResult": "India beat United Arab Emirates by 116 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "173998",
                "matchFilename": "inua02282015173998",
                "date": "28/02/2015",
                "runs": "105",
                "wicket": "1",
                "overs": "18.5",
                "vsId": "21",
                "vsName": "United Arab Emirates",
                "matchResult": "India beat United Arab Emirates by 9 wickets"
              }
            },
            {
              "id": "9",
              "name": "West Indies",
              "shortName": "WI",
              "matchesPlayed": "142",
              "matchesWon": "72",
              "matchesLost": "64",
              "matchesTied": "2",
              "noResult": "4",
              "winPercentage": "50.7",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "92241",
                "matchFilename": "inwi1208201192241",
                "date": "08/12/2011",
                "runs": "418",
                "wicket": "5",
                "overs": "50",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "India beat West Indies by 153 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "2779",
                "matchFilename": "inwi111619932779",
                "date": "16/11/1993",
                "runs": "100",
                "wicket": "10",
                "overs": "28",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "West Indies beat India by 69 runs (revised target)"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "187757",
                "matchFilename": "inwi10212018187757",
                "date": "21/10/2018",
                "runs": "327",
                "wicket": "2",
                "overs": "42.1",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "India beat West Indies by 8 wickets"
              }
            },
            {
              "id": "10",
              "name": "Zimbabwe",
              "shortName": "ZIM",
              "matchesPlayed": "66",
              "matchesWon": "54",
              "matchesLost": "10",
              "matchesTied": "2",
              "noResult": "0",
              "winPercentage": "81.82",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3746",
                "matchFilename": "inzm031920023746",
                "date": "19/03/2002",
                "runs": "333",
                "wicket": "6",
                "overs": "50",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India beat Zimbabwe by 101 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3106",
                "matchFilename": "zmin021519973106",
                "date": "15/02/1997",
                "runs": "168",
                "wicket": "10",
                "overs": "43",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "Zimbabwe beat India by 8 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "174017",
                "matchFilename": "inzm03142015174017",
                "date": "14/03/2015",
                "runs": "289",
                "wicket": "4",
                "overs": "48.4",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India beat Zimbabwe by 6 wickets"
              }
            }
          ]
        },
        "homeRecords": {
          "matchesPlayed": "377",
          "matchesWon": "229",
          "matchesLost": "136",
          "matchesTied": "3",
          "noResult": "9",
          "winPercentage": "60.74",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "2962",
                "name": "Sachin Tendulkar",
                "value": "6976",
                "displayText": "Sachin Tendulkar - (6976 runs for India)"
              },
              {
                "type": "bowling",
                "id": "1767",
                "name": "Anil Kumble",
                "value": "126",
                "displayText": "Anil Kumble - (126 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3852",
                "name": "Rohit Sharma",
                "value": "264",
                "displayText": "264 by Rohit Sharma v Sri Lanka on November 13, 2014 - India beat Sri Lanka by 153 runs",
                "isNotOut": "False",
                "against": {
                  "id": "8",
                  "name": "Sri Lanka",
                  "shortName": "SL"
                },
                "venue": {
                  "id": "48",
                  "name": "Eden Gardens, Kolkata",
                  "shortName": "Eden Gardens, Kolkata"
                },
                "matchId": "177521",
                "matchDate": "13/11/2014",
                "outcome": "India beat Sri Lanka by 153 runs"
              },
              {
                "type": "bowling",
                "id": "28994",
                "name": "Mohammad Shami",
                "value": "7/57",
                "displayText": "7/57 by Mohammad Shami v New Zealand on November 15, 2023 - India beat New Zealand by 70 runs",
                "against": {
                  "id": "5",
                  "name": "New Zealand",
                  "shortName": "NZ"
                },
                "venue": {
                  "id": "168",
                  "name": "Wankhede Stadium, Mumbai",
                  "shortName": "Wankhede Stadium, Mumbai"
                },
                "matchId": "228844",
                "matchDate": "15/11/2023",
                "outcome": "India beat New Zealand by 70 runs"
              }
            ]
          }
        },
        "awayRecords": {
          "matchesPlayed": "381",
          "matchesWon": "167",
          "matchesLost": "188",
          "matchesTied": "3",
          "noResult": "23",
          "winPercentage": "43.83",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3993",
                "name": "Virat Kohli",
                "value": "5394",
                "displayText": "Virat Kohli - (5394 runs for India)"
              },
              {
                "type": "bowling",
                "id": "1717",
                "name": "Zaheer Khan",
                "value": "110",
                "displayText": "Zaheer Khan - (110 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "64712",
                "name": "Ishan Kishan",
                "value": "210",
                "displayText": "210 by Ishan Kishan v Bangladesh on December 10, 2022 - India beat Bangladesh by 227 runs",
                "isNotOut": "False",
                "against": {
                  "id": "2",
                  "name": "Bangladesh",
                  "shortName": "BAN"
                },
                "venue": {
                  "id": "181",
                  "name": "Zahur Ahmed Chowdhury Stadium, Chattogram",
                  "shortName": "Zahur Ahmed Chowdhury Stadium, Chattogram"
                },
                "matchId": "218323",
                "matchDate": "10/12/2022",
                "outcome": "India beat Bangladesh by 227 runs"
              },
              {
                "type": "bowling",
                "id": "4178",
                "name": "Stuart Binny",
                "value": "6/4",
                "displayText": "6/4 by Stuart Binny v Bangladesh on June 17, 2014 - India beat Bangladesh by 47 runs (D/L method)",
                "against": {
                  "id": "2",
                  "name": "Bangladesh",
                  "shortName": "BAN"
                },
                "venue": {
                  "id": "145",
                  "name": "Shere Bangla National Stadium, Mirpur",
                  "shortName": "Shere Bangla National Stadium, Mirpur"
                },
                "matchId": "176432",
                "matchDate": "17/06/2014",
                "outcome": "India beat Bangladesh by 47 runs (D/L method)"
              }
            ]
          }
        },
        "neutralRecords": {
          "matchesPlayed": "308",
          "matchesWon": "171",
          "matchesLost": "121",
          "matchesTied": "4",
          "noResult": "12",
          "winPercentage": "55.52",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "2962",
                "name": "Sachin Tendulkar",
                "value": "6385",
                "displayText": "Sachin Tendulkar - (6385 runs for India)"
              },
              {
                "type": "bowling",
                "id": "1767",
                "name": "Anil Kumble",
                "value": "141",
                "displayText": "Anil Kumble - (141 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3676",
                "name": "MS Dhoni",
                "value": "183",
                "displayText": "183* by MS Dhoni v Sri Lanka on October 31, 2005 - India beat Sri Lanka by 6 wickets",
                "isNotOut": "True",
                "against": {
                  "id": "8",
                  "name": "Sri Lanka",
                  "shortName": "SL"
                },
                "venue": {
                  "id": "139",
                  "name": "Sawai Mansingh Stadium, Jaipur",
                  "shortName": "Sawai Mansingh Stadium, Jaipur"
                },
                "matchId": "4218",
                "matchDate": "31/10/2005",
                "outcome": "India beat Sri Lanka by 6 wickets"
              },
              {
                "type": "bowling",
                "id": "2214",
                "name": "Ashish Nehra",
                "value": "6/23",
                "displayText": "6/23 by Ashish Nehra v England on February 26, 2003 - India beat England by 82 runs",
                "against": {
                  "id": "3",
                  "name": "England",
                  "shortName": "ENG"
                },
                "venue": {
                  "id": "84",
                  "name": "Kingsmead, Durban",
                  "shortName": "Kingsmead, Durban"
                },
                "matchId": "3897",
                "matchDate": "26/02/2003",
                "outcome": "India beat England by 82 runs"
              }
            ]
          }
        },
        "venuesBasedPerformance": {
          "venue": [
            {
              "id": "1",
              "name": "Australia - Adelaide Oval, Adelaide",
              "shortName": "Adelaide Oval, Adelaide",
              "matchesPlayed": "15",
              "matchesWon": "9",
              "matchesLost": "5",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "id": "3",
              "name": "West Indies - Albion Sports Complex, Guyana",
              "shortName": "Albion Sports Complex, Guyana",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "4",
              "name": "West Indies - Antigua Recreation Ground, St. John's",
              "shortName": "Antigua Recreation Ground, St. John's",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "5",
              "name": "Pakistan - Arbab Niaz Stadium, Peshawar",
              "shortName": "Arbab Niaz Stadium, Peshawar",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "6",
              "name": "West Indies - Arnos Vale Ground, Kingstown",
              "shortName": "Arnos Vale Ground, Kingstown",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "8",
              "name": "Pakistan - Ayub National Stadium, Quetta",
              "shortName": "Ayub National Stadium, Quetta",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "11",
              "name": "Bangladesh - Bangabandhu National Stadium, Dhaka",
              "shortName": "Bangabandhu National Stadium, Dhaka",
              "matchesPlayed": "20",
              "matchesWon": "12",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "60"
            },
            {
              "id": "12",
              "name": "India - Barabati Stadium, Cuttack",
              "shortName": "Barabati Stadium, Cuttack",
              "matchesPlayed": "18",
              "matchesWon": "14",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "77.78"
            },
            {
              "id": "13",
              "name": "India - Barkatullah Khan Stadium, Jodhpur",
              "shortName": "Barkatullah Khan Stadium, Jodhpur",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "14",
              "name": "New Zealand - Cello Basin Reserve, Wellington",
              "shortName": "Cello Basin Reserve, Wellington",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "15",
              "name": "West Indies - Daren Sammy National Cricket Stadium, Gros Islet",
              "shortName": "Daren Sammy National Cricket Stadium, Gros Islet",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "16",
              "name": "Australia - Bellerive Oval, Hobart",
              "shortName": "Bellerive Oval, Hobart",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "id": "18",
              "name": "South Africa - Boland Park, Paarl",
              "shortName": "Boland Park, Paarl",
              "matchesPlayed": "6",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "19",
              "name": "Guyana - Bourda, Georgetown, Guyana",
              "shortName": "Bourda, Georgetown, Guyana",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "20",
              "name": "India - Brabourne Stadium, Mumbai",
              "shortName": "Brabourne Stadium, Mumbai",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "22",
              "name": "Australia - The Gabba, Brisbane",
              "shortName": "The Gabba, Brisbane",
              "matchesPlayed": "16",
              "matchesWon": "4",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "25"
            },
            {
              "id": "23",
              "name": "South Africa - Buffalo Park, East London",
              "shortName": "Buffalo Park, East London",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "28",
              "name": "India - Captain Roop Singh Stadium, Gwalior",
              "shortName": "Captain Roop Singh Stadium, Gwalior",
              "matchesPlayed": "10",
              "matchesWon": "8",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "80"
            },
            {
              "id": "29",
              "name": "New Zealand - Carisbrook, Dunedin",
              "shortName": "Carisbrook, Dunedin",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "31",
              "name": "Bangladesh - MA Aziz Stadium, Chittagong",
              "shortName": "MA Aziz Stadium, Chittagong",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "32",
              "name": "Ireland - Civil Service Cricket Club, Belfast",
              "shortName": "Civil Service Cricket Club, Belfast",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "36",
              "name": "England - County Ground, Chelmsford",
              "shortName": "County Ground, Chelmsford",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "40",
              "name": "England - The Cooper Associates County Ground, Taunton",
              "shortName": "The Cooper Associates County Ground, Taunton",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "41",
              "name": "Canada - Toronto Cricket, Skating and Curling Club, Toronto",
              "shortName": "Toronto Cricket, Skating and Curling Club, Toronto",
              "matchesPlayed": "19",
              "matchesWon": "9",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "47.37"
            },
            {
              "id": "48",
              "name": "India - Eden Gardens, Kolkata",
              "shortName": "Eden Gardens, Kolkata",
              "matchesPlayed": "23",
              "matchesWon": "14",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "60.87"
            },
            {
              "id": "49",
              "name": "New Zealand - Eden Park, Auckland",
              "shortName": "Eden Park, Auckland",
              "matchesPlayed": "11",
              "matchesWon": "4",
              "matchesLost": "6",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "36.36"
            },
            {
              "id": "50",
              "name": "England - Edgbaston, Birmingham",
              "shortName": "Edgbaston, Birmingham",
              "matchesPlayed": "12",
              "matchesWon": "8",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "53",
              "name": "Bangladesh - Khan Shaheb Osman Ali Stadium, Fatullah",
              "shortName": "Khan Shaheb Osman Ali Stadium, Fatullah",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "54",
              "name": "India - Arun Jaitley Stadium, Delhi",
              "shortName": "Arun Jaitley Stadium, Delhi",
              "matchesPlayed": "22",
              "matchesWon": "14",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "63.64"
            },
            {
              "id": "55",
              "name": "Pakistan - Gaddafi Stadium, Lahore",
              "shortName": "Gaddafi Stadium, Lahore",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "56",
              "name": "Sri Lanka - Galle International Stadium, Galle",
              "shortName": "Galle International Stadium, Galle",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "57",
              "name": "India - Gandhi Sports Complex Ground, Amritsar",
              "shortName": "Gandhi Sports Complex Ground, Amritsar",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "58",
              "name": "India - Gandhi Stadium, Jalandhar",
              "shortName": "Gandhi Stadium, Jalandhar",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "59",
              "name": "South Africa - Mangaung Oval, Bloemfontein",
              "shortName": "Mangaung Oval, Bloemfontein",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "60",
              "name": "England - Uptonsteel County Ground, Leicester",
              "shortName": "Uptonsteel County Ground, Leicester",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "61",
              "name": "India - Green Park, Kanpur",
              "shortName": "Green Park, Kanpur",
              "matchesPlayed": "14",
              "matchesWon": "10",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "71.43"
            },
            {
              "id": "63",
              "name": "Zimbabwe - Harare Sports Club, Harare",
              "shortName": "Harare Sports Club, Harare",
              "matchesPlayed": "24",
              "matchesWon": "19",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "79.17"
            },
            {
              "id": "64",
              "name": "Australia - Great Barrier Reef Arena, Mackay",
              "shortName": "Great Barrier Reef Arena, Mackay",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "65",
              "name": "England - Headingley, Leeds",
              "shortName": "Headingley, Leeds",
              "matchesPlayed": "10",
              "matchesWon": "4",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "40"
            },
            {
              "id": "66",
              "name": "India - Reliance Stadium, Vadodara",
              "shortName": "Reliance Stadium, Vadodara",
              "matchesPlayed": "9",
              "matchesWon": "6",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "67",
              "name": "Pakistan - Ibn-e-Qasim Bagh Stadium, Multan",
              "shortName": "Ibn-e-Qasim Bagh Stadium, Multan",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "68",
              "name": "India - Indira Priyadarshini Stadium, Visakhapatnam",
              "shortName": "Indira Priyadarshini Stadium, Visakhapatnam",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "70",
              "name": "New Zealand - AMI Stadium, Christchurch",
              "shortName": "AMI Stadium, Christchurch",
              "matchesPlayed": "6",
              "matchesWon": "1",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "16.67"
            },
            {
              "id": "71",
              "name": "India - Nehru Stadium, Guwahati",
              "shortName": "Nehru Stadium, Guwahati",
              "matchesPlayed": "10",
              "matchesWon": "6",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "id": "72",
              "name": "India - Nehru Stadium, Indore",
              "shortName": "Nehru Stadium, Indore",
              "matchesPlayed": "7",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "28.57"
            },
            {
              "id": "73",
              "name": "India - Nehru Stadium, Kochi",
              "shortName": "Nehru Stadium, Kochi",
              "matchesPlayed": "9",
              "matchesWon": "6",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "74",
              "name": "India - Jawaharlal Nehru Stadium, New Delhi",
              "shortName": "Jawaharlal Nehru Stadium, New Delhi",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "75",
              "name": "Pakistan - Jinnah Stadium, Sialkot",
              "shortName": "Jinnah Stadium, Sialkot",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "76",
              "name": "Pakistan - Jinnah Stadium, Gujranwala",
              "shortName": "Jinnah Stadium, Gujranwala",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "77",
              "name": "New Zealand - John Davies Oval, Queenstown",
              "shortName": "John Davies Oval, Queenstown",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "79",
              "name": "Singapore - Kallang Ground, Singapore",
              "shortName": "Kallang Ground, Singapore",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "25"
            },
            {
              "id": "80",
              "name": "India - Keenan Stadium, Jamshedpur",
              "shortName": "Keenan Stadium, Jamshedpur",
              "matchesPlayed": "9",
              "matchesWon": "1",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "11.11"
            },
            {
              "id": "81",
              "name": "England - Kennington Oval, London",
              "shortName": "Kennington Oval, London",
              "matchesPlayed": "17",
              "matchesWon": "7",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "41.18"
            },
            {
              "id": "82",
              "name": "West Indies - Kensington Oval, Bridgetown",
              "shortName": "Kensington Oval, Bridgetown",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "40"
            },
            {
              "id": "84",
              "name": "South Africa - Kingsmead, Durban",
              "shortName": "Kingsmead, Durban",
              "matchesPlayed": "10",
              "matchesWon": "3",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "30"
            },
            {
              "id": "85",
              "name": "Malaysia - Kinrara Academy Oval, Kuala Lumpur",
              "shortName": "Kinrara Academy Oval, Kuala Lumpur",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "25"
            },
            {
              "id": "86",
              "name": "India - Lal Bahadur Shastri Stadium, Hyderabad",
              "shortName": "Lal Bahadur Shastri Stadium, Hyderabad",
              "matchesPlayed": "8",
              "matchesWon": "6",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "75"
            },
            {
              "id": "89",
              "name": "England - Lord's Cricket Ground, London",
              "shortName": "Lord's Cricket Ground, London",
              "matchesPlayed": "9",
              "matchesWon": "4",
              "matchesLost": "4",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "44.44"
            },
            {
              "id": "90",
              "name": "India - M.Chinnaswamy Stadium, Bengaluru",
              "shortName": "M.Chinnaswamy Stadium, Bengaluru",
              "matchesPlayed": "22",
              "matchesWon": "15",
              "matchesLost": "5",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "68.18"
            },
            {
              "id": "91",
              "name": "India - MA Chidambaram Stadium, Chennai",
              "shortName": "MA Chidambaram Stadium, Chennai",
              "matchesPlayed": "15",
              "matchesWon": "8",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "53.33"
            },
            {
              "id": "92",
              "name": "India - Holkar Cricket Stadium, Indore",
              "shortName": "Holkar Cricket Stadium, Indore",
              "matchesPlayed": "7",
              "matchesWon": "7",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "93",
              "name": "Australia - Manuka Oval, Canberra",
              "shortName": "Manuka Oval, Canberra",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "95",
              "name": "New Zealand - McLean Park, Napier",
              "shortName": "McLean Park, Napier",
              "matchesPlayed": "7",
              "matchesWon": "3",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "42.86"
            },
            {
              "id": "96",
              "name": "Australia - Melbourne Cricket Ground (MCG), Melbourne",
              "shortName": "Melbourne Cricket Ground (MCG), Melbourne",
              "matchesPlayed": "22",
              "matchesWon": "11",
              "matchesLost": "11",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "99",
              "name": "India - Moti Bagh Stadium, Vadodara",
              "shortName": "Moti Bagh Stadium, Vadodara",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "100",
              "name": "Pakistan - Multan Cricket Stadium, Multan",
              "shortName": "Multan Cricket Stadium, Multan",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "101",
              "name": "India - Madhavrao Scindia Cricket Ground, Rajkot",
              "shortName": "Madhavrao Scindia Cricket Ground, Rajkot",
              "matchesPlayed": "11",
              "matchesWon": "6",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "54.55"
            },
            {
              "id": "102",
              "name": "India - Nahar Singh Stadium, Faridabad",
              "shortName": "Nahar Singh Stadium, Faridabad",
              "matchesPlayed": "6",
              "matchesWon": "2",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "103",
              "name": "Kenya - Nairobi Gymkhana Club Ground, Nairobi",
              "shortName": "Nairobi Gymkhana Club Ground, Nairobi",
              "matchesPlayed": "8",
              "matchesWon": "6",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "105",
              "name": "Pakistan - National Stadium, Karachi",
              "shortName": "National Stadium, Karachi",
              "matchesPlayed": "11",
              "matchesWon": "7",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "63.64"
            },
            {
              "id": "107",
              "name": "India - Nehru Stadium, Margao",
              "shortName": "Nehru Stadium, Margao",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "40"
            },
            {
              "id": "108",
              "name": "India - Nehru Stadium, Pune",
              "shortName": "Nehru Stadium, Pune",
              "matchesPlayed": "8",
              "matchesWon": "5",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "62.5"
            },
            {
              "id": "109",
              "name": "England - Nevill Ground, Tunbridge Wells",
              "shortName": "Nevill Ground, Tunbridge Wells",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "110",
              "name": "England - County Ground, Hove",
              "shortName": "County Ground, Hove",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "111",
              "name": "South Africa - The Wanderers Stadium, Johannesburg",
              "shortName": "The Wanderers Stadium, Johannesburg",
              "matchesPlayed": "9",
              "matchesWon": "4",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "44.44"
            },
            {
              "id": "112",
              "name": "South Africa - Newlands, Cape Town",
              "shortName": "Newlands, Cape Town",
              "matchesPlayed": "6",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "113",
              "name": "Pakistan - Niaz Stadium, Hyderabad, Sind",
              "shortName": "Niaz Stadium, Hyderabad, Sind",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "115",
              "name": "Australia - North Tasmania Cricket Association Ground, Launceston",
              "shortName": "North Tasmania Cricket Association Ground, Launceston",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "117",
              "name": "England - Emirates Old Trafford, Manchester",
              "shortName": "Emirates Old Trafford, Manchester",
              "matchesPlayed": "12",
              "matchesWon": "6",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "119",
              "name": "New Zealand - Owen Delany Park, Taupo",
              "shortName": "Owen Delany Park, Taupo",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "120",
              "name": "Sri Lanka - P Sara Oval, Colombo",
              "shortName": "P Sara Oval, Colombo",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "121",
              "name": "South Africa - City Oval, Pietermaritzburg",
              "shortName": "City Oval, Pietermaritzburg",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "125",
              "name": "India - I.S. Bindra Punjab Cricket Association Stadium, Mohali",
              "shortName": "I.S. Bindra Punjab Cricket Association Stadium, Mohali",
              "matchesPlayed": "17",
              "matchesWon": "11",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "64.71"
            },
            {
              "id": "127",
              "name": "West Indies - Queen's Park Oval, Port of Spain",
              "shortName": "Queen's Park Oval, Port of Spain",
              "matchesPlayed": "24",
              "matchesWon": "14",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "58.33"
            },
            {
              "id": "128",
              "name": "West Indies - Queen's Park, St George's",
              "shortName": "Queen's Park, St George's",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "129",
              "name": "Zimbabwe - Queens Sports Club, Bulawayo",
              "shortName": "Queens Sports Club, Bulawayo",
              "matchesPlayed": "10",
              "matchesWon": "7",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "70"
            },
            {
              "id": "131",
              "name": "Sri Lanka - R.Premadasa Stadium, Colombo",
              "shortName": "R.Premadasa Stadium, Colombo",
              "matchesPlayed": "53",
              "matchesWon": "26",
              "matchesLost": "22",
              "matchesTied": "1",
              "noResult": "4",
              "winPercentage": "49.06"
            },
            {
              "id": "133",
              "name": "Sri Lanka - Rangiri Dambulla International Stadium, Dambulla",
              "shortName": "Rangiri Dambulla International Stadium, Dambulla",
              "matchesPlayed": "18",
              "matchesWon": "10",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "55.56"
            },
            {
              "id": "134",
              "name": "Pakistan - Rawalpindi Cricket Stadium, Rawalpindi",
              "shortName": "Rawalpindi Cricket Stadium, Rawalpindi",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "135",
              "name": "England - Riverside Ground, Chester-le-Street",
              "shortName": "Riverside Ground, Chester-le-Street",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "136",
              "name": "West Indies - Sabina Park, Kingston",
              "shortName": "Sabina Park, Kingston",
              "matchesPlayed": "8",
              "matchesWon": "3",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "37.5"
            },
            {
              "id": "137",
              "name": "India - Narendra Modi Stadium, Ahmedabad",
              "shortName": "Narendra Modi Stadium, Ahmedabad",
              "matchesPlayed": "21",
              "matchesWon": "12",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "57.14"
            },
            {
              "id": "139",
              "name": "India - Sawai Mansingh Stadium, Jaipur",
              "shortName": "Sawai Mansingh Stadium, Jaipur",
              "matchesPlayed": "12",
              "matchesWon": "8",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "140",
              "name": "India - Sector 16 Stadium, Chandigarh",
              "shortName": "Sector 16 Stadium, Chandigarh",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "143",
              "name": "United Arab Emirates - Sharjah Cricket Stadium, Sharjah",
              "shortName": "Sharjah Cricket Stadium, Sharjah",
              "matchesPlayed": "72",
              "matchesWon": "35",
              "matchesLost": "37",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "48.61"
            },
            {
              "id": "145",
              "name": "Bangladesh - Shere Bangla National Stadium, Mirpur",
              "shortName": "Shere Bangla National Stadium, Mirpur",
              "matchesPlayed": "24",
              "matchesWon": "14",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "58.33"
            },
            {
              "id": "146",
              "name": "India - Sher-I-Kashmir Stadium, Srinagar",
              "shortName": "Sher-I-Kashmir Stadium, Srinagar",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "147",
              "name": "Sri Lanka - Sinhalese Sports Club, Colombo",
              "shortName": "Sinhalese Sports Club, Colombo",
              "matchesPlayed": "16",
              "matchesWon": "8",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "50"
            },
            {
              "id": "148",
              "name": "West Indies - Sir Vivian Richards Stadium North Sound, Saint Peters",
              "shortName": "Sir Vivian Richards Stadium North Sound, Saint Peters",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "149",
              "name": "England - Sophia Gardens, Cardiff",
              "shortName": "Sophia Gardens, Cardiff",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "150",
              "name": "South Africa - St George's Park, Gqeberha",
              "shortName": "St George's Park, Gqeberha",
              "matchesPlayed": "7",
              "matchesWon": "1",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "14.29"
            },
            {
              "id": "153",
              "name": "South Africa - SuperSport Park, Centurion",
              "shortName": "SuperSport Park, Centurion",
              "matchesPlayed": "13",
              "matchesWon": "6",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "46.15"
            },
            {
              "id": "153",
              "name": "South Africa - SuperSport Park, Centurion",
              "shortName": "SuperSport Park, Centurion",
              "matchesPlayed": "13",
              "matchesWon": "6",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "46.15"
            },
            {
              "id": "154",
              "name": "Australia - Sydney Cricket Ground (SCG), Sydney",
              "shortName": "Sydney Cricket Ground (SCG), Sydney",
              "matchesPlayed": "22",
              "matchesWon": "5",
              "matchesLost": "16",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "22.73"
            },
            {
              "id": "157",
              "name": "Singapore - Singapore National Cricket Ground",
              "shortName": "Singapore National Cricket Ground",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "158",
              "name": "India - Rajiv Gandhi International Stadium, Hyderabad",
              "shortName": "Rajiv Gandhi International Stadium, Hyderabad",
              "matchesPlayed": "7",
              "matchesWon": "4",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "57.14"
            },
            {
              "id": "159",
              "name": "England - Utilita Bowl, Southampton",
              "shortName": "Utilita Bowl, Southampton",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "id": "160",
              "name": "England - The Seat Unique Stadium, Bristol",
              "shortName": "The Seat Unique Stadium, Bristol",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "161",
              "name": "England - Trent Bridge, Nottingham",
              "shortName": "Trent Bridge, Nottingham",
              "matchesPlayed": "6",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "162",
              "name": "Sri Lanka - De Zoysa Stadium, Moratuwa",
              "shortName": "De Zoysa Stadium, Moratuwa",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "164",
              "name": "India - University Stadium,Thiruvananthapuram",
              "shortName": "University Stadium,Thiruvananthapuram",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "165",
              "name": "India - Vidarbha Cricket Association Stadium, Nagpur",
              "shortName": "Vidarbha Cricket Association Stadium, Nagpur",
              "matchesPlayed": "7",
              "matchesWon": "5",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "71.43"
            },
            {
              "id": "166",
              "name": "Netherlands - VRA Ground, Amstelveen",
              "shortName": "VRA Ground, Amstelveen",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "167",
              "name": "Australia - W.A.C.A. Ground, Perth",
              "shortName": "W.A.C.A. Ground, Perth",
              "matchesPlayed": "14",
              "matchesWon": "6",
              "matchesLost": "7",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "42.86"
            },
            {
              "id": "168",
              "name": "India - Wankhede Stadium, Mumbai",
              "shortName": "Wankhede Stadium, Mumbai",
              "matchesPlayed": "22",
              "matchesWon": "13",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "59.09"
            },
            {
              "id": "169",
              "name": "West Indies - Warner Park, Basseterre",
              "shortName": "Warner Park, Basseterre",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "170",
              "name": "New Zealand - Seddon Park, Hamilton",
              "shortName": "Seddon Park, Hamilton",
              "matchesPlayed": "12",
              "matchesWon": "3",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "25"
            },
            {
              "id": "171",
              "name": "New Zealand - Sky Stadium, Wellington",
              "shortName": "Sky Stadium, Wellington",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "172",
              "name": "South Africa - Willowmoore Park, Benoni",
              "shortName": "Willowmoore Park, Benoni",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "173",
              "name": "Pakistan - Zafar Ali Stadium, Sahiwal",
              "shortName": "Zafar Ali Stadium, Sahiwal",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "174",
              "name": "United Arab Emirates - Zayed Cricket Stadium, Abu Dhabi",
              "shortName": "Zayed Cricket Stadium, Abu Dhabi",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "181",
              "name": "Bangladesh - Zahur Ahmed Chowdhury Stadium, Chattogram",
              "shortName": "Zahur Ahmed Chowdhury Stadium, Chattogram",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "184",
              "name": "Scotland - Titwood, Glasgow",
              "shortName": "Titwood, Glasgow",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "185",
              "name": "India - Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium, Visakhapatnam",
              "shortName": "Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium, Visakhapatnam",
              "matchesPlayed": "10",
              "matchesWon": "7",
              "matchesLost": "2",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "70"
            },
            {
              "id": "186",
              "name": "India - Indira Gandhi Stadium, Vijayawada",
              "shortName": "Indira Gandhi Stadium, Vijayawada",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "187",
              "name": "India - Sardar Vallabhai Patel Stadium, Ahmedabad",
              "shortName": "Sardar Vallabhai Patel Stadium, Ahmedabad",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "244",
              "name": "India - Vidarbha Cricket Association Ground, Nagpur",
              "shortName": "Vidarbha Cricket Association Ground, Nagpur",
              "matchesPlayed": "12",
              "matchesWon": "6",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "246",
              "name": "India - Niranjan Shah Stadium, Rajkot",
              "shortName": "Niranjan Shah Stadium, Rajkot",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "25"
            },
            {
              "id": "248",
              "name": "India - Himachal Pradesh Cricket Association Stadium, Dharamsala",
              "shortName": "Himachal Pradesh Cricket Association Stadium, Dharamsala",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "id": "325",
              "name": "New Zealand - Hagley Oval, Christchurch",
              "shortName": "Hagley Oval, Christchurch",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "449",
              "name": "United Arab Emirates - Dubai International Stadium, Dubai",
              "shortName": "Dubai International Stadium, Dubai",
              "matchesPlayed": "11",
              "matchesWon": "10",
              "matchesLost": "0",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "90.91"
            },
            {
              "id": "511",
              "name": "Sri Lanka - Mahinda Rajapaksa International Cricket Stadium, Hambantota",
              "shortName": "Mahinda Rajapaksa International Cricket Stadium, Hambantota",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "543",
              "name": "Sri Lanka - Pallekele International Cricket Stadium, Kandy",
              "shortName": "Pallekele International Cricket Stadium, Kandy",
              "matchesPlayed": "5",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "80"
            },
            {
              "id": "581",
              "name": "India - JSCA International Stadium Complex, Ranchi",
              "shortName": "JSCA International Stadium Complex, Ranchi",
              "matchesPlayed": "6",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "1428",
              "name": "India - Shaheed Veer Narayan Singh International Stadium, Raipur",
              "shortName": "Shaheed Veer Narayan Singh International Stadium, Raipur",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1763",
              "name": "India - Maharashtra Cricket Association Stadium, Pune",
              "shortName": "Maharashtra Cricket Association Stadium, Pune",
              "matchesPlayed": "8",
              "matchesWon": "5",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "62.5"
            },
            {
              "id": "1795",
              "name": "New Zealand - Bay Oval, Mount Maunganui",
              "shortName": "Bay Oval, Mount Maunganui",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "1837",
              "name": "India - Barsapara Cricket Stadium, Guwahati",
              "shortName": "Barsapara Cricket Stadium, Guwahati",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1900",
              "name": "India - Bharat Ratna Shri Atal Bihari Vajpayee Ekana Cricket Stadium, Lucknow",
              "shortName": "Bharat Ratna Shri Atal Bihari Vajpayee Ekana Cricket Stadium, Lucknow",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "1918",
              "name": "West Indies - Brian Lara Cricket Academy, Tarouba",
              "shortName": "Brian Lara Cricket Academy, Tarouba",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1919",
              "name": "India - Sports Hub International Cricket stadium, Trivandrum",
              "shortName": "Sports Hub International Cricket stadium, Trivandrum",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "listOfCaptains": {
          "captain": [
            {
              "id": "3676",
              "name": "MS Dhoni",
              "shortName": "Dhoni",
              "matchesPlayed": "200",
              "matchesWon": "110",
              "matchesLost": "74",
              "matchesTied": "5",
              "noResult": "11",
              "winPercentage": "55"
            },
            {
              "id": "487",
              "name": "Mohammad Azharuddin",
              "shortName": "Azharuddin",
              "matchesPlayed": "174",
              "matchesWon": "90",
              "matchesLost": "76",
              "matchesTied": "2",
              "noResult": "6",
              "winPercentage": "51.72"
            },
            {
              "id": "1186",
              "name": "Sourav Ganguly",
              "shortName": "Ganguly",
              "matchesPlayed": "146",
              "matchesWon": "76",
              "matchesLost": "65",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "52.05"
            },
            {
              "id": "3993",
              "name": "Virat Kohli",
              "shortName": "Kohli",
              "matchesPlayed": "95",
              "matchesWon": "65",
              "matchesLost": "27",
              "matchesTied": "1",
              "noResult": "2",
              "winPercentage": "68.42"
            },
            {
              "id": "1004",
              "name": "Rahul Dravid",
              "shortName": "Dravid",
              "matchesPlayed": "79",
              "matchesWon": "42",
              "matchesLost": "33",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "53.16"
            },
            {
              "id": "1682",
              "name": "Kapil Dev",
              "shortName": "Dev",
              "matchesPlayed": "74",
              "matchesWon": "39",
              "matchesLost": "33",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "52.7"
            },
            {
              "id": "2962",
              "name": "Sachin Tendulkar",
              "shortName": "Tendulkar",
              "matchesPlayed": "73",
              "matchesWon": "23",
              "matchesLost": "43",
              "matchesTied": "1",
              "noResult": "6",
              "winPercentage": "31.51"
            },
            {
              "id": "3852",
              "name": "Rohit Sharma",
              "shortName": "Sharma",
              "matchesPlayed": "56",
              "matchesWon": "42",
              "matchesLost": "12",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "75"
            },
            {
              "id": "1199",
              "name": "Sunil Gavaskar",
              "shortName": "Gavaskar",
              "matchesPlayed": "37",
              "matchesWon": "14",
              "matchesLost": "21",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "37.84"
            },
            {
              "id": "3074",
              "name": "Dilip Vengsarkar",
              "shortName": "Vengsarkar",
              "matchesPlayed": "18",
              "matchesWon": "8",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "44.44"
            },
            {
              "id": "2847",
              "name": "Kris Srikkanth",
              "shortName": "Srikkanth",
              "matchesPlayed": "13",
              "matchesWon": "4",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "30.77"
            },
            {
              "id": "1589",
              "name": "Ajay Jadeja",
              "shortName": "Jadeja",
              "matchesPlayed": "13",
              "matchesWon": "8",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "61.54"
            },
            {
              "id": "3700",
              "name": "Suresh Raina",
              "shortName": "Raina",
              "matchesPlayed": "12",
              "matchesWon": "6",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "3722",
              "name": "Shikhar Dhawan",
              "shortName": "Dhawan",
              "matchesPlayed": "12",
              "matchesWon": "7",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "58.33"
            },
            {
              "id": "270",
              "name": "Virender Sehwag",
              "shortName": "Sehwag",
              "matchesPlayed": "12",
              "matchesWon": "7",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "58.33"
            },
            {
              "id": "60122",
              "name": "KL Rahul",
              "shortName": "Rahul",
              "matchesPlayed": "12",
              "matchesWon": "8",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "2716",
              "name": "Ravi Shastri",
              "shortName": "Shastri",
              "matchesPlayed": "11",
              "matchesWon": "4",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "36.36"
            },
            {
              "id": "3076",
              "name": "Srinivas Venkataraghavan",
              "shortName": "Venkataraghavan",
              "matchesPlayed": "7",
              "matchesWon": "1",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "14.29"
            },
            {
              "id": "3478",
              "name": "Gautam Gambhir",
              "shortName": "Gambhir",
              "matchesPlayed": "6",
              "matchesWon": "6",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "559",
              "name": "Bishan Bedi",
              "shortName": "Bedi",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "25"
            },
            {
              "id": "63751",
              "name": "Hardik Pandya",
              "shortName": "Pandya",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "3991",
              "name": "Ajinkya Rahane",
              "shortName": "Rahane",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "3105",
              "name": "Ajit Wadekar",
              "shortName": "Wadekar",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "396",
              "name": "Mohinder Amarnath",
              "shortName": "Amarnath",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1738",
              "name": "Syed Kirmani",
              "shortName": "Kirmani",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "3093",
              "name": "Gundappa Viswanath",
              "shortName": "Viswanath",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1767",
              "name": "Anil Kumble",
              "shortName": "Kumble",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "splitByYear": {
          "year": [
            {
              "value": "1974",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1975",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "value": "1976",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1978",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "value": "1979",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1980",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "value": "1981",
              "matchesPlayed": "9",
              "matchesWon": "1",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "11.11"
            },
            {
              "value": "1982",
              "matchesPlayed": "9",
              "matchesWon": "5",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "55.56"
            },
            {
              "value": "1983",
              "matchesPlayed": "19",
              "matchesWon": "9",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "47.37"
            },
            {
              "value": "1984",
              "matchesPlayed": "11",
              "matchesWon": "2",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "18.18"
            },
            {
              "value": "1985",
              "matchesPlayed": "15",
              "matchesWon": "9",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "60"
            },
            {
              "value": "1986",
              "matchesPlayed": "27",
              "matchesWon": "12",
              "matchesLost": "14",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "44.44"
            },
            {
              "value": "1987",
              "matchesPlayed": "22",
              "matchesWon": "12",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "54.55"
            },
            {
              "value": "1988",
              "matchesPlayed": "20",
              "matchesWon": "12",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "value": "1989",
              "matchesPlayed": "18",
              "matchesWon": "4",
              "matchesLost": "13",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "22.22"
            },
            {
              "value": "1990",
              "matchesPlayed": "13",
              "matchesWon": "6",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "46.15"
            },
            {
              "value": "1991",
              "matchesPlayed": "14",
              "matchesWon": "8",
              "matchesLost": "5",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "57.14"
            },
            {
              "value": "1992",
              "matchesPlayed": "21",
              "matchesWon": "6",
              "matchesLost": "14",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "28.57"
            },
            {
              "value": "1993",
              "matchesPlayed": "18",
              "matchesWon": "11",
              "matchesLost": "6",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "61.11"
            },
            {
              "value": "1994",
              "matchesPlayed": "25",
              "matchesWon": "16",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "64"
            },
            {
              "value": "1995",
              "matchesPlayed": "12",
              "matchesWon": "7",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "58.33"
            },
            {
              "value": "1996",
              "matchesPlayed": "32",
              "matchesWon": "13",
              "matchesLost": "18",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "40.63"
            },
            {
              "value": "1997",
              "matchesPlayed": "39",
              "matchesWon": "10",
              "matchesLost": "23",
              "matchesTied": "1",
              "noResult": "5",
              "winPercentage": "25.64"
            },
            {
              "value": "1998",
              "matchesPlayed": "40",
              "matchesWon": "24",
              "matchesLost": "14",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "60"
            },
            {
              "value": "1999",
              "matchesPlayed": "43",
              "matchesWon": "21",
              "matchesLost": "20",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "48.84"
            },
            {
              "value": "2000",
              "matchesPlayed": "34",
              "matchesWon": "15",
              "matchesLost": "19",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "44.12"
            },
            {
              "value": "2001",
              "matchesPlayed": "24",
              "matchesWon": "12",
              "matchesLost": "12",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "2002",
              "matchesPlayed": "35",
              "matchesWon": "19",
              "matchesLost": "13",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "54.29"
            },
            {
              "value": "2003",
              "matchesPlayed": "28",
              "matchesWon": "16",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "57.14"
            },
            {
              "value": "2004",
              "matchesPlayed": "32",
              "matchesWon": "15",
              "matchesLost": "16",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "46.88"
            },
            {
              "value": "2005",
              "matchesPlayed": "27",
              "matchesWon": "15",
              "matchesLost": "12",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "55.56"
            },
            {
              "value": "2006",
              "matchesPlayed": "30",
              "matchesWon": "13",
              "matchesLost": "15",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "43.33"
            },
            {
              "value": "2007",
              "matchesPlayed": "37",
              "matchesWon": "20",
              "matchesLost": "15",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "54.05"
            },
            {
              "value": "2008",
              "matchesPlayed": "29",
              "matchesWon": "19",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "65.52"
            },
            {
              "value": "2009",
              "matchesPlayed": "31",
              "matchesWon": "17",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "54.84"
            },
            {
              "value": "2010",
              "matchesPlayed": "27",
              "matchesWon": "17",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "62.96"
            },
            {
              "value": "2011",
              "matchesPlayed": "34",
              "matchesWon": "21",
              "matchesLost": "10",
              "matchesTied": "2",
              "noResult": "1",
              "winPercentage": "61.76"
            },
            {
              "value": "2012",
              "matchesPlayed": "17",
              "matchesWon": "9",
              "matchesLost": "7",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "52.94"
            },
            {
              "value": "2013",
              "matchesPlayed": "34",
              "matchesWon": "22",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "64.71"
            },
            {
              "value": "2014",
              "matchesPlayed": "24",
              "matchesWon": "14",
              "matchesLost": "8",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "58.33"
            },
            {
              "value": "2015",
              "matchesPlayed": "23",
              "matchesWon": "13",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "56.52"
            },
            {
              "value": "2016",
              "matchesPlayed": "13",
              "matchesWon": "7",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "53.85"
            },
            {
              "value": "2017",
              "matchesPlayed": "29",
              "matchesWon": "21",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "72.41"
            },
            {
              "value": "2018",
              "matchesPlayed": "20",
              "matchesWon": "14",
              "matchesLost": "4",
              "matchesTied": "2",
              "noResult": "0",
              "winPercentage": "70"
            },
            {
              "value": "2019",
              "matchesPlayed": "28",
              "matchesWon": "19",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "67.86"
            },
            {
              "value": "2020",
              "matchesPlayed": "9",
              "matchesWon": "3",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "value": "2021",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "value": "2022",
              "matchesPlayed": "24",
              "matchesWon": "14",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "58.33"
            },
            {
              "value": "2023",
              "matchesPlayed": "35",
              "matchesWon": "27",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "77.14"
            },
            {
              "value": "2024",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "2025",
              "matchesPlayed": "8",
              "matchesWon": "8",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "lastTwelveMonths": {
          "matchesPlayed": "11",
          "matchesWon": "8",
          "matchesLost": "2",
          "matchesTied": "1",
          "noResult": "0",
          "winPercentage": "72.73",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "66818",
                "name": "Shubman Gill",
                "value": "504",
                "displayText": "Shubman Gill - (504 runs for India)"
              },
              {
                "type": "bowling",
                "id": "63187",
                "name": "Kuldeep Yadav",
                "value": "13",
                "displayText": "Kuldeep Yadav - (13 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3852",
                "name": "Rohit Sharma",
                "value": "119",
                "displayText": "119 by Rohit Sharma v England on February 9, 2025 - India beat England by 4 wickets",
                "isNotOut": "False",
                "against": {
                  "id": "3",
                  "name": "England",
                  "shortName": "ENG"
                },
                "venue": {
                  "id": "12",
                  "name": "Barabati Stadium, Cuttack",
                  "shortName": "Barabati Stadium, Cuttack"
                },
                "matchId": "247157",
                "matchDate": "February 9, 2025",
                "outcome": "India beat England by 4 wickets"
              },
              {
                "type": "bowling",
                "id": "67469",
                "name": "Varun Chakaravarthy",
                "value": "5/42",
                "displayText": "5/42 by Varun Chakaravarthy v New Zealand on March 2, 2025 - India beat New Zealand by 44 runs",
                "against": {
                  "id": "5",
                  "name": "New Zealand",
                  "shortName": "NZ"
                },
                "venue": {
                  "id": "449",
                  "name": "Dubai International Stadium, Dubai",
                  "shortName": "Dubai International Stadium, Dubai"
                },
                "matchId": "255194",
                "matchDate": "03/02/2025",
                "outcome": "India beat New Zealand by 44 runs"
              }
            ]
          },
          "performanceAgainst": {
            "team": [
              {
                "id": "1188",
                "name": "Afghanistan",
                "shortName": "AFG",
                "matchesPlayed": "4",
                "matchesWon": "3",
                "matchesLost": "0",
                "matchesTied": "1",
                "noResult": "0",
                "winPercentage": "75"
              },
              {
                "id": "1",
                "name": "Australia",
                "shortName": "AUS",
                "matchesPlayed": "152",
                "matchesWon": "58",
                "matchesLost": "84",
                "matchesTied": "0",
                "noResult": "10",
                "winPercentage": "38.16"
              },
              {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN",
                "matchesPlayed": "42",
                "matchesWon": "33",
                "matchesLost": "8",
                "matchesTied": "0",
                "noResult": "1",
                "winPercentage": "78.57"
              },
              {
                "id": "11",
                "name": "Bermuda",
                "shortName": "BER",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "24",
                "name": "East Africa",
                "shortName": "EA",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "3",
                "name": "England",
                "shortName": "ENG",
                "matchesPlayed": "110",
                "matchesWon": "61",
                "matchesLost": "44",
                "matchesTied": "2",
                "noResult": "3",
                "winPercentage": "55.45"
              },
              {
                "id": "19",
                "name": "Hong Kong, China",
                "shortName": "HK",
                "matchesPlayed": "2",
                "matchesWon": "2",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "13",
                "name": "Ireland",
                "shortName": "IRE",
                "matchesPlayed": "3",
                "matchesWon": "3",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "14",
                "name": "Kenya",
                "shortName": "KEN",
                "matchesPlayed": "13",
                "matchesWon": "11",
                "matchesLost": "2",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "84.62"
              },
              {
                "id": "20",
                "name": "Namibia",
                "shortName": "NAM",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "637",
                "name": "Nepal",
                "shortName": "NEP",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "15",
                "name": "Netherlands",
                "shortName": "NED",
                "matchesPlayed": "3",
                "matchesWon": "3",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "5",
                "name": "New Zealand",
                "shortName": "NZ",
                "matchesPlayed": "120",
                "matchesWon": "62",
                "matchesLost": "50",
                "matchesTied": "1",
                "noResult": "7",
                "winPercentage": "51.67"
              },
              {
                "id": "6",
                "name": "Pakistan",
                "shortName": "PAK",
                "matchesPlayed": "136",
                "matchesWon": "58",
                "matchesLost": "73",
                "matchesTied": "0",
                "noResult": "5",
                "winPercentage": "42.65"
              },
              {
                "id": "16",
                "name": "Scotland",
                "shortName": "SCO",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "7",
                "name": "South Africa",
                "shortName": "SA",
                "matchesPlayed": "94",
                "matchesWon": "40",
                "matchesLost": "51",
                "matchesTied": "0",
                "noResult": "3",
                "winPercentage": "42.55"
              },
              {
                "id": "8",
                "name": "Sri Lanka",
                "shortName": "SL",
                "matchesPlayed": "171",
                "matchesWon": "99",
                "matchesLost": "59",
                "matchesTied": "2",
                "noResult": "11",
                "winPercentage": "57.89"
              },
              {
                "id": "21",
                "name": "United Arab Emirates",
                "shortName": "UAE",
                "matchesPlayed": "3",
                "matchesWon": "3",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "9",
                "name": "West Indies",
                "shortName": "WI",
                "matchesPlayed": "142",
                "matchesWon": "72",
                "matchesLost": "64",
                "matchesTied": "2",
                "noResult": "4",
                "winPercentage": "50.7"
              },
              {
                "id": "10",
                "name": "Zimbabwe",
                "shortName": "ZIM",
                "matchesPlayed": "66",
                "matchesWon": "54",
                "matchesLost": "10",
                "matchesTied": "2",
                "noResult": "0",
                "winPercentage": "81.82"
              }
            ]
          }
        },
        "manOfTheMatches": {
          "manOfTheMatch": [
            {
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "463",
              "manOfTheMatch": "62"
            },
            {
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "302",
              "manOfTheMatch": "43"
            },
            {
              "id": "1186",
              "name": "Sourav Ganguly",
              "matchesPlayed": "308",
              "manOfTheMatch": "31"
            }
          ]
        },
        "manOfTheSeries": {
          "manOfTheSeries": [
            {
              "id": "2962",
              "name": "Sachin Tendulkar",
              "seriesPlayed": "108",
              "manOfTheSeries": "14"
            },
            {
              "id": "3993",
              "name": "Virat Kohli",
              "seriesPlayed": "73",
              "manOfTheSeries": "10"
            },
            {
              "id": "3676",
              "name": "MS Dhoni",
              "seriesPlayed": "79",
              "manOfTheSeries": "7"
            }
          ]
        },
        "leaders": {
          "mostMatchesPlayed": {
            "stat": "Most Matches Played",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null
          },
          "mostRunsLeader": {
            "stat": "Most Runs",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "highestScore": {
            "stat": "Highest Score",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "mostHundreds": {
            "stat": "Most Hundreds",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "hundreds": null
          },
          "mostFifties": {
            "stat": "Most Fifties",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fifties": null
          },
          "mostFours": {
            "stat": "Most Fours",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fours": null
          },
          "mostSixes": {
            "stat": "Most Sixes",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "sixes": null
          },
          "bestBattingAverage": {
            "stat": "Best Batting Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          },
          "bestStrikeRate": {
            "stat": "Best Strike Rate",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "strikeRate": null
          },
          "mostWickets": {
            "stat": "Most Wickets",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "wickets": null
          },
          "bestBowlingFigure": {
            "stat": "Best Bowling Figure",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "bowlingFigure": null
          },
          "bestEconomy": {
            "stat": "Best Economy",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "economy": null
          },
          "bestBowlingAverage": {
            "stat": "Best Bowling Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          }
        }
      }
    },
    {
      "compTypeId": "3",
      "compType": "T20",
      "leagueId": "0",
      "leagueName": "International",
      "parentId": "0",
      "parentSeriesName": "International",
      "ranking": "1",
      "rating": "271",
      "firstMatch": {
        "matchId": "4823",
        "date": "01/12/2006",
        "outcome": "India beat South Africa by 6 wickets",
        "against": {
          "id": "7",
          "name": "South Africa",
          "shortName": "SA"
        },
        "venue": {
          "id": "111",
          "name": "The Wanderers Stadium, Johannesburg",
          "shortName": "The Wanderers Stadium, Johannesburg"
        }
      },
      "captain": {
        "id": "3852",
        "name": "Rohit Gurunath Sharma",
        "shortName": "Rohit Sharma"
      },
      "championship": {
        "seriesId": "-",
        "seriesName": "-",
        "played": "-",
        "won": "-",
        "lost": "-",
        "draw": "-",
        "pts": "-",
        "form": "-"
      },
      "trophyDetails": null,
      "overall": {
        "matchesPlayed": "247",
        "matchesWon": "165",
        "matchesLost": "71",
        "matchesTied": "6",
        "noResult": "6",
        "winPercentage": "66.8",
        "topPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "3852",
              "name": "Rohit Sharma",
              "matchesPlayed": "159",
              "average": "32.05",
              "value": "4231",
              "displayText": "Rohit Sharma - (4231 runs for India)"
            },
            {
              "type": "bowling",
              "id": "67905",
              "name": "Arshdeep Singh",
              "matchesPlayed": "63",
              "economy": "8.29",
              "value": "99",
              "displayText": "Arshdeep Singh - (99 wickets for India)"
            }
          ]
        },
        "top_3Performers": {
          "record": [
            {
              "type": "batting",
              "id": "3852",
              "name": "Rohit Sharma",
              "matchesPlayed": "159",
              "average": "32.05",
              "value": "4231",
              "displayText": "Rohit Sharma - (4231 runs for India)"
            },
            {
              "type": "batting",
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "125",
              "average": "48.69",
              "value": "4188",
              "displayText": "Virat Kohli - (4188 runs for India)"
            },
            {
              "type": "batting",
              "id": "11803",
              "name": "Suryakumar Yadav",
              "matchesPlayed": "83",
              "average": "38.20",
              "value": "2598",
              "displayText": "Suryakumar Yadav - (2598 runs for India)"
            },
            {
              "type": "bowling",
              "id": "67905",
              "name": "Arshdeep Singh",
              "matchesPlayed": "63",
              "economy": "8.29",
              "value": "99",
              "displayText": "Arshdeep Singh - (99 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "9844",
              "name": "Yuzvendra Chahal",
              "matchesPlayed": "79",
              "economy": "8.19",
              "value": "96",
              "displayText": "Yuzvendra Chahal - (96 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "63751",
              "name": "Hardik Pandya",
              "matchesPlayed": "102",
              "economy": "8.20",
              "value": "94",
              "displayText": "Hardik Pandya - (94 wickets for India)"
            }
          ]
        },
        "higestIndividualPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "66799",
              "name": "Abhishek Sharma",
              "value": "135",
              "displayText": "135 by Abhishek Sharma v England on February 2, 2025 - India beat England by 150 runs",
              "isNotOut": "False",
              "against": {
                "id": "3",
                "name": "England",
                "shortName": "ENG"
              },
              "venue": {
                "id": "168",
                "name": "Wankhede Stadium, Mumbai",
                "shortName": "Wankhede Stadium, Mumbai"
              },
              "matchId": "247155",
              "matchDate": "02/02/2025",
              "outcome": "India beat England by 150 runs"
            },
            {
              "type": "bowling",
              "id": "59547",
              "name": "Deepak Chahar",
              "value": "6/7",
              "displayText": "6/7 by Deepak Chahar v Bangladesh on November 10, 2019 - India beat Bangladesh by 30 runs",
              "against": {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN"
              },
              "venue": {
                "id": "165",
                "name": "Vidarbha Cricket Association Stadium, Nagpur",
                "shortName": "Vidarbha Cricket Association Stadium, Nagpur"
              },
              "matchId": "190931",
              "matchDate": "10/11/2019",
              "outcome": "India beat Bangladesh by 30 runs"
            }
          ]
        },
        "bestIndividualPerformers": {
          "record": [
            {
              "type": "batting",
              "id": "66799",
              "name": "Abhishek Sharma",
              "value": "135",
              "displayText": "135 by Abhishek Sharma v England on February 2, 2025 - r",
              "isNotOut": "False",
              "against": {
                "id": "3",
                "name": "England",
                "shortName": "ENG"
              },
              "venue": {
                "id": "168",
                "name": "Wankhede Stadium, Mumbai",
                "shortName": "Wankhede Stadium, Mumbai"
              },
              "matchId": "247155",
              "matchDate": "02/02/2025",
              "outcome": "r"
            },
            {
              "type": "batting",
              "id": "66818",
              "name": "Shubman Gill",
              "value": "126",
              "displayText": "126* by Shubman Gill v New Zealand on February 1, 2023 - r",
              "isNotOut": "True",
              "against": {
                "id": "5",
                "name": "New Zealand",
                "shortName": "NZ"
              },
              "venue": {
                "id": "137",
                "name": "Narendra Modi Stadium, Ahmedabad",
                "shortName": "Narendra Modi Stadium, Ahmedabad"
              },
              "matchId": "219591",
              "matchDate": "01/02/2023",
              "outcome": "r"
            },
            {
              "type": "batting",
              "id": "66584",
              "name": "Ruturaj Gaikwad",
              "value": "123",
              "displayText": "123* by Ruturaj Gaikwad v Australia on November 28, 2023 - w",
              "isNotOut": "True",
              "against": {
                "id": "1",
                "name": "Australia",
                "shortName": "AUS"
              },
              "venue": {
                "id": "1837",
                "name": "Barsapara Cricket Stadium, Guwahati",
                "shortName": "Barsapara Cricket Stadium, Guwahati"
              },
              "matchId": "230526",
              "matchDate": "28/11/2023",
              "outcome": "w"
            },
            {
              "type": "bowling",
              "id": "59547",
              "name": "Deepak Chahar",
              "value": "6/7",
              "displayText": "6/7 by Deepak Chahar v Bangladesh on November 10, 2019 - r",
              "against": {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN"
              },
              "venue": {
                "id": "165",
                "name": "Vidarbha Cricket Association Stadium, Nagpur",
                "shortName": "Vidarbha Cricket Association Stadium, Nagpur"
              },
              "matchId": "190931",
              "matchDate": "10/11/2019",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "9844",
              "name": "Yuzvendra Chahal",
              "value": "6/25",
              "displayText": "6/25 by Yuzvendra Chahal v England on February 1, 2017 - r",
              "against": {
                "id": "3",
                "name": "England",
                "shortName": "ENG"
              },
              "venue": {
                "id": "90",
                "name": "M.Chinnaswamy Stadium, Bengaluru",
                "shortName": "M.Chinnaswamy Stadium, Bengaluru"
              },
              "matchId": "181714",
              "matchDate": "01/02/2017",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "5132",
              "name": "Bhuvneshwar Kumar",
              "value": "5/4",
              "displayText": "5/4 by Bhuvneshwar Kumar v Afghanistan on September 8, 2022 - r",
              "against": {
                "id": "1188",
                "name": "Afghanistan",
                "shortName": "AFG"
              },
              "venue": {
                "id": "449",
                "name": "Dubai International Stadium, Dubai",
                "shortName": "Dubai International Stadium, Dubai"
              },
              "matchId": "215325",
              "matchDate": "08/09/2022",
              "outcome": "r"
            }
          ]
        },
        "performanceAgainst": {
          "team": [
            {
              "id": "1188",
              "name": "Afghanistan",
              "shortName": "AFG",
              "matchesPlayed": "9",
              "matchesWon": "7",
              "matchesLost": "0",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "77.78",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "215325",
                "matchFilename": "inaf09082022215325",
                "date": "08/09/2022",
                "runs": "212",
                "wicket": "2",
                "overs": "20",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 101 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "91986",
                "matchFilename": "afin1909201291986",
                "date": "19/09/2012",
                "runs": "159",
                "wicket": "5",
                "overs": "20",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 23 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "230522",
                "matchFilename": "inaf01142024230522",
                "date": "14/01/2024",
                "runs": "174",
                "wicket": "4",
                "overs": "15.4",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 6 wickets"
              }
            },
            {
              "id": "1",
              "name": "Australia",
              "shortName": "AUS",
              "matchesPlayed": "32",
              "matchesWon": "20",
              "matchesLost": "11",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "62.5",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "230525",
                "matchFilename": "inau11262023230525",
                "date": "26/11/2023",
                "runs": "235",
                "wicket": "4",
                "overs": "20",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "India beat Australia by 44 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4885",
                "matchFilename": "auin020120084885",
                "date": "01/02/2008",
                "runs": "74",
                "wicket": "10",
                "overs": "17",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "Australia beat India by 9 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "230524",
                "matchFilename": "inau11232023230524",
                "date": "23/11/2023",
                "runs": "210",
                "wicket": "8",
                "overs": "19.5",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "India beat Australia by 2 wickets"
              }
            },
            {
              "id": "2",
              "name": "Bangladesh",
              "shortName": "BAN",
              "matchesPlayed": "17",
              "matchesWon": "16",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "94.12",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "247142",
                "matchFilename": "inba10122024247142",
                "date": "12/10/2024",
                "runs": "297",
                "wicket": "6",
                "overs": "20",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 133 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "180476",
                "matchFilename": "inba03232016180476",
                "date": "23/03/2016",
                "runs": "146",
                "wicket": "7",
                "overs": "20",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 1 run"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "186004",
                "matchFilename": "inba03182018186004",
                "date": "18/03/2018",
                "runs": "169",
                "wicket": "6",
                "overs": "20",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 4 wickets"
              }
            },
            {
              "id": "3",
              "name": "England",
              "shortName": "ENG",
              "matchesPlayed": "29",
              "matchesWon": "17",
              "matchesLost": "12",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "58.62",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "247155",
                "matchFilename": "inen02022025247155",
                "date": "02/02/2025",
                "runs": "247",
                "wicket": "9",
                "overs": "20",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "India beat England by 150 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "91896",
                "matchFilename": "inen1029201191896",
                "date": "29/10/2011",
                "runs": "120",
                "wicket": "9",
                "overs": "20",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "England beat India by 6 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "184498",
                "matchFilename": "enin07082018184498",
                "date": "08/07/2018",
                "runs": "202",
                "wicket": "3",
                "overs": "18.4",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "India beat England by 7 wickets"
              }
            },
            {
              "id": "19",
              "name": "Hong Kong, China",
              "shortName": "HK",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "215318",
                "matchFilename": "inhk08312022215318",
                "date": "31/08/2022",
                "runs": "192",
                "wicket": "2",
                "overs": "20",
                "vsId": "19",
                "vsName": "Hong Kong, China",
                "matchResult": "India beat Hong Kong by 40 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "215318",
                "matchFilename": "inhk08312022215318",
                "date": "31/08/2022",
                "runs": "192",
                "wicket": "2",
                "overs": "20",
                "vsId": "19",
                "vsName": "Hong Kong, China",
                "matchResult": "India beat Hong Kong by 40 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "13",
              "name": "Ireland",
              "shortName": "IRE",
              "matchesPlayed": "8",
              "matchesWon": "8",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "210274",
                "matchFilename": "irin06282022210274",
                "date": "28/06/2022",
                "runs": "225",
                "wicket": "7",
                "overs": "20",
                "vsId": "13",
                "vsName": "Ireland",
                "matchResult": "India beat Ireland by 4 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "229258",
                "matchFilename": "irin08202023229258",
                "date": "20/08/2023",
                "runs": "185",
                "wicket": "5",
                "overs": "20",
                "vsId": "13",
                "vsName": "Ireland",
                "matchResult": "India beat Ireland by 33 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "5156",
                "matchFilename": "inir100620095156",
                "date": "10/06/2009",
                "runs": "114",
                "wicket": "2",
                "overs": "15.3",
                "vsId": "13",
                "vsName": "Ireland",
                "matchResult": "India beat Ireland by 8 wickets"
              }
            },
            {
              "id": "20",
              "name": "Namibia",
              "shortName": "NAM",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "204853",
                "matchFilename": "inna11082021204853",
                "date": "08/11/2021",
                "runs": "137",
                "wicket": "1",
                "overs": "15.2",
                "vsId": "20",
                "vsName": "Namibia",
                "matchResult": "India beat Namibia by 9 wickets"
              }
            },
            {
              "id": "637",
              "name": "Nepal",
              "shortName": "NEP",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "233390",
                "matchFilename": "innp10032023233390",
                "date": "03/10/2023",
                "runs": "202",
                "wicket": "4",
                "overs": "20",
                "vsId": "637",
                "vsName": "Nepal",
                "matchResult": "India beat Nepal by 23 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "233390",
                "matchFilename": "innp10032023233390",
                "date": "03/10/2023",
                "runs": "202",
                "wicket": "4",
                "overs": "20",
                "vsId": "637",
                "vsName": "Nepal",
                "matchResult": "India beat Nepal by 23 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "15",
              "name": "Netherlands",
              "shortName": "NED",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "209258",
                "matchFilename": "nein10272022209258",
                "date": "27/10/2022",
                "runs": "179",
                "wicket": "2",
                "overs": "20",
                "vsId": "15",
                "vsName": "Netherlands",
                "matchResult": "India beat Netherlands by 56 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "209258",
                "matchFilename": "nein10272022209258",
                "date": "27/10/2022",
                "runs": "179",
                "wicket": "2",
                "overs": "20",
                "vsId": "15",
                "vsName": "Netherlands",
                "matchResult": "India beat Netherlands by 56 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "5",
              "name": "New Zealand",
              "shortName": "NZ",
              "matchesPlayed": "25",
              "matchesWon": "12",
              "matchesLost": "10",
              "matchesTied": "3",
              "noResult": "0",
              "winPercentage": "48",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "219591",
                "matchFilename": "innz02012023219591",
                "date": "01/02/2023",
                "runs": "234",
                "wicket": "4",
                "overs": "20",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "India beat New Zealand by 168 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "180464",
                "matchFilename": "innz03152016180464",
                "date": "15/03/2016",
                "runs": "79",
                "wicket": "10",
                "overs": "18",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "New Zealand beat India by 47 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "190969",
                "matchFilename": "nzin01242020190969",
                "date": "24/01/2020",
                "runs": "205",
                "wicket": "4",
                "overs": "19",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "India beat New Zealand by 6 wickets"
              }
            },
            {
              "id": "6",
              "name": "Pakistan",
              "shortName": "PAK",
              "matchesPlayed": "13",
              "matchesWon": "9",
              "matchesLost": "3",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "69.23",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "172178",
                "matchFilename": "inpk12282012172178",
                "date": "28/12/2012",
                "runs": "192",
                "wicket": "5",
                "overs": "20",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 11 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "239621",
                "matchFilename": "inpk06092024239621",
                "date": "09/06/2024",
                "runs": "119",
                "wicket": "10",
                "overs": "19",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 6 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "209250",
                "matchFilename": "inpk10232022209250",
                "date": "23/10/2022",
                "runs": "161",
                "wicket": "6",
                "overs": "20",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 4 wickets"
              }
            },
            {
              "id": "16",
              "name": "Scotland",
              "shortName": "SCO",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "204848",
                "matchFilename": "insc11052021204848",
                "date": "05/11/2021",
                "runs": "90",
                "wicket": "2",
                "overs": "6.3",
                "vsId": "16",
                "vsName": "Scotland",
                "matchResult": "India beat Scotland by 8 wickets"
              }
            },
            {
              "id": "7",
              "name": "South Africa",
              "shortName": "SA",
              "matchesPlayed": "31",
              "matchesWon": "18",
              "matchesLost": "12",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "58.06",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "247174",
                "matchFilename": "sain11152024247174",
                "date": "15/11/2024",
                "runs": "283",
                "wicket": "1",
                "overs": "20",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "India beat South Africa by 135 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "179418",
                "matchFilename": "insa10052015179418",
                "date": "05/10/2015",
                "runs": "92",
                "wicket": "10",
                "overs": "17",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "South Africa beat India by 6 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "175249",
                "matchFilename": "insa04042014175249",
                "date": "04/04/2014",
                "runs": "177",
                "wicket": "4",
                "overs": "19.1",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "India beat South Africa by 6 wickets"
              }
            },
            {
              "id": "8",
              "name": "Sri Lanka",
              "shortName": "SL",
              "matchesPlayed": "32",
              "matchesWon": "22",
              "matchesLost": "9",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "68.75",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "184846",
                "matchFilename": "insl12222017184846",
                "date": "22/12/2017",
                "runs": "260",
                "wicket": "5",
                "overs": "20",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "India beat Sri Lanka by 88 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "202255",
                "matchFilename": "slin07292021202255",
                "date": "29/07/2021",
                "runs": "81",
                "wicket": "8",
                "overs": "20",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Sri Lanka beat India by 7 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "6305",
                "matchFilename": "insl121220096305",
                "date": "12/12/2009",
                "runs": "212",
                "wicket": "4",
                "overs": "19.1",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "India beat Sri Lanka by 6 wickets"
              }
            },
            {
              "id": "21",
              "name": "United Arab Emirates",
              "shortName": "UAE",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "180932",
                "matchFilename": "inua03032016180932",
                "date": "03/03/2016",
                "runs": "83",
                "wicket": "1",
                "overs": "10.1",
                "vsId": "21",
                "vsName": "United Arab Emirates",
                "matchResult": "India beat United Arab Emirates by 9 wickets"
              }
            },
            {
              "id": "22",
              "name": "USA",
              "shortName": "USA",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "239627",
                "matchFilename": "usin06122024239627",
                "date": "12/06/2024",
                "runs": "112",
                "wicket": "3",
                "overs": "18.2",
                "vsId": "22",
                "vsName": "USA",
                "matchResult": "India beat USA by 7 wickets"
              }
            },
            {
              "id": "9",
              "name": "West Indies",
              "shortName": "WI",
              "matchesPlayed": "30",
              "matchesWon": "19",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "63.33",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "181777",
                "matchFilename": "wiin08272016181777",
                "date": "27/08/2016",
                "runs": "244",
                "wicket": "4",
                "overs": "20",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "West Indies beat India by 1 run"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "212537",
                "matchFilename": "wiin08012022212537",
                "date": "01/08/2022",
                "runs": "138",
                "wicket": "10",
                "overs": "19",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "West Indies beat India by 5 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "190934",
                "matchFilename": "inwi12062019190934",
                "date": "06/12/2019",
                "runs": "210",
                "wicket": "4",
                "overs": "18.4",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "India beat West Indies by 6 wickets"
              }
            },
            {
              "id": "10",
              "name": "Zimbabwe",
              "shortName": "ZIM",
              "matchesPlayed": "13",
              "matchesWon": "10",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "76.92",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "241352",
                "matchFilename": "zmin07072024241352",
                "date": "07/07/2024",
                "runs": "234",
                "wicket": "2",
                "overs": "20",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India beat Zimbabwe by 100 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "241351",
                "matchFilename": "zmin07062024241351",
                "date": "06/07/2024",
                "runs": "102",
                "wicket": "10",
                "overs": "19",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "Zimbabwe beat India by 13 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "241354",
                "matchFilename": "zmin07132024241354",
                "date": "13/07/2024",
                "runs": "157",
                "wicket": "0",
                "overs": "15.2",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India beat Zimbabwe by 10 wickets"
              }
            }
          ]
        },
        "homeRecords": {
          "matchesPlayed": "85",
          "matchesWon": "54",
          "matchesLost": "28",
          "matchesTied": "1",
          "noResult": "2",
          "winPercentage": "63.53",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3993",
                "name": "Virat Kohli",
                "value": "1508",
                "displayText": "Virat Kohli - (1508 runs for India)"
              },
              {
                "type": "bowling",
                "id": "9844",
                "name": "Yuzvendra Chahal",
                "value": "44",
                "displayText": "Yuzvendra Chahal - (44 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "66799",
                "name": "Abhishek Sharma",
                "value": "135",
                "displayText": "135 by Abhishek Sharma v England on February 2, 2025 - India beat England by 150 runs",
                "isNotOut": "False",
                "against": {
                  "id": "3",
                  "name": "England",
                  "shortName": "ENG"
                },
                "venue": {
                  "id": "168",
                  "name": "Wankhede Stadium, Mumbai",
                  "shortName": "Wankhede Stadium, Mumbai"
                },
                "matchId": "247155",
                "matchDate": "02/02/2025",
                "outcome": "India beat England by 150 runs"
              },
              {
                "type": "bowling",
                "id": "59547",
                "name": "Deepak Chahar",
                "value": "6/7",
                "displayText": "6/7 by Deepak Chahar v Bangladesh on November 10, 2019 - India beat Bangladesh by 30 runs",
                "against": {
                  "id": "2",
                  "name": "Bangladesh",
                  "shortName": "BAN"
                },
                "venue": {
                  "id": "165",
                  "name": "Vidarbha Cricket Association Stadium, Nagpur",
                  "shortName": "Vidarbha Cricket Association Stadium, Nagpur"
                },
                "matchId": "190931",
                "matchDate": "10/11/2019",
                "outcome": "India beat Bangladesh by 30 runs"
              }
            ]
          }
        },
        "awayRecords": {
          "matchesPlayed": "91",
          "matchesWon": "58",
          "matchesLost": "29",
          "matchesTied": "4",
          "noResult": "1",
          "winPercentage": "63.74",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3852",
                "name": "Rohit Sharma",
                "value": "1210",
                "displayText": "Rohit Sharma - (1210 runs for India)"
              },
              {
                "type": "bowling",
                "id": "63187",
                "name": "Kuldeep Yadav",
                "value": "38",
                "displayText": "Kuldeep Yadav - (38 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "70761",
                "name": "Tilak Varma",
                "value": "120",
                "displayText": "120* by Tilak Varma v South Africa on November 15, 2024 - India beat South Africa by 135 runs",
                "isNotOut": "True",
                "against": {
                  "id": "7",
                  "name": "South Africa",
                  "shortName": "SA"
                },
                "venue": {
                  "id": "111",
                  "name": "The Wanderers Stadium, Johannesburg",
                  "shortName": "The Wanderers Stadium, Johannesburg"
                },
                "matchId": "247174",
                "matchDate": "15/11/2024",
                "outcome": "India beat South Africa by 135 runs"
              },
              {
                "type": "bowling",
                "id": "63187",
                "name": "Kuldeep Yadav",
                "value": "5/17",
                "displayText": "5/17 by Kuldeep Yadav v South Africa on December 14, 2023 - India beat South Africa by 106 runs",
                "against": {
                  "id": "7",
                  "name": "South Africa",
                  "shortName": "SA"
                },
                "venue": {
                  "id": "111",
                  "name": "The Wanderers Stadium, Johannesburg",
                  "shortName": "The Wanderers Stadium, Johannesburg"
                },
                "matchId": "229983",
                "matchDate": "14/12/2023",
                "outcome": "India beat South Africa by 106 runs"
              }
            ]
          }
        },
        "neutralRecords": {
          "matchesPlayed": "71",
          "matchesWon": "53",
          "matchesLost": "14",
          "matchesTied": "1",
          "noResult": "3",
          "winPercentage": "74.65",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3852",
                "name": "Rohit Sharma",
                "value": "1764",
                "displayText": "Rohit Sharma - (1764 runs for India)"
              },
              {
                "type": "bowling",
                "id": "4555",
                "name": "Ravichandran Ashwin",
                "value": "37",
                "displayText": "Ravichandran Ashwin - (37 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3993",
                "name": "Virat Kohli",
                "value": "122",
                "displayText": "122* by Virat Kohli v Afghanistan on September 8, 2022 - India beat Afghanistan by 101 runs",
                "isNotOut": "True",
                "against": {
                  "id": "1188",
                  "name": "Afghanistan",
                  "shortName": "AFG"
                },
                "venue": {
                  "id": "449",
                  "name": "Dubai International Stadium, Dubai",
                  "shortName": "Dubai International Stadium, Dubai"
                },
                "matchId": "215325",
                "matchDate": "08/09/2022",
                "outcome": "India beat Afghanistan by 101 runs"
              },
              {
                "type": "bowling",
                "id": "5132",
                "name": "Bhuvneshwar Kumar",
                "value": "5/4",
                "displayText": "5/4 by Bhuvneshwar Kumar v Afghanistan on September 8, 2022 - India beat Afghanistan by 101 runs",
                "against": {
                  "id": "1188",
                  "name": "Afghanistan",
                  "shortName": "AFG"
                },
                "venue": {
                  "id": "449",
                  "name": "Dubai International Stadium, Dubai",
                  "shortName": "Dubai International Stadium, Dubai"
                },
                "matchId": "215325",
                "matchDate": "08/09/2022",
                "outcome": "India beat Afghanistan by 101 runs"
              }
            ]
          }
        },
        "venuesBasedPerformance": {
          "venue": [
            {
              "id": "1",
              "name": "Australia - Adelaide Oval, Adelaide",
              "shortName": "Adelaide Oval, Adelaide",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "12",
              "name": "India - Barabati Stadium, Cuttack",
              "shortName": "Barabati Stadium, Cuttack",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "15",
              "name": "West Indies - Daren Sammy National Cricket Stadium, Gros Islet",
              "shortName": "Daren Sammy National Cricket Stadium, Gros Islet",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "20",
              "name": "India - Brabourne Stadium, Mumbai",
              "shortName": "Brabourne Stadium, Mumbai",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "22",
              "name": "Australia - The Gabba, Brisbane",
              "shortName": "The Gabba, Brisbane",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "48",
              "name": "India - Eden Gardens, Kolkata",
              "shortName": "Eden Gardens, Kolkata",
              "matchesPlayed": "8",
              "matchesWon": "7",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "87.5"
            },
            {
              "id": "49",
              "name": "New Zealand - Eden Park, Auckland",
              "shortName": "Eden Park, Auckland",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "50",
              "name": "England - Edgbaston, Birmingham",
              "shortName": "Edgbaston, Birmingham",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "54",
              "name": "India - Arun Jaitley Stadium, Delhi",
              "shortName": "Arun Jaitley Stadium, Delhi",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "61",
              "name": "India - Green Park, Kanpur",
              "shortName": "Green Park, Kanpur",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "63",
              "name": "Zimbabwe - Harare Sports Club, Harare",
              "shortName": "Harare Sports Club, Harare",
              "matchesPlayed": "12",
              "matchesWon": "9",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "70",
              "name": "New Zealand - AMI Stadium, Christchurch",
              "shortName": "AMI Stadium, Christchurch",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "82",
              "name": "West Indies - Kensington Oval, Bridgetown",
              "shortName": "Kensington Oval, Bridgetown",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "84",
              "name": "South Africa - Kingsmead, Durban",
              "shortName": "Kingsmead, Durban",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "89",
              "name": "England - Lord's Cricket Ground, London",
              "shortName": "Lord's Cricket Ground, London",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "90",
              "name": "India - M.Chinnaswamy Stadium, Bengaluru",
              "shortName": "M.Chinnaswamy Stadium, Bengaluru",
              "matchesPlayed": "8",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "37.5"
            },
            {
              "id": "91",
              "name": "India - MA Chidambaram Stadium, Chennai",
              "shortName": "MA Chidambaram Stadium, Chennai",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "92",
              "name": "India - Holkar Cricket Stadium, Indore",
              "shortName": "Holkar Cricket Stadium, Indore",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "93",
              "name": "Australia - Manuka Oval, Canberra",
              "shortName": "Manuka Oval, Canberra",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "95",
              "name": "New Zealand - McLean Park, Napier",
              "shortName": "McLean Park, Napier",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "96",
              "name": "Australia - Melbourne Cricket Ground (MCG), Melbourne",
              "shortName": "Melbourne Cricket Ground (MCG), Melbourne",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "111",
              "name": "South Africa - The Wanderers Stadium, Johannesburg",
              "shortName": "The Wanderers Stadium, Johannesburg",
              "matchesPlayed": "7",
              "matchesWon": "5",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "71.43"
            },
            {
              "id": "112",
              "name": "South Africa - Newlands, Cape Town",
              "shortName": "Newlands, Cape Town",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "117",
              "name": "England - Emirates Old Trafford, Manchester",
              "shortName": "Emirates Old Trafford, Manchester",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "125",
              "name": "India - I.S. Bindra Punjab Cricket Association Stadium, Mohali",
              "shortName": "I.S. Bindra Punjab Cricket Association Stadium, Mohali",
              "matchesPlayed": "5",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "80"
            },
            {
              "id": "127",
              "name": "West Indies - Queen's Park Oval, Port of Spain",
              "shortName": "Queen's Park Oval, Port of Spain",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "131",
              "name": "Sri Lanka - R.Premadasa Stadium, Colombo",
              "shortName": "R.Premadasa Stadium, Colombo",
              "matchesPlayed": "15",
              "matchesWon": "11",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "73.33"
            },
            {
              "id": "136",
              "name": "West Indies - Sabina Park, Kingston",
              "shortName": "Sabina Park, Kingston",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "137",
              "name": "India - Narendra Modi Stadium, Ahmedabad",
              "shortName": "Narendra Modi Stadium, Ahmedabad",
              "matchesPlayed": "7",
              "matchesWon": "5",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "71.43"
            },
            {
              "id": "139",
              "name": "India - Sawai Mansingh Stadium, Jaipur",
              "shortName": "Sawai Mansingh Stadium, Jaipur",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "145",
              "name": "Bangladesh - Shere Bangla National Stadium, Mirpur",
              "shortName": "Shere Bangla National Stadium, Mirpur",
              "matchesPlayed": "11",
              "matchesWon": "10",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "90.91"
            },
            {
              "id": "148",
              "name": "West Indies - Sir Vivian Richards Stadium North Sound, Saint Peters",
              "shortName": "Sir Vivian Richards Stadium North Sound, Saint Peters",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "149",
              "name": "England - Sophia Gardens, Cardiff",
              "shortName": "Sophia Gardens, Cardiff",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "150",
              "name": "South Africa - St George's Park, Gqeberha",
              "shortName": "St George's Park, Gqeberha",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "153",
              "name": "South Africa - SuperSport Park, Centurion",
              "shortName": "SuperSport Park, Centurion",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "154",
              "name": "Australia - Sydney Cricket Ground (SCG), Sydney",
              "shortName": "Sydney Cricket Ground (SCG), Sydney",
              "matchesPlayed": "5",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "80"
            },
            {
              "id": "158",
              "name": "India - Rajiv Gandhi International Stadium, Hyderabad",
              "shortName": "Rajiv Gandhi International Stadium, Hyderabad",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "159",
              "name": "England - Utilita Bowl, Southampton",
              "shortName": "Utilita Bowl, Southampton",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "160",
              "name": "England - The Seat Unique Stadium, Bristol",
              "shortName": "The Seat Unique Stadium, Bristol",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "161",
              "name": "England - Trent Bridge, Nottingham",
              "shortName": "Trent Bridge, Nottingham",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "165",
              "name": "India - Vidarbha Cricket Association Stadium, Nagpur",
              "shortName": "Vidarbha Cricket Association Stadium, Nagpur",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "id": "168",
              "name": "India - Wankhede Stadium, Mumbai",
              "shortName": "Wankhede Stadium, Mumbai",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "169",
              "name": "West Indies - Warner Park, Basseterre",
              "shortName": "Warner Park, Basseterre",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "170",
              "name": "New Zealand - Seddon Park, Hamilton",
              "shortName": "Seddon Park, Hamilton",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "171",
              "name": "New Zealand - Sky Stadium, Wellington",
              "shortName": "Sky Stadium, Wellington",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "174",
              "name": "United Arab Emirates - Zayed Cricket Stadium, Abu Dhabi",
              "shortName": "Zayed Cricket Stadium, Abu Dhabi",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "179",
              "name": "West Indies - Guyana National Stadium, Guyana",
              "shortName": "Guyana National Stadium, Guyana",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "185",
              "name": "India - Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium, Visakhapatnam",
              "shortName": "Dr. Y.S. Rajasekhara Reddy ACA-VDCA Cricket Stadium, Visakhapatnam",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "246",
              "name": "India - Niranjan Shah Stadium, Rajkot",
              "shortName": "Niranjan Shah Stadium, Rajkot",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "248",
              "name": "India - Himachal Pradesh Cricket Association Stadium, Dharamsala",
              "shortName": "Himachal Pradesh Cricket Association Stadium, Dharamsala",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "449",
              "name": "United Arab Emirates - Dubai International Stadium, Dubai",
              "shortName": "Dubai International Stadium, Dubai",
              "matchesPlayed": "9",
              "matchesWon": "5",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "55.56"
            },
            {
              "id": "517",
              "name": "Australia - Stadium Australia, Sydney",
              "shortName": "Stadium Australia, Sydney",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "543",
              "name": "Sri Lanka - Pallekele International Cricket Stadium, Kandy",
              "shortName": "Pallekele International Cricket Stadium, Kandy",
              "matchesPlayed": "4",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "543",
              "name": "Sri Lanka - Pallekele International Cricket Stadium, Kandy",
              "shortName": "Pallekele International Cricket Stadium, Kandy",
              "matchesPlayed": "4",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "570",
              "name": "USA - Central Broward Park & Broward County Stadium, Lauderhill",
              "shortName": "Central Broward Park & Broward County Stadium, Lauderhill",
              "matchesPlayed": "8",
              "matchesWon": "5",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "62.5"
            },
            {
              "id": "577",
              "name": "South Africa - Moses Mabhida Stadium, Durban",
              "shortName": "Moses Mabhida Stadium, Durban",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "581",
              "name": "India - JSCA International Stadium Complex, Ranchi",
              "shortName": "JSCA International Stadium Complex, Ranchi",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "1428",
              "name": "India - Shaheed Veer Narayan Singh International Stadium, Raipur",
              "shortName": "Shaheed Veer Narayan Singh International Stadium, Raipur",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1763",
              "name": "India - Maharashtra Cricket Association Stadium, Pune",
              "shortName": "Maharashtra Cricket Association Stadium, Pune",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "id": "1784",
              "name": "Ireland - The Village, Malahide",
              "shortName": "The Village, Malahide",
              "matchesPlayed": "6",
              "matchesWon": "6",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1795",
              "name": "New Zealand - Bay Oval, Mount Maunganui",
              "shortName": "Bay Oval, Mount Maunganui",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1837",
              "name": "India - Barsapara Cricket Stadium, Guwahati",
              "shortName": "Barsapara Cricket Stadium, Guwahati",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "25"
            },
            {
              "id": "1900",
              "name": "India - Bharat Ratna Shri Atal Bihari Vajpayee Ekana Cricket Stadium, Lucknow",
              "shortName": "Bharat Ratna Shri Atal Bihari Vajpayee Ekana Cricket Stadium, Lucknow",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1918",
              "name": "West Indies - Brian Lara Cricket Academy, Tarouba",
              "shortName": "Brian Lara Cricket Academy, Tarouba",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "1919",
              "name": "India - Sports Hub International Cricket stadium, Trivandrum",
              "shortName": "Sports Hub International Cricket stadium, Trivandrum",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "1926",
              "name": "Australia - Perth Stadium, Perth",
              "shortName": "Perth Stadium, Perth",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "2432",
              "name": "China - ZJUT Cricket Field, Hangzhou",
              "shortName": "ZJUT Cricket Field, Hangzhou",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "2518",
              "name": "USA - Nassau County International Cricket Stadium, New York",
              "shortName": "Nassau County International Cricket Stadium, New York",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "2564",
              "name": "India - Shrimant Madhavrao Scindia Cricket Stadium, Gwalior",
              "shortName": "Shrimant Madhavrao Scindia Cricket Stadium, Gwalior",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "listOfCaptains": {
          "captain": [
            {
              "id": "3676",
              "name": "MS Dhoni",
              "shortName": "Dhoni",
              "matchesPlayed": "72",
              "matchesWon": "41",
              "matchesLost": "28",
              "matchesTied": "1",
              "noResult": "2",
              "winPercentage": "56.94"
            },
            {
              "id": "3852",
              "name": "Rohit Sharma",
              "shortName": "Sharma",
              "matchesPlayed": "62",
              "matchesWon": "49",
              "matchesLost": "12",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "79.03"
            },
            {
              "id": "3993",
              "name": "Virat Kohli",
              "shortName": "Kohli",
              "matchesPlayed": "50",
              "matchesWon": "30",
              "matchesLost": "16",
              "matchesTied": "2",
              "noResult": "2",
              "winPercentage": "60"
            },
            {
              "id": "11803",
              "name": "Suryakumar Yadav",
              "shortName": "Yadav",
              "matchesPlayed": "22",
              "matchesWon": "18",
              "matchesLost": "4",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "81.82"
            },
            {
              "id": "63751",
              "name": "Hardik Pandya",
              "shortName": "Pandya",
              "matchesPlayed": "16",
              "matchesWon": "10",
              "matchesLost": "5",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "62.5"
            },
            {
              "id": "65756",
              "name": "Rishabh Pant",
              "shortName": "Pant",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "40"
            },
            {
              "id": "66818",
              "name": "Shubman Gill",
              "shortName": "Gill",
              "matchesPlayed": "5",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "80"
            },
            {
              "id": "3722",
              "name": "Shikhar Dhawan",
              "shortName": "Dhawan",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "66584",
              "name": "Ruturaj Gaikwad",
              "shortName": "Gaikwad",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "3700",
              "name": "Suresh Raina",
              "shortName": "Raina",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "3991",
              "name": "Ajinkya Rahane",
              "shortName": "Rahane",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "63755",
              "name": "Jasprit Bumrah",
              "shortName": "Bumrah",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "60122",
              "name": "KL Rahul",
              "shortName": "Rahul",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "270",
              "name": "Virender Sehwag",
              "shortName": "Sehwag",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "splitByYear": {
          "year": [
            {
              "value": "2006",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "2007",
              "matchesPlayed": "8",
              "matchesWon": "5",
              "matchesLost": "1",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "62.5"
            },
            {
              "value": "2008",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "2009",
              "matchesPlayed": "10",
              "matchesWon": "4",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "40"
            },
            {
              "value": "2010",
              "matchesPlayed": "7",
              "matchesWon": "4",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "57.14"
            },
            {
              "value": "2011",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "2012",
              "matchesPlayed": "14",
              "matchesWon": "8",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "57.14"
            },
            {
              "value": "2013",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "2014",
              "matchesPlayed": "7",
              "matchesWon": "5",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "71.43"
            },
            {
              "value": "2015",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "25"
            },
            {
              "value": "2016",
              "matchesPlayed": "21",
              "matchesWon": "15",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "71.43"
            },
            {
              "value": "2017",
              "matchesPlayed": "13",
              "matchesWon": "9",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "69.23"
            },
            {
              "value": "2018",
              "matchesPlayed": "19",
              "matchesWon": "14",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "73.68"
            },
            {
              "value": "2019",
              "matchesPlayed": "16",
              "matchesWon": "9",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "56.25"
            },
            {
              "value": "2020",
              "matchesPlayed": "11",
              "matchesWon": "7",
              "matchesLost": "1",
              "matchesTied": "2",
              "noResult": "1",
              "winPercentage": "63.64"
            },
            {
              "value": "2021",
              "matchesPlayed": "16",
              "matchesWon": "10",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "62.5"
            },
            {
              "value": "2022",
              "matchesPlayed": "40",
              "matchesWon": "28",
              "matchesLost": "10",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "70"
            },
            {
              "value": "2023",
              "matchesPlayed": "23",
              "matchesWon": "15",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "65.22"
            },
            {
              "value": "2024",
              "matchesPlayed": "26",
              "matchesWon": "23",
              "matchesLost": "2",
              "matchesTied": "2",
              "noResult": "0",
              "winPercentage": "88.46"
            },
            {
              "value": "2025",
              "matchesPlayed": "5",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "80"
            }
          ]
        },
        "lastTwelveMonths": {
          "matchesPlayed": "26",
          "matchesWon": "23",
          "matchesLost": "3",
          "matchesTied": "1",
          "noResult": "0",
          "winPercentage": "88.46",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "66799",
                "name": "Abhishek Sharma",
                "value": "535",
                "displayText": "Abhishek Sharma - (535 runs for India)"
              },
              {
                "type": "bowling",
                "id": "67905",
                "name": "Arshdeep Singh",
                "value": "34",
                "displayText": "Arshdeep Singh - (34 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "66799",
                "name": "Abhishek Sharma",
                "value": "135",
                "displayText": "135 by Abhishek Sharma v England on February 2, 2025 - India beat England by 150 runs",
                "isNotOut": "False",
                "against": {
                  "id": "3",
                  "name": "England",
                  "shortName": "ENG"
                },
                "venue": {
                  "id": "168",
                  "name": "Wankhede Stadium, Mumbai",
                  "shortName": "Wankhede Stadium, Mumbai"
                },
                "matchId": "247155",
                "matchDate": "February 2, 2025",
                "outcome": "India beat England by 150 runs"
              },
              {
                "type": "bowling",
                "id": "67469",
                "name": "Varun Chakaravarthy",
                "value": "5/17",
                "displayText": "5/17 by Varun Chakaravarthy v South Africa on November 10, 2024 - South Africa beat India by 3 wickets",
                "against": {
                  "id": "7",
                  "name": "South Africa",
                  "shortName": "SA"
                },
                "venue": {
                  "id": "150",
                  "name": "St George's Park, Gqeberha",
                  "shortName": "St George's Park, Gqeberha"
                },
                "matchId": "247172",
                "matchDate": "11/10/2024",
                "outcome": "South Africa beat India by 3 wickets"
              }
            ]
          },
          "performanceAgainst": {
            "team": [
              {
                "id": "1188",
                "name": "Afghanistan",
                "shortName": "AFG",
                "matchesPlayed": "9",
                "matchesWon": "7",
                "matchesLost": "0",
                "matchesTied": "1",
                "noResult": "1",
                "winPercentage": "77.78"
              },
              {
                "id": "1",
                "name": "Australia",
                "shortName": "AUS",
                "matchesPlayed": "32",
                "matchesWon": "20",
                "matchesLost": "11",
                "matchesTied": "0",
                "noResult": "1",
                "winPercentage": "62.5"
              },
              {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN",
                "matchesPlayed": "17",
                "matchesWon": "16",
                "matchesLost": "1",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "94.12"
              },
              {
                "id": "3",
                "name": "England",
                "shortName": "ENG",
                "matchesPlayed": "29",
                "matchesWon": "17",
                "matchesLost": "12",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "58.62"
              },
              {
                "id": "19",
                "name": "Hong Kong, China",
                "shortName": "HK",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "13",
                "name": "Ireland",
                "shortName": "IRE",
                "matchesPlayed": "8",
                "matchesWon": "8",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "20",
                "name": "Namibia",
                "shortName": "NAM",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "637",
                "name": "Nepal",
                "shortName": "NEP",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "15",
                "name": "Netherlands",
                "shortName": "NED",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "5",
                "name": "New Zealand",
                "shortName": "NZ",
                "matchesPlayed": "25",
                "matchesWon": "12",
                "matchesLost": "10",
                "matchesTied": "3",
                "noResult": "0",
                "winPercentage": "48"
              },
              {
                "id": "6",
                "name": "Pakistan",
                "shortName": "PAK",
                "matchesPlayed": "13",
                "matchesWon": "9",
                "matchesLost": "3",
                "matchesTied": "1",
                "noResult": "0",
                "winPercentage": "69.23"
              },
              {
                "id": "16",
                "name": "Scotland",
                "shortName": "SCO",
                "matchesPlayed": "2",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "1",
                "winPercentage": "50"
              },
              {
                "id": "7",
                "name": "South Africa",
                "shortName": "SA",
                "matchesPlayed": "31",
                "matchesWon": "18",
                "matchesLost": "12",
                "matchesTied": "0",
                "noResult": "1",
                "winPercentage": "58.06"
              },
              {
                "id": "8",
                "name": "Sri Lanka",
                "shortName": "SL",
                "matchesPlayed": "32",
                "matchesWon": "22",
                "matchesLost": "9",
                "matchesTied": "1",
                "noResult": "1",
                "winPercentage": "68.75"
              },
              {
                "id": "21",
                "name": "United Arab Emirates",
                "shortName": "UAE",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "22",
                "name": "USA",
                "shortName": "USA",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "9",
                "name": "West Indies",
                "shortName": "WI",
                "matchesPlayed": "30",
                "matchesWon": "19",
                "matchesLost": "10",
                "matchesTied": "0",
                "noResult": "1",
                "winPercentage": "63.33"
              },
              {
                "id": "10",
                "name": "Zimbabwe",
                "shortName": "ZIM",
                "matchesPlayed": "13",
                "matchesWon": "10",
                "matchesLost": "3",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "76.92"
              }
            ]
          }
        },
        "manOfTheMatches": {
          "manOfTheMatch": [
            {
              "id": "11803",
              "name": "Suryakumar Yadav",
              "matchesPlayed": "83",
              "manOfTheMatch": "16"
            },
            {
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "125",
              "manOfTheMatch": "16"
            },
            {
              "id": "3852",
              "name": "Rohit Sharma",
              "matchesPlayed": "159",
              "manOfTheMatch": "14"
            }
          ]
        },
        "manOfTheSeries": {
          "manOfTheSeries": [
            {
              "id": "3993",
              "name": "Virat Kohli",
              "seriesPlayed": "46",
              "manOfTheSeries": "7"
            },
            {
              "id": "11803",
              "name": "Suryakumar Yadav",
              "seriesPlayed": "23",
              "manOfTheSeries": "5"
            },
            {
              "id": "5132",
              "name": "Bhuvneshwar Kumar",
              "seriesPlayed": "33",
              "manOfTheSeries": "3"
            }
          ]
        },
        "leaders": {
          "mostMatchesPlayed": {
            "stat": "Most Matches Played",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null
          },
          "mostRunsLeader": {
            "stat": "Most Runs",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "highestScore": {
            "stat": "Highest Score",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "mostHundreds": {
            "stat": "Most Hundreds",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "hundreds": null
          },
          "mostFifties": {
            "stat": "Most Fifties",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fifties": null
          },
          "mostFours": {
            "stat": "Most Fours",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fours": null
          },
          "mostSixes": {
            "stat": "Most Sixes",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "sixes": null
          },
          "bestBattingAverage": {
            "stat": "Best Batting Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          },
          "bestStrikeRate": {
            "stat": "Best Strike Rate",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "strikeRate": null
          },
          "mostWickets": {
            "stat": "Most Wickets",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "wickets": null
          },
          "bestBowlingFigure": {
            "stat": "Best Bowling Figure",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "bowlingFigure": null
          },
          "bestEconomy": {
            "stat": "Best Economy",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "economy": null
          },
          "bestBowlingAverage": {
            "stat": "Best Bowling Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          }
        }
      }
    },
    {
      "compTypeId": "3",
      "compType": "T20",
      "leagueId": "15",
      "leagueName": "ICC World Twenty20",
      "parentId": "15",
      "parentSeriesName": "ICC World Twenty20",
      "ranking": "1",
      "rating": "271",
      "firstMatch": {
        "matchId": "4845",
        "date": "16/09/2007",
        "outcome": "New Zealand beat India by 10 runs",
        "against": {
          "id": "5",
          "name": "New Zealand",
          "shortName": "NZ"
        },
        "venue": {
          "id": "111",
          "name": "The Wanderers Stadium, Johannesburg",
          "shortName": "The Wanderers Stadium, Johannesburg"
        }
      },
      "captain": {
        "id": "3852",
        "name": "Rohit Gurunath Sharma",
        "shortName": "Rohit Sharma"
      },
      "championship": {
        "seriesId": "-",
        "seriesName": "-",
        "played": "-",
        "won": "-",
        "lost": "-",
        "draw": "-",
        "pts": "-",
        "form": "-"
      },
      "trophyDetails": null,
      "overall": {
        "matchesPlayed": "52",
        "matchesWon": "35",
        "matchesLost": "15",
        "matchesTied": "1",
        "noResult": "1",
        "winPercentage": "67.31",
        "topPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "35",
              "average": "58.72",
              "value": "1292",
              "displayText": "Virat Kohli - (1292 runs for India)"
            },
            {
              "type": "bowling",
              "id": "4555",
              "name": "Ravichandran Ashwin",
              "matchesPlayed": "24",
              "economy": "6.49",
              "value": "32",
              "displayText": "Ravichandran Ashwin - (32 wickets for India)"
            }
          ]
        },
        "top_3Performers": {
          "record": [
            {
              "type": "batting",
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "35",
              "average": "58.72",
              "value": "1292",
              "displayText": "Virat Kohli - (1292 runs for India)"
            },
            {
              "type": "batting",
              "id": "3852",
              "name": "Rohit Sharma",
              "matchesPlayed": "47",
              "average": "34.85",
              "value": "1220",
              "displayText": "Rohit Sharma - (1220 runs for India)"
            },
            {
              "type": "batting",
              "id": "3314",
              "name": "Yuvraj Singh",
              "matchesPlayed": "31",
              "average": "23.72",
              "value": "593",
              "displayText": "Yuvraj Singh - (593 runs for India)"
            },
            {
              "type": "bowling",
              "id": "4555",
              "name": "Ravichandran Ashwin",
              "matchesPlayed": "24",
              "economy": "6.49",
              "value": "32",
              "displayText": "Ravichandran Ashwin - (32 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "67905",
              "name": "Arshdeep Singh",
              "matchesPlayed": "14",
              "economy": "7.42",
              "value": "27",
              "displayText": "Arshdeep Singh - (27 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "63755",
              "name": "Jasprit Bumrah",
              "matchesPlayed": "18",
              "economy": "5.44",
              "value": "26",
              "displayText": "Jasprit Bumrah - (26 wickets for India)"
            }
          ]
        },
        "higestIndividualPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "3700",
              "name": "Suresh Raina",
              "value": "101",
              "displayText": "101 by Suresh Raina v South Africa on May 2, 2010 - India beat South Africa by 14 runs",
              "isNotOut": "False",
              "against": {
                "id": "7",
                "name": "South Africa",
                "shortName": "SA"
              },
              "venue": {
                "id": "15",
                "name": "Daren Sammy National Cricket Stadium, Gros Islet",
                "shortName": "Daren Sammy National Cricket Stadium, Gros Islet"
              },
              "matchId": "7604",
              "matchDate": "02/05/2010",
              "outcome": "India beat South Africa by 14 runs"
            },
            {
              "type": "bowling",
              "id": "67905",
              "name": "Arshdeep Singh",
              "value": "4/9",
              "displayText": "4/9 by Arshdeep Singh v USA on June 12, 2024 - India beat USA by 7 wickets",
              "against": {
                "id": "22",
                "name": "USA",
                "shortName": "USA"
              },
              "venue": {
                "id": "2518",
                "name": "Nassau County International Cricket Stadium, New York",
                "shortName": "Nassau County International Cricket Stadium, New York"
              },
              "matchId": "239627",
              "matchDate": "12/06/2024",
              "outcome": "India beat USA by 7 wickets"
            }
          ]
        },
        "bestIndividualPerformers": {
          "record": [
            {
              "type": "batting",
              "id": "66799",
              "name": "Abhishek Sharma",
              "value": "135",
              "displayText": "135 by Abhishek Sharma v England on February 2, 2025 - r",
              "isNotOut": "False",
              "against": {
                "id": "3",
                "name": "England",
                "shortName": "ENG"
              },
              "venue": {
                "id": "168",
                "name": "Wankhede Stadium, Mumbai",
                "shortName": "Wankhede Stadium, Mumbai"
              },
              "matchId": "247155",
              "matchDate": "02/02/2025",
              "outcome": "r"
            },
            {
              "type": "batting",
              "id": "66818",
              "name": "Shubman Gill",
              "value": "126",
              "displayText": "126* by Shubman Gill v New Zealand on February 1, 2023 - r",
              "isNotOut": "True",
              "against": {
                "id": "5",
                "name": "New Zealand",
                "shortName": "NZ"
              },
              "venue": {
                "id": "137",
                "name": "Narendra Modi Stadium, Ahmedabad",
                "shortName": "Narendra Modi Stadium, Ahmedabad"
              },
              "matchId": "219591",
              "matchDate": "01/02/2023",
              "outcome": "r"
            },
            {
              "type": "batting",
              "id": "66584",
              "name": "Ruturaj Gaikwad",
              "value": "123",
              "displayText": "123* by Ruturaj Gaikwad v Australia on November 28, 2023 - w",
              "isNotOut": "True",
              "against": {
                "id": "1",
                "name": "Australia",
                "shortName": "AUS"
              },
              "venue": {
                "id": "1837",
                "name": "Barsapara Cricket Stadium, Guwahati",
                "shortName": "Barsapara Cricket Stadium, Guwahati"
              },
              "matchId": "230526",
              "matchDate": "28/11/2023",
              "outcome": "w"
            },
            {
              "type": "bowling",
              "id": "59547",
              "name": "Deepak Chahar",
              "value": "6/7",
              "displayText": "6/7 by Deepak Chahar v Bangladesh on November 10, 2019 - r",
              "against": {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN"
              },
              "venue": {
                "id": "165",
                "name": "Vidarbha Cricket Association Stadium, Nagpur",
                "shortName": "Vidarbha Cricket Association Stadium, Nagpur"
              },
              "matchId": "190931",
              "matchDate": "10/11/2019",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "9844",
              "name": "Yuzvendra Chahal",
              "value": "6/25",
              "displayText": "6/25 by Yuzvendra Chahal v England on February 1, 2017 - r",
              "against": {
                "id": "3",
                "name": "England",
                "shortName": "ENG"
              },
              "venue": {
                "id": "90",
                "name": "M.Chinnaswamy Stadium, Bengaluru",
                "shortName": "M.Chinnaswamy Stadium, Bengaluru"
              },
              "matchId": "181714",
              "matchDate": "01/02/2017",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "5132",
              "name": "Bhuvneshwar Kumar",
              "value": "5/4",
              "displayText": "5/4 by Bhuvneshwar Kumar v Afghanistan on September 8, 2022 - r",
              "against": {
                "id": "1188",
                "name": "Afghanistan",
                "shortName": "AFG"
              },
              "venue": {
                "id": "449",
                "name": "Dubai International Stadium, Dubai",
                "shortName": "Dubai International Stadium, Dubai"
              },
              "matchId": "215325",
              "matchDate": "08/09/2022",
              "outcome": "r"
            }
          ]
        },
        "performanceAgainst": {
          "team": [
            {
              "id": "1188",
              "name": "Afghanistan",
              "shortName": "AFG",
              "matchesPlayed": "4",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "204844",
                "matchFilename": "inaf11032021204844",
                "date": "03/11/2021",
                "runs": "210",
                "wicket": "2",
                "overs": "20",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 66 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "91986",
                "matchFilename": "afin1909201291986",
                "date": "19/09/2012",
                "runs": "159",
                "wicket": "5",
                "overs": "20",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 23 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "7512",
                "matchFilename": "afin010520107512",
                "date": "01/05/2010",
                "runs": "117",
                "wicket": "3",
                "overs": "14.5",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 7 wickets"
              }
            },
            {
              "id": "1",
              "name": "Australia",
              "shortName": "AUS",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "239653",
                "matchFilename": "auin06242024239653",
                "date": "24/06/2024",
                "runs": "205",
                "wicket": "5",
                "overs": "20",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "India beat Australia by 24 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "7744",
                "matchFilename": "auin070520107744",
                "date": "07/05/2010",
                "runs": "135",
                "wicket": "10",
                "overs": "17",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "Australia beat India by 49 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "180481",
                "matchFilename": "inau03272016180481",
                "date": "27/03/2016",
                "runs": "162",
                "wicket": "4",
                "overs": "19.1",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "India beat Australia by 6 wickets"
              }
            },
            {
              "id": "2",
              "name": "Bangladesh",
              "shortName": "BAN",
              "matchesPlayed": "5",
              "matchesWon": "5",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "239649",
                "matchFilename": "inba06222024239649",
                "date": "22/06/2024",
                "runs": "196",
                "wicket": "5",
                "overs": "20",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 50 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "180476",
                "matchFilename": "inba03232016180476",
                "date": "23/03/2016",
                "runs": "146",
                "wicket": "7",
                "overs": "20",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 1 run"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "175239",
                "matchFilename": "bain03282014175239",
                "date": "28/03/2014",
                "runs": "142",
                "wicket": "2",
                "overs": "18.3",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 8 wickets"
              }
            },
            {
              "id": "3",
              "name": "England",
              "shortName": "ENG",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4853",
                "matchFilename": "enin190920074853",
                "date": "19/09/2007",
                "runs": "218",
                "wicket": "4",
                "overs": "20",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "India beat England by 18 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "5164",
                "matchFilename": "inen140620095164",
                "date": "14/06/2009",
                "runs": "150",
                "wicket": "5",
                "overs": "20",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "England beat India by 3 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "13",
              "name": "Ireland",
              "shortName": "IRE",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "5156",
                "matchFilename": "inir100620095156",
                "date": "10/06/2009",
                "runs": "114",
                "wicket": "2",
                "overs": "15.3",
                "vsId": "13",
                "vsName": "Ireland",
                "matchResult": "India beat Ireland by 8 wickets"
              }
            },
            {
              "id": "20",
              "name": "Namibia",
              "shortName": "NAM",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "204853",
                "matchFilename": "inna11082021204853",
                "date": "08/11/2021",
                "runs": "137",
                "wicket": "1",
                "overs": "15.2",
                "vsId": "20",
                "vsName": "Namibia",
                "matchResult": "India beat Namibia by 9 wickets"
              }
            },
            {
              "id": "15",
              "name": "Netherlands",
              "shortName": "NED",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "209258",
                "matchFilename": "nein10272022209258",
                "date": "27/10/2022",
                "runs": "179",
                "wicket": "2",
                "overs": "20",
                "vsId": "15",
                "vsName": "Netherlands",
                "matchResult": "India beat Netherlands by 56 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "209258",
                "matchFilename": "nein10272022209258",
                "date": "27/10/2022",
                "runs": "179",
                "wicket": "2",
                "overs": "20",
                "vsId": "15",
                "vsName": "Netherlands",
                "matchResult": "India beat Netherlands by 56 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "5",
              "name": "New Zealand",
              "shortName": "NZ",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4845",
                "matchFilename": "nzin160920074845",
                "date": "16/09/2007",
                "runs": "180",
                "wicket": "9",
                "overs": "20",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "New Zealand beat India by 10 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "180464",
                "matchFilename": "innz03152016180464",
                "date": "15/03/2016",
                "runs": "79",
                "wicket": "10",
                "overs": "18",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "New Zealand beat India by 47 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "6",
              "name": "Pakistan",
              "shortName": "PAK",
              "matchesPlayed": "8",
              "matchesWon": "6",
              "matchesLost": "1",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "75",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "209250",
                "matchFilename": "inpk10232022209250",
                "date": "23/10/2022",
                "runs": "160",
                "wicket": "6",
                "overs": "20",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 4 wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "239621",
                "matchFilename": "inpk06092024239621",
                "date": "09/06/2024",
                "runs": "119",
                "wicket": "10",
                "overs": "19",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 6 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "209250",
                "matchFilename": "inpk10232022209250",
                "date": "23/10/2022",
                "runs": "161",
                "wicket": "6",
                "overs": "20",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 4 wickets"
              }
            },
            {
              "id": "16",
              "name": "Scotland",
              "shortName": "SCO",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "204848",
                "matchFilename": "insc11052021204848",
                "date": "05/11/2021",
                "runs": "90",
                "wicket": "2",
                "overs": "6.3",
                "vsId": "16",
                "vsName": "Scotland",
                "matchResult": "India beat Scotland by 8 wickets"
              }
            },
            {
              "id": "7",
              "name": "South Africa",
              "shortName": "SA",
              "matchesPlayed": "7",
              "matchesWon": "5",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "71.43",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "7604",
                "matchFilename": "insa020520107604",
                "date": "02/05/2010",
                "runs": "186",
                "wicket": "5",
                "overs": "20",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "India beat South Africa by 14 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "5168",
                "matchFilename": "sain160620095168",
                "date": "16/06/2009",
                "runs": "118",
                "wicket": "8",
                "overs": "20",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "South Africa beat India by 12 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "175249",
                "matchFilename": "insa04042014175249",
                "date": "04/04/2014",
                "runs": "177",
                "wicket": "4",
                "overs": "19.1",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "India beat South Africa by 6 wickets"
              }
            },
            {
              "id": "8",
              "name": "Sri Lanka",
              "shortName": "SL",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "7745",
                "matchFilename": "slin110520107745",
                "date": "11/05/2010",
                "runs": "163",
                "wicket": "5",
                "overs": "20",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Sri Lanka beat India by 5 wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "175250",
                "matchFilename": "slin04062014175250",
                "date": "06/04/2014",
                "runs": "130",
                "wicket": "4",
                "overs": "20",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Sri Lanka beat India by 6 wickets"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "22",
              "name": "USA",
              "shortName": "USA",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "239627",
                "matchFilename": "usin06122024239627",
                "date": "12/06/2024",
                "runs": "112",
                "wicket": "3",
                "overs": "18.2",
                "vsId": "22",
                "vsName": "USA",
                "matchResult": "India beat USA by 7 wickets"
              }
            },
            {
              "id": "9",
              "name": "West Indies",
              "shortName": "WI",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "25",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "180485",
                "matchFilename": "wiin03312016180485",
                "date": "31/03/2016",
                "runs": "192",
                "wicket": "2",
                "overs": "20",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "West Indies beat India by 7 wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "5160",
                "matchFilename": "inwi120620095160",
                "date": "12/06/2009",
                "runs": "153",
                "wicket": "7",
                "overs": "20",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "West Indies beat India by 7 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "175232",
                "matchFilename": "inwi03232014175232",
                "date": "23/03/2014",
                "runs": "131",
                "wicket": "3",
                "overs": "19.4",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "India beat West Indies by 7 wickets"
              }
            },
            {
              "id": "10",
              "name": "Zimbabwe",
              "shortName": "ZIM",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "209309",
                "matchFilename": "zmin11062022209309",
                "date": "06/11/2022",
                "runs": "186",
                "wicket": "5",
                "overs": "20",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India beat Zimbabwe by 71 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "209309",
                "matchFilename": "zmin11062022209309",
                "date": "06/11/2022",
                "runs": "186",
                "wicket": "5",
                "overs": "20",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India beat Zimbabwe by 71 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            }
          ]
        },
        "homeRecords": {
          "matchesPlayed": "5",
          "matchesWon": "3",
          "matchesLost": "2",
          "matchesTied": "0",
          "noResult": "0",
          "winPercentage": "60",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3993",
                "name": "Virat Kohli",
                "value": "273",
                "displayText": "Virat Kohli - (273 runs for India)"
              },
              {
                "type": "bowling",
                "id": "63751",
                "name": "Hardik Pandya",
                "value": "5",
                "displayText": "Hardik Pandya - (5 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3993",
                "name": "Virat Kohli",
                "value": "89",
                "displayText": "89* by Virat Kohli v West Indies on March 31, 2016 - West Indies beat India by 7 wickets",
                "isNotOut": "True",
                "against": {
                  "id": "9",
                  "name": "West Indies",
                  "shortName": "WI"
                },
                "venue": {
                  "id": "168",
                  "name": "Wankhede Stadium, Mumbai",
                  "shortName": "Wankhede Stadium, Mumbai"
                },
                "matchId": "180485",
                "matchDate": "31/03/2016",
                "outcome": "West Indies beat India by 7 wickets"
              },
              {
                "type": "bowling",
                "id": "4555",
                "name": "Ravichandran Ashwin",
                "value": "2/20",
                "displayText": "2/20 by Ravichandran Ashwin v Bangladesh on March 23, 2016 - India beat Bangladesh by 1 run",
                "against": {
                  "id": "2",
                  "name": "Bangladesh",
                  "shortName": "BAN"
                },
                "venue": {
                  "id": "90",
                  "name": "M.Chinnaswamy Stadium, Bengaluru",
                  "shortName": "M.Chinnaswamy Stadium, Bengaluru"
                },
                "matchId": "180476",
                "matchDate": "23/03/2016",
                "outcome": "India beat Bangladesh by 1 run"
              }
            ]
          }
        },
        "awayRecords": {
          "matchesPlayed": "3",
          "matchesWon": "1",
          "matchesLost": "2",
          "matchesTied": "0",
          "noResult": "0",
          "winPercentage": "33.33",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3676",
                "name": "MS Dhoni",
                "value": "104",
                "displayText": "MS Dhoni - (104 runs for India)"
              },
              {
                "type": "bowling",
                "id": "3709",
                "name": "RP Singh",
                "value": "5",
                "displayText": "RP Singh - (5 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "60122",
                "name": "KL Rahul",
                "value": "50",
                "displayText": "50 by KL Rahul v Scotland on November 5, 2021 - India beat Scotland by 8 wickets",
                "isNotOut": "False",
                "against": {
                  "id": "16",
                  "name": "Scotland",
                  "shortName": "SCO"
                },
                "venue": {
                  "id": "449",
                  "name": "Dubai International Stadium, Dubai",
                  "shortName": "Dubai International Stadium, Dubai"
                },
                "matchId": "204848",
                "matchDate": "05/11/2021",
                "outcome": "India beat Scotland by 8 wickets"
              },
              {
                "type": "bowling",
                "id": "4555",
                "name": "Ravichandran Ashwin",
                "value": "4/11",
                "displayText": "4/11 by Ravichandran Ashwin v Australia on March 30, 2014 - India beat Australia by 73 runs",
                "against": {
                  "id": "1",
                  "name": "Australia",
                  "shortName": "AUS"
                },
                "venue": {
                  "id": "145",
                  "name": "Shere Bangla National Stadium, Mirpur",
                  "shortName": "Shere Bangla National Stadium, Mirpur"
                },
                "matchId": "175243",
                "matchDate": "30/03/2014",
                "outcome": "India beat Australia by 73 runs"
              }
            ]
          }
        },
        "neutralRecords": {
          "matchesPlayed": "44",
          "matchesWon": "31",
          "matchesLost": "11",
          "matchesTied": "1",
          "noResult": "1",
          "winPercentage": "70.45",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3852",
                "name": "Rohit Sharma",
                "value": "1068",
                "displayText": "Rohit Sharma - (1068 runs for India)"
              },
              {
                "type": "bowling",
                "id": "4555",
                "name": "Ravichandran Ashwin",
                "value": "28",
                "displayText": "Ravichandran Ashwin - (28 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3700",
                "name": "Suresh Raina",
                "value": "101",
                "displayText": "101 by Suresh Raina v South Africa on May 2, 2010 - India beat South Africa by 14 runs",
                "isNotOut": "False",
                "against": {
                  "id": "7",
                  "name": "South Africa",
                  "shortName": "SA"
                },
                "venue": {
                  "id": "15",
                  "name": "Daren Sammy National Cricket Stadium, Gros Islet",
                  "shortName": "Daren Sammy National Cricket Stadium, Gros Islet"
                },
                "matchId": "7604",
                "matchDate": "02/05/2010",
                "outcome": "India beat South Africa by 14 runs"
              },
              {
                "type": "bowling",
                "id": "67905",
                "name": "Arshdeep Singh",
                "value": "4/9",
                "displayText": "4/9 by Arshdeep Singh v USA on June 12, 2024 - India beat USA by 7 wickets",
                "against": {
                  "id": "22",
                  "name": "USA",
                  "shortName": "USA"
                },
                "venue": {
                  "id": "2518",
                  "name": "Nassau County International Cricket Stadium, New York",
                  "shortName": "Nassau County International Cricket Stadium, New York"
                },
                "matchId": "239627",
                "matchDate": "12/06/2024",
                "outcome": "India beat USA by 7 wickets"
              }
            ]
          }
        },
        "venuesBasedPerformance": {
          "venue": [
            {
              "id": "1",
              "name": "Australia - Adelaide Oval, Adelaide",
              "shortName": "Adelaide Oval, Adelaide",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "15",
              "name": "West Indies - Daren Sammy National Cricket Stadium, Gros Islet",
              "shortName": "Daren Sammy National Cricket Stadium, Gros Islet",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "48",
              "name": "India - Eden Gardens, Kolkata",
              "shortName": "Eden Gardens, Kolkata",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "82",
              "name": "West Indies - Kensington Oval, Bridgetown",
              "shortName": "Kensington Oval, Bridgetown",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "84",
              "name": "South Africa - Kingsmead, Durban",
              "shortName": "Kingsmead, Durban",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "60"
            },
            {
              "id": "89",
              "name": "England - Lord's Cricket Ground, London",
              "shortName": "Lord's Cricket Ground, London",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "90",
              "name": "India - M.Chinnaswamy Stadium, Bengaluru",
              "shortName": "M.Chinnaswamy Stadium, Bengaluru",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "96",
              "name": "Australia - Melbourne Cricket Ground (MCG), Melbourne",
              "shortName": "Melbourne Cricket Ground (MCG), Melbourne",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "111",
              "name": "South Africa - The Wanderers Stadium, Johannesburg",
              "shortName": "The Wanderers Stadium, Johannesburg",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "125",
              "name": "India - I.S. Bindra Punjab Cricket Association Stadium, Mohali",
              "shortName": "I.S. Bindra Punjab Cricket Association Stadium, Mohali",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "131",
              "name": "Sri Lanka - R.Premadasa Stadium, Colombo",
              "shortName": "R.Premadasa Stadium, Colombo",
              "matchesPlayed": "5",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "80"
            },
            {
              "id": "145",
              "name": "Bangladesh - Shere Bangla National Stadium, Mirpur",
              "shortName": "Shere Bangla National Stadium, Mirpur",
              "matchesPlayed": "6",
              "matchesWon": "5",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "83.33"
            },
            {
              "id": "148",
              "name": "West Indies - Sir Vivian Richards Stadium North Sound, Saint Peters",
              "shortName": "Sir Vivian Richards Stadium North Sound, Saint Peters",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "154",
              "name": "Australia - Sydney Cricket Ground (SCG), Sydney",
              "shortName": "Sydney Cricket Ground (SCG), Sydney",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "161",
              "name": "England - Trent Bridge, Nottingham",
              "shortName": "Trent Bridge, Nottingham",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "165",
              "name": "India - Vidarbha Cricket Association Stadium, Nagpur",
              "shortName": "Vidarbha Cricket Association Stadium, Nagpur",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "168",
              "name": "India - Wankhede Stadium, Mumbai",
              "shortName": "Wankhede Stadium, Mumbai",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "174",
              "name": "United Arab Emirates - Zayed Cricket Stadium, Abu Dhabi",
              "shortName": "Zayed Cricket Stadium, Abu Dhabi",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "179",
              "name": "West Indies - Guyana National Stadium, Guyana",
              "shortName": "Guyana National Stadium, Guyana",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "449",
              "name": "United Arab Emirates - Dubai International Stadium, Dubai",
              "shortName": "Dubai International Stadium, Dubai",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "1926",
              "name": "Australia - Perth Stadium, Perth",
              "shortName": "Perth Stadium, Perth",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "2518",
              "name": "USA - Nassau County International Cricket Stadium, New York",
              "shortName": "Nassau County International Cricket Stadium, New York",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "listOfCaptains": {
          "captain": [
            {
              "id": "3676",
              "name": "MS Dhoni",
              "shortName": "Dhoni",
              "matchesPlayed": "33",
              "matchesWon": "20",
              "matchesLost": "11",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "60.61"
            },
            {
              "id": "3852",
              "name": "Rohit Sharma",
              "shortName": "Sharma",
              "matchesPlayed": "14",
              "matchesWon": "12",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "85.71"
            },
            {
              "id": "3993",
              "name": "Virat Kohli",
              "shortName": "Kohli",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            }
          ]
        },
        "splitByYear": {
          "year": [
            {
              "value": "2007",
              "matchesPlayed": "7",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "1",
              "noResult": "1",
              "winPercentage": "57.14"
            },
            {
              "value": "2009",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "40"
            },
            {
              "value": "2010",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "40"
            },
            {
              "value": "2012",
              "matchesPlayed": "5",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "80"
            },
            {
              "value": "2014",
              "matchesPlayed": "6",
              "matchesWon": "5",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "83.33"
            },
            {
              "value": "2016",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "value": "2021",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "60"
            },
            {
              "value": "2022",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "value": "2024",
              "matchesPlayed": "8",
              "matchesWon": "8",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "lastTwelveMonths": {
          "matchesPlayed": "6",
          "matchesWon": "6",
          "matchesLost": "0",
          "matchesTied": "0",
          "noResult": "0",
          "winPercentage": "100",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3852",
                "name": "Rohit Sharma",
                "value": "192",
                "displayText": "Rohit Sharma - (192 runs for India)"
              },
              {
                "type": "bowling",
                "id": "67905",
                "name": "Arshdeep Singh",
                "value": "14",
                "displayText": "Arshdeep Singh - (14 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3852",
                "name": "Rohit Sharma",
                "value": "92",
                "displayText": "92 by Rohit Sharma v Australia on June 24, 2024 - India beat Australia by 24 runs",
                "isNotOut": "False",
                "against": {
                  "id": "1",
                  "name": "Australia",
                  "shortName": "AUS"
                },
                "venue": {
                  "id": "15",
                  "name": "Daren Sammy National Cricket Stadium, Gros Islet",
                  "shortName": "Daren Sammy National Cricket Stadium, Gros Islet"
                },
                "matchId": "239653",
                "matchDate": "June 24, 2024",
                "outcome": "India beat Australia by 24 runs"
              },
              {
                "type": "bowling",
                "id": "67905",
                "name": "Arshdeep Singh",
                "value": "4/9",
                "displayText": "4/9 by Arshdeep Singh v USA on June 12, 2024 - India beat USA by 7 wickets",
                "against": {
                  "id": "22",
                  "name": "USA",
                  "shortName": "USA"
                },
                "venue": {
                  "id": "2518",
                  "name": "Nassau County International Cricket Stadium, New York",
                  "shortName": "Nassau County International Cricket Stadium, New York"
                },
                "matchId": "239627",
                "matchDate": "06/12/2024",
                "outcome": "India beat USA by 7 wickets"
              }
            ]
          },
          "performanceAgainst": {
            "team": [
              {
                "id": "1188",
                "name": "Afghanistan",
                "shortName": "AFG",
                "matchesPlayed": "4",
                "matchesWon": "4",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "1",
                "name": "Australia",
                "shortName": "AUS",
                "matchesPlayed": "6",
                "matchesWon": "4",
                "matchesLost": "2",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "66.67"
              },
              {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN",
                "matchesPlayed": "5",
                "matchesWon": "5",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "3",
                "name": "England",
                "shortName": "ENG",
                "matchesPlayed": "5",
                "matchesWon": "3",
                "matchesLost": "2",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "60"
              },
              {
                "id": "13",
                "name": "Ireland",
                "shortName": "IRE",
                "matchesPlayed": "2",
                "matchesWon": "2",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "20",
                "name": "Namibia",
                "shortName": "NAM",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "15",
                "name": "Netherlands",
                "shortName": "NED",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "5",
                "name": "New Zealand",
                "shortName": "NZ",
                "matchesPlayed": "3",
                "matchesWon": "0",
                "matchesLost": "3",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "0"
              },
              {
                "id": "6",
                "name": "Pakistan",
                "shortName": "PAK",
                "matchesPlayed": "8",
                "matchesWon": "6",
                "matchesLost": "1",
                "matchesTied": "1",
                "noResult": "0",
                "winPercentage": "75"
              },
              {
                "id": "16",
                "name": "Scotland",
                "shortName": "SCO",
                "matchesPlayed": "2",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "1",
                "winPercentage": "50"
              },
              {
                "id": "7",
                "name": "South Africa",
                "shortName": "SA",
                "matchesPlayed": "7",
                "matchesWon": "5",
                "matchesLost": "2",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "71.43"
              },
              {
                "id": "8",
                "name": "Sri Lanka",
                "shortName": "SL",
                "matchesPlayed": "2",
                "matchesWon": "0",
                "matchesLost": "2",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "0"
              },
              {
                "id": "22",
                "name": "USA",
                "shortName": "USA",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              },
              {
                "id": "9",
                "name": "West Indies",
                "shortName": "WI",
                "matchesPlayed": "4",
                "matchesWon": "1",
                "matchesLost": "3",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "25"
              },
              {
                "id": "10",
                "name": "Zimbabwe",
                "shortName": "ZIM",
                "matchesPlayed": "1",
                "matchesWon": "1",
                "matchesLost": "0",
                "matchesTied": "0",
                "noResult": "0",
                "winPercentage": "100"
              }
            ]
          }
        },
        "manOfTheMatches": {
          "manOfTheMatch": [
            {
              "id": "11803",
              "name": "Suryakumar Yadav",
              "matchesPlayed": "83",
              "manOfTheMatch": "16"
            },
            {
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "125",
              "manOfTheMatch": "16"
            },
            {
              "id": "3852",
              "name": "Rohit Sharma",
              "matchesPlayed": "159",
              "manOfTheMatch": "14"
            }
          ]
        },
        "manOfTheSeries": {
          "manOfTheSeries": [
            {
              "id": "3993",
              "name": "Virat Kohli",
              "seriesPlayed": "46",
              "manOfTheSeries": "7"
            },
            {
              "id": "11803",
              "name": "Suryakumar Yadav",
              "seriesPlayed": "23",
              "manOfTheSeries": "5"
            },
            {
              "id": "5132",
              "name": "Bhuvneshwar Kumar",
              "seriesPlayed": "33",
              "manOfTheSeries": "3"
            }
          ]
        },
        "leaders": {
          "mostMatchesPlayed": {
            "stat": "Most Matches Played",
            "playerId": "3852",
            "playerName": "Rohit Sharma",
            "matchesPlayed": "47",
            "inningsPlayed": "47",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4"
          },
          "mostRunsLeader": {
            "stat": "Most Runs",
            "playerId": "3993",
            "playerName": "Virat Kohli",
            "matchesPlayed": "35",
            "inningsPlayed": "35",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "runs": "1292"
          },
          "highestScore": {
            "stat": "Highest Score",
            "playerId": "3700",
            "playerName": "Suresh Raina",
            "matchesPlayed": "26",
            "inningsPlayed": "26",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "runs": "101"
          },
          "mostHundreds": {
            "stat": "Most Hundreds",
            "playerId": "3700",
            "playerName": "Suresh Raina",
            "matchesPlayed": "26",
            "inningsPlayed": "26",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "hundreds": "1"
          },
          "mostFifties": {
            "stat": "Most Fifties",
            "playerId": "3993",
            "playerName": "Virat Kohli",
            "matchesPlayed": "35",
            "inningsPlayed": "35",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "fifties": "15"
          },
          "mostFours": {
            "stat": "Most Fours",
            "playerId": "3852",
            "playerName": "Rohit Sharma",
            "matchesPlayed": "47",
            "inningsPlayed": "47",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "fours": "115"
          },
          "mostSixes": {
            "stat": "Most Sixes",
            "playerId": "3852",
            "playerName": "Rohit Sharma",
            "matchesPlayed": "47",
            "inningsPlayed": "47",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "sixes": "50"
          },
          "bestBattingAverage": {
            "stat": "Best Batting Average",
            "playerId": "3993",
            "playerName": "Virat Kohli",
            "matchesPlayed": "35",
            "inningsPlayed": "35",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "average": "1292"
          },
          "bestStrikeRate": {
            "stat": "Best Strike Rate",
            "playerId": "11803",
            "playerName": "Suryakumar Yadav",
            "matchesPlayed": "18",
            "inningsPlayed": "18",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "strikeRate": "158.94"
          },
          "mostWickets": {
            "stat": "Most Wickets",
            "playerId": "4555",
            "playerName": "Ravichandran Ashwin",
            "matchesPlayed": "24",
            "inningsPlayed": "24",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "wickets": "32"
          },
          "bestBowlingFigure": {
            "stat": "Best Bowling Figure",
            "playerId": "3423",
            "playerName": "Lakshmipathy Balaji",
            "matchesPlayed": "4",
            "inningsPlayed": "4",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "bowlingFigure": "9/88"
          },
          "bestEconomy": {
            "stat": "Best Economy",
            "playerId": "270",
            "playerName": "Virender Sehwag",
            "matchesPlayed": "1",
            "inningsPlayed": "1",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "economy": "20"
          },
          "bestBowlingAverage": {
            "stat": "Best Bowling Average",
            "playerId": "355",
            "playerName": "Ajit Agarkar",
            "matchesPlayed": "2",
            "inningsPlayed": "2",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "average": "75"
          }
        }
      }
    },
    {
      "compTypeId": "2",
      "compType": "ODI",
      "leagueId": "2",
      "leagueName": "ICC Cricket World Cup",
      "parentId": "2",
      "parentSeriesName": "ICC Cricket World Cup",
      "ranking": "1",
      "rating": "124",
      "firstMatch": {
        "matchId": "1950",
        "date": "07/06/1975",
        "outcome": "England beat India by 202 runs",
        "against": {
          "id": "3",
          "name": "England",
          "shortName": "ENG"
        },
        "venue": {
          "id": "89",
          "name": "Lord's Cricket Ground, London",
          "shortName": "Lord's Cricket Ground, London"
        }
      },
      "captain": {
        "id": "3852",
        "name": "Rohit Gurunath Sharma",
        "shortName": "Rohit Sharma"
      },
      "championship": {
        "seriesId": "-",
        "seriesName": "-",
        "played": "-",
        "won": "-",
        "lost": "-",
        "draw": "-",
        "pts": "-",
        "form": "-"
      },
      "trophyDetails": null,
      "overall": {
        "matchesPlayed": "95",
        "matchesWon": "63",
        "matchesLost": "30",
        "matchesTied": "1",
        "noResult": "1",
        "winPercentage": "66.32",
        "topPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "45",
              "average": "56.95",
              "value": "2278",
              "displayText": "Sachin Tendulkar - (2278 runs for India)"
            },
            {
              "type": "bowling",
              "id": "28994",
              "name": "Mohammad Shami",
              "matchesPlayed": "18",
              "economy": "5.13",
              "value": "55",
              "displayText": "Mohammad Shami - (55 wickets for India)"
            }
          ]
        },
        "top_3Performers": {
          "record": [
            {
              "type": "batting",
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "45",
              "average": "56.95",
              "value": "2278",
              "displayText": "Sachin Tendulkar - (2278 runs for India)"
            },
            {
              "type": "batting",
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "37",
              "average": "59.83",
              "value": "1795",
              "displayText": "Virat Kohli - (1795 runs for India)"
            },
            {
              "type": "batting",
              "id": "3852",
              "name": "Rohit Sharma",
              "matchesPlayed": "28",
              "average": "60.57",
              "value": "1575",
              "displayText": "Rohit Sharma - (1575 runs for India)"
            },
            {
              "type": "bowling",
              "id": "28994",
              "name": "Mohammad Shami",
              "matchesPlayed": "18",
              "economy": "5.13",
              "value": "55",
              "displayText": "Mohammad Shami - (55 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "1717",
              "name": "Zaheer Khan",
              "matchesPlayed": "23",
              "economy": "4.47",
              "value": "44",
              "displayText": "Zaheer Khan - (44 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "2848",
              "name": "Javagal Srinath",
              "matchesPlayed": "33",
              "economy": "4.32",
              "value": "44",
              "displayText": "Javagal Srinath - (44 wickets for India)"
            }
          ]
        },
        "higestIndividualPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "1186",
              "name": "Sourav Ganguly",
              "value": "183",
              "displayText": "183 by Sourav Ganguly v Sri Lanka on May 26, 1999 - India beat Sri Lanka by 157 runs",
              "isNotOut": "False",
              "against": {
                "id": "8",
                "name": "Sri Lanka",
                "shortName": "SL"
              },
              "venue": {
                "id": "40",
                "name": "The Cooper Associates County Ground, Taunton",
                "shortName": "The Cooper Associates County Ground, Taunton"
              },
              "matchId": "3391",
              "matchDate": "26/05/1999",
              "outcome": "India beat Sri Lanka by 157 runs"
            },
            {
              "type": "bowling",
              "id": "28994",
              "name": "Mohammad Shami",
              "value": "7/57",
              "displayText": "7/57 by Mohammad Shami v New Zealand on November 15, 2023 - India beat New Zealand by 70 runs",
              "against": {
                "id": "5",
                "name": "New Zealand",
                "shortName": "NZ"
              },
              "venue": {
                "id": "168",
                "name": "Wankhede Stadium, Mumbai",
                "shortName": "Wankhede Stadium, Mumbai"
              },
              "matchId": "228844",
              "matchDate": "15/11/2023",
              "outcome": "India beat New Zealand by 70 runs"
            }
          ]
        },
        "bestIndividualPerformers": {
          "record": [
            {
              "type": "batting",
              "id": "3852",
              "name": "Rohit Sharma",
              "value": "264",
              "displayText": "264 by Rohit Sharma v Sri Lanka on November 13, 2014 - r",
              "isNotOut": "False",
              "against": {
                "id": "8",
                "name": "Sri Lanka",
                "shortName": "SL"
              },
              "venue": {
                "id": "48",
                "name": "Eden Gardens, Kolkata",
                "shortName": "Eden Gardens, Kolkata"
              },
              "matchId": "177521",
              "matchDate": "13/11/2014",
              "outcome": "r"
            },
            {
              "type": "batting",
              "id": "270",
              "name": "Virender Sehwag",
              "value": "219",
              "displayText": "219 by Virender Sehwag v West Indies on December 8, 2011 - r",
              "isNotOut": "False",
              "against": {
                "id": "9",
                "name": "West Indies",
                "shortName": "WI"
              },
              "venue": {
                "id": "92",
                "name": "Holkar Cricket Stadium, Indore",
                "shortName": "Holkar Cricket Stadium, Indore"
              },
              "matchId": "92241",
              "matchDate": "08/12/2011",
              "outcome": "r"
            },
            {
              "type": "batting",
              "id": "64712",
              "name": "Ishan Kishan",
              "value": "210",
              "displayText": "210 by Ishan Kishan v Bangladesh on December 10, 2022 - r",
              "isNotOut": "False",
              "against": {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN"
              },
              "venue": {
                "id": "181",
                "name": "Zahur Ahmed Chowdhury Stadium, Chattogram",
                "shortName": "Zahur Ahmed Chowdhury Stadium, Chattogram"
              },
              "matchId": "218323",
              "matchDate": "10/12/2022",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "28994",
              "name": "Mohammad Shami",
              "value": "7/57",
              "displayText": "7/57 by Mohammad Shami v New Zealand on November 15, 2023 - r",
              "against": {
                "id": "5",
                "name": "New Zealand",
                "shortName": "NZ"
              },
              "venue": {
                "id": "168",
                "name": "Wankhede Stadium, Mumbai",
                "shortName": "Wankhede Stadium, Mumbai"
              },
              "matchId": "228844",
              "matchDate": "15/11/2023",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "4178",
              "name": "Stuart Binny",
              "value": "6/4",
              "displayText": "6/4 by Stuart Binny v Bangladesh on June 17, 2014 - r",
              "against": {
                "id": "2",
                "name": "Bangladesh",
                "shortName": "BAN"
              },
              "venue": {
                "id": "145",
                "name": "Shere Bangla National Stadium, Mirpur",
                "shortName": "Shere Bangla National Stadium, Mirpur"
              },
              "matchId": "176432",
              "matchDate": "17/06/2014",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "value": "6/12",
              "displayText": "6/12 by Anil Kumble v West Indies on November 27, 1993 - r",
              "against": {
                "id": "9",
                "name": "West Indies",
                "shortName": "WI"
              },
              "venue": {
                "id": "48",
                "name": "Eden Gardens, Kolkata",
                "shortName": "Eden Gardens, Kolkata"
              },
              "matchId": "2786",
              "matchDate": "27/11/1993",
              "outcome": "r"
            }
          ]
        },
        "performanceAgainst": {
          "team": [
            {
              "id": "1188",
              "name": "Afghanistan",
              "shortName": "AFG",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "228784",
                "matchFilename": "inaf10112023228784",
                "date": "11/10/2023",
                "runs": "273",
                "wicket": "2",
                "overs": "35",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 8 wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "186704",
                "matchFilename": "inaf06222019186704",
                "date": "22/06/2019",
                "runs": "224",
                "wicket": "8",
                "overs": "50",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 11 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "228784",
                "matchFilename": "inaf10112023228784",
                "date": "11/10/2023",
                "runs": "274",
                "wicket": "2",
                "overs": "35",
                "vsId": "1188",
                "vsName": "Afghanistan",
                "matchResult": "India beat Afghanistan by 8 wickets"
              }
            },
            {
              "id": "1",
              "name": "Australia",
              "shortName": "AUS",
              "matchesPlayed": "14",
              "matchesWon": "5",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "35.71",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "186690",
                "matchFilename": "inau06092019186690",
                "date": "09/06/2019",
                "runs": "352",
                "wicket": "5",
                "overs": "50",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "India beat Australia by 36 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3879",
                "matchFilename": "auin021520033879",
                "date": "15/02/2003",
                "runs": "125",
                "wicket": "10",
                "overs": "41",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "Australia beat India by 9 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "7645",
                "matchFilename": "auin032420117645",
                "date": "24/03/2011",
                "runs": "262",
                "wicket": "5",
                "overs": "47.4",
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "India beat Australia by 5 wickets"
              }
            },
            {
              "id": "2",
              "name": "Bangladesh",
              "shortName": "BAN",
              "matchesPlayed": "5",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "80",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "7637",
                "matchFilename": "inba021920117637",
                "date": "19/02/2011",
                "runs": "370",
                "wicket": "4",
                "overs": "50",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 87 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4466",
                "matchFilename": "inba031720074466",
                "date": "17/03/2007",
                "runs": "191",
                "wicket": "10",
                "overs": "49",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "Bangladesh beat India by 5 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "228793",
                "matchFilename": "inba10192023228793",
                "date": "19/10/2023",
                "runs": "262",
                "wicket": "3",
                "overs": "41.3",
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat Bangladesh by 7 wickets"
              }
            },
            {
              "id": "11",
              "name": "Bermuda",
              "shortName": "BER",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4471",
                "matchFilename": "inbe031920074471",
                "date": "19/03/2007",
                "runs": "413",
                "wicket": "5",
                "overs": "50",
                "vsId": "11",
                "vsName": "Bermuda",
                "matchResult": "India beat Bermuda by 257 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4471",
                "matchFilename": "inbe031920074471",
                "date": "19/03/2007",
                "runs": "413",
                "wicket": "5",
                "overs": "50",
                "vsId": "11",
                "vsName": "Bermuda",
                "matchResult": "India beat Bermuda by 257 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "24",
              "name": "East Africa",
              "shortName": "EA",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "1953",
                "matchFilename": "eain061119751953",
                "date": "11/06/1975",
                "runs": "124",
                "wicket": "0",
                "overs": "29.5",
                "vsId": "24",
                "vsName": "East Africa",
                "matchResult": "India beat East Africa by 10 wickets"
              }
            },
            {
              "id": "3",
              "name": "England",
              "shortName": "ENG",
              "matchesPlayed": "9",
              "matchesWon": "4",
              "matchesLost": "4",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "44.44",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "7561",
                "matchFilename": "inen022720117561",
                "date": "27/02/2011",
                "runs": "338",
                "wicket": "10",
                "overs": "49",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "India tied with England"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "2404",
                "matchFilename": "inen110519872404",
                "date": "05/11/1987",
                "runs": "219",
                "wicket": "10",
                "overs": "45",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "England beat India by 35 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "2150",
                "matchFilename": "enin062219832150",
                "date": "22/06/1983",
                "runs": "218",
                "wicket": "4",
                "overs": "54.4",
                "vsId": "3",
                "vsName": "England",
                "matchResult": "India beat England by 6 wickets"
              }
            },
            {
              "id": "13",
              "name": "Ireland",
              "shortName": "IRE",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "174012",
                "matchFilename": "inir03102015174012",
                "date": "10/03/2015",
                "runs": "261",
                "wicket": "2",
                "overs": "36.5",
                "vsId": "13",
                "vsName": "Ireland",
                "matchResult": "India beat Ireland by 8 wickets"
              }
            },
            {
              "id": "14",
              "name": "Kenya",
              "shortName": "KEN",
              "matchesPlayed": "4",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3385",
                "matchFilename": "inke052319993385",
                "date": "23/05/1999",
                "runs": "329",
                "wicket": "2",
                "overs": "50",
                "vsId": "14",
                "vsName": "Kenya",
                "matchResult": "India beat Kenya by 94 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3920",
                "matchFilename": "inke032020033920",
                "date": "20/03/2003",
                "runs": "270",
                "wicket": "4",
                "overs": "50",
                "vsId": "14",
                "vsName": "Kenya",
                "matchResult": "India beat Kenya by 91 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "3911",
                "matchFilename": "inke030720033911",
                "date": "07/03/2003",
                "runs": "227",
                "wicket": "4",
                "overs": "47.5",
                "vsId": "14",
                "vsName": "Kenya",
                "matchResult": "India beat Kenya by 6 wickets"
              }
            },
            {
              "id": "20",
              "name": "Namibia",
              "shortName": "NAM",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3891",
                "matchFilename": "inna022320033891",
                "date": "23/02/2003",
                "runs": "311",
                "wicket": "2",
                "overs": "50",
                "vsId": "20",
                "vsName": "Namibia",
                "matchResult": "India beat Namibia by 181 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3891",
                "matchFilename": "inna022320033891",
                "date": "23/02/2003",
                "runs": "311",
                "wicket": "2",
                "overs": "50",
                "vsId": "20",
                "vsName": "Namibia",
                "matchResult": "India beat Namibia by 181 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "15",
              "name": "Netherlands",
              "shortName": "NED",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "228841",
                "matchFilename": "inne11122023228841",
                "date": "12/11/2023",
                "runs": "410",
                "wicket": "4",
                "overs": "50",
                "vsId": "15",
                "vsName": "Netherlands",
                "matchResult": "India beat Netherlands by 160 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3875",
                "matchFilename": "inne021220033875",
                "date": "12/02/2003",
                "runs": "204",
                "wicket": "10",
                "overs": "48",
                "vsId": "15",
                "vsName": "Netherlands",
                "matchResult": "India beat Netherlands by 68 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "7599",
                "matchFilename": "inne030920117599",
                "date": "09/03/2011",
                "runs": "192",
                "wicket": "5",
                "overs": "36.3",
                "vsId": "15",
                "vsName": "Netherlands",
                "matchResult": "India beat Netherlands by 5 wickets"
              }
            },
            {
              "id": "5",
              "name": "New Zealand",
              "shortName": "NZ",
              "matchesPlayed": "10",
              "matchesWon": "5",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "228844",
                "matchFilename": "innz11152023228844",
                "date": "15/11/2023",
                "runs": "397",
                "wicket": "4",
                "overs": "50",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "India beat New Zealand by 70 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "1994",
                "matchFilename": "innz061319791994",
                "date": "13/06/1979",
                "runs": "182",
                "wicket": "10",
                "overs": "55",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "New Zealand beat India by 8 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "228806",
                "matchFilename": "innz10222023228806",
                "date": "22/10/2023",
                "runs": "275",
                "wicket": "6",
                "overs": "48",
                "vsId": "5",
                "vsName": "New Zealand",
                "matchResult": "India beat New Zealand by 4 wickets"
              }
            },
            {
              "id": "6",
              "name": "Pakistan",
              "shortName": "PAK",
              "matchesPlayed": "8",
              "matchesWon": "8",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "186698",
                "matchFilename": "inpk06162019186698",
                "date": "16/06/2019",
                "runs": "336",
                "wicket": "5",
                "overs": "50",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 89 runs (D/L method)"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3404",
                "matchFilename": "inpk060819993404",
                "date": "08/06/1999",
                "runs": "227",
                "wicket": "6",
                "overs": "50",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 47 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "3902",
                "matchFilename": "inpk030120033902",
                "date": "01/03/2003",
                "runs": "277",
                "wicket": "4",
                "overs": "45.4",
                "vsId": "6",
                "vsName": "Pakistan",
                "matchResult": "India beat Pakistan by 6 wickets"
              }
            },
            {
              "id": "7",
              "name": "South Africa",
              "shortName": "SA",
              "matchesPlayed": "6",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "228835",
                "matchFilename": "insa11052023228835",
                "date": "05/11/2023",
                "runs": "326",
                "wicket": "5",
                "overs": "50",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "India beat South Africa by 243 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3373",
                "matchFilename": "insa051519993373",
                "date": "15/05/1999",
                "runs": "253",
                "wicket": "5",
                "overs": "50",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "South Africa beat India by 4 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "186684",
                "matchFilename": "sain06052019186684",
                "date": "05/06/2019",
                "runs": "231",
                "wicket": "4",
                "overs": "47.3",
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "India beat South Africa by 6 wickets"
              }
            },
            {
              "id": "8",
              "name": "Sri Lanka",
              "shortName": "SL",
              "matchesPlayed": "10",
              "matchesWon": "5",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3391",
                "matchFilename": "insl052619993391",
                "date": "26/05/1999",
                "runs": "373",
                "wicket": "6",
                "overs": "50",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "India beat Sri Lanka by 157 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "4478",
                "matchFilename": "insl032320074478",
                "date": "23/03/2007",
                "runs": "185",
                "wicket": "10",
                "overs": "43",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Sri Lanka beat India by 69 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "7628",
                "matchFilename": "slin040220117628",
                "date": "02/04/2011",
                "runs": "278",
                "wicket": "4",
                "overs": "48.2",
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "India beat Sri Lanka by 6 wickets"
              }
            },
            {
              "id": "21",
              "name": "United Arab Emirates",
              "shortName": "UAE",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "lowestScore": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "173998",
                "matchFilename": "inua02282015173998",
                "date": "28/02/2015",
                "runs": "105",
                "wicket": "1",
                "overs": "18.5",
                "vsId": "21",
                "vsName": "United Arab Emirates",
                "matchResult": "India beat United Arab Emirates by 9 wickets"
              }
            },
            {
              "id": "9",
              "name": "West Indies",
              "shortName": "WI",
              "matchesPlayed": "9",
              "matchesWon": "6",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "7608",
                "matchFilename": "inwi032020117608",
                "date": "20/03/2011",
                "runs": "268",
                "wicket": "10",
                "overs": "49",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "India beat West Indies by 80 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "2151",
                "matchFilename": "inwi062519832151",
                "date": "25/06/1983",
                "runs": "183",
                "wicket": "10",
                "overs": "54",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "India beat West Indies by 43 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "174006",
                "matchFilename": "inwi03062015174006",
                "date": "06/03/2015",
                "runs": "186",
                "wicket": "6",
                "overs": "39.1",
                "vsId": "9",
                "vsName": "West Indies",
                "matchResult": "India beat West Indies by 4 wickets"
              }
            },
            {
              "id": "10",
              "name": "Zimbabwe",
              "shortName": "ZIM",
              "matchesPlayed": "9",
              "matchesWon": "8",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "88.89",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "174017",
                "matchFilename": "inzm03142015174017",
                "date": "14/03/2015",
                "runs": "288",
                "wicket": "4",
                "overs": "48",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India beat Zimbabwe by 6 wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "3004",
                "matchFilename": "inzm030619963004",
                "date": "06/03/1996",
                "runs": "247",
                "wicket": "5",
                "overs": "50",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India beat Zimbabwe by 40 runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "174017",
                "matchFilename": "inzm03142015174017",
                "date": "14/03/2015",
                "runs": "289",
                "wicket": "4",
                "overs": "48.4",
                "vsId": "10",
                "vsName": "Zimbabwe",
                "matchResult": "India beat Zimbabwe by 6 wickets"
              }
            }
          ]
        },
        "homeRecords": {
          "matchesPlayed": "33",
          "matchesWon": "25",
          "matchesLost": "7",
          "matchesTied": "1",
          "noResult": "0",
          "winPercentage": "75.76",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "2962",
                "name": "Sachin Tendulkar",
                "value": "977",
                "displayText": "Sachin Tendulkar - (977 runs for India)"
              },
              {
                "type": "bowling",
                "id": "28994",
                "name": "Mohammad Shami",
                "value": "24",
                "displayText": "Mohammad Shami - (24 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3852",
                "name": "Rohit Sharma",
                "value": "137",
                "displayText": "137 by Rohit Sharma v Bangladesh on March 19, 2015 - India beat Bangladesh by 109 runs",
                "isNotOut": "False",
                "against": {
                  "id": "2",
                  "name": "Bangladesh",
                  "shortName": "BAN"
                },
                "venue": {
                  "id": "96",
                  "name": "Melbourne Cricket Ground (MCG), Melbourne",
                  "shortName": "Melbourne Cricket Ground (MCG), Melbourne"
                },
                "matchId": "174022",
                "matchDate": "19/03/2015",
                "outcome": "India beat Bangladesh by 109 runs"
              },
              {
                "type": "bowling",
                "id": "28994",
                "name": "Mohammad Shami",
                "value": "7/57",
                "displayText": "7/57 by Mohammad Shami v New Zealand on November 15, 2023 - India beat New Zealand by 70 runs",
                "against": {
                  "id": "5",
                  "name": "New Zealand",
                  "shortName": "NZ"
                },
                "venue": {
                  "id": "168",
                  "name": "Wankhede Stadium, Mumbai",
                  "shortName": "Wankhede Stadium, Mumbai"
                },
                "matchId": "228844",
                "matchDate": "15/11/2023",
                "outcome": "India beat New Zealand by 70 runs"
              }
            ]
          }
        },
        "awayRecords": {
          "matchesPlayed": "9",
          "matchesWon": "4",
          "matchesLost": "5",
          "matchesTied": "0",
          "noResult": "0",
          "winPercentage": "44.44",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "2962",
                "name": "Sachin Tendulkar",
                "value": "226",
                "displayText": "Sachin Tendulkar - (226 runs for India)"
              },
              {
                "type": "bowling",
                "id": "1186",
                "name": "Sourav Ganguly",
                "value": "6",
                "displayText": "Sourav Ganguly - (6 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "1682",
                "name": "Kapil Dev",
                "value": "175",
                "displayText": "175* by Kapil Dev v Zimbabwe on June 18, 1983 - India beat Zimbabwe by 31 runs",
                "isNotOut": "True",
                "against": {
                  "id": "10",
                  "name": "Zimbabwe",
                  "shortName": "ZIM"
                },
                "venue": {
                  "id": "109",
                  "name": "Nevill Ground, Tunbridge Wells",
                  "shortName": "Nevill Ground, Tunbridge Wells"
                },
                "matchId": "2141",
                "matchDate": "18/06/1983",
                "outcome": "India beat Zimbabwe by 31 runs"
              },
              {
                "type": "bowling",
                "id": "1682",
                "name": "Kapil Dev",
                "value": "5/43",
                "displayText": "5/43 by Kapil Dev v Australia on June 13, 1983 - Australia beat India by 162 runs",
                "against": {
                  "id": "1",
                  "name": "Australia",
                  "shortName": "AUS"
                },
                "venue": {
                  "id": "161",
                  "name": "Trent Bridge, Nottingham",
                  "shortName": "Trent Bridge, Nottingham"
                },
                "matchId": "2134",
                "matchDate": "13/06/1983",
                "outcome": "Australia beat India by 162 runs"
              }
            ]
          }
        },
        "neutralRecords": {
          "matchesPlayed": "53",
          "matchesWon": "34",
          "matchesLost": "18",
          "matchesTied": "0",
          "noResult": "1",
          "winPercentage": "64.15",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "2962",
                "name": "Sachin Tendulkar",
                "value": "1075",
                "displayText": "Sachin Tendulkar - (1075 runs for India)"
              },
              {
                "type": "bowling",
                "id": "2848",
                "name": "Javagal Srinath",
                "value": "31",
                "displayText": "Javagal Srinath - (31 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "1186",
                "name": "Sourav Ganguly",
                "value": "183",
                "displayText": "183 by Sourav Ganguly v Sri Lanka on May 26, 1999 - India beat Sri Lanka by 157 runs",
                "isNotOut": "False",
                "against": {
                  "id": "8",
                  "name": "Sri Lanka",
                  "shortName": "SL"
                },
                "venue": {
                  "id": "40",
                  "name": "The Cooper Associates County Ground, Taunton",
                  "shortName": "The Cooper Associates County Ground, Taunton"
                },
                "matchId": "3391",
                "matchDate": "26/05/1999",
                "outcome": "India beat Sri Lanka by 157 runs"
              },
              {
                "type": "bowling",
                "id": "2214",
                "name": "Ashish Nehra",
                "value": "6/23",
                "displayText": "6/23 by Ashish Nehra v England on February 26, 2003 - India beat England by 82 runs",
                "against": {
                  "id": "3",
                  "name": "England",
                  "shortName": "ENG"
                },
                "venue": {
                  "id": "84",
                  "name": "Kingsmead, Durban",
                  "shortName": "Kingsmead, Durban"
                },
                "matchId": "3897",
                "matchDate": "26/02/2003",
                "outcome": "India beat England by 82 runs"
              }
            ]
          }
        },
        "venuesBasedPerformance": {
          "venue": [
            {
              "id": "1",
              "name": "Australia - Adelaide Oval, Adelaide",
              "shortName": "Adelaide Oval, Adelaide",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "12",
              "name": "India - Barabati Stadium, Cuttack",
              "shortName": "Barabati Stadium, Cuttack",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "14",
              "name": "New Zealand - Cello Basin Reserve, Wellington",
              "shortName": "Cello Basin Reserve, Wellington",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "18",
              "name": "South Africa - Boland Park, Paarl",
              "shortName": "Boland Park, Paarl",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "22",
              "name": "Australia - The Gabba, Brisbane",
              "shortName": "The Gabba, Brisbane",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "28",
              "name": "India - Captain Roop Singh Stadium, Gwalior",
              "shortName": "Captain Roop Singh Stadium, Gwalior",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "29",
              "name": "New Zealand - Carisbrook, Dunedin",
              "shortName": "Carisbrook, Dunedin",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "36",
              "name": "England - County Ground, Chelmsford",
              "shortName": "County Ground, Chelmsford",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "40",
              "name": "England - The Cooper Associates County Ground, Taunton",
              "shortName": "The Cooper Associates County Ground, Taunton",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "48",
              "name": "India - Eden Gardens, Kolkata",
              "shortName": "Eden Gardens, Kolkata",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "49",
              "name": "New Zealand - Eden Park, Auckland",
              "shortName": "Eden Park, Auckland",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "50",
              "name": "England - Edgbaston, Birmingham",
              "shortName": "Edgbaston, Birmingham",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "54",
              "name": "India - Arun Jaitley Stadium, Delhi",
              "shortName": "Arun Jaitley Stadium, Delhi",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "60",
              "name": "England - Uptonsteel County Ground, Leicester",
              "shortName": "Uptonsteel County Ground, Leicester",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "61",
              "name": "India - Green Park, Kanpur",
              "shortName": "Green Park, Kanpur",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "63",
              "name": "Zimbabwe - Harare Sports Club, Harare",
              "shortName": "Harare Sports Club, Harare",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "64",
              "name": "Australia - Great Barrier Reef Arena, Mackay",
              "shortName": "Great Barrier Reef Arena, Mackay",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "65",
              "name": "England - Headingley, Leeds",
              "shortName": "Headingley, Leeds",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "81",
              "name": "England - Kennington Oval, London",
              "shortName": "Kennington Oval, London",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "84",
              "name": "South Africa - Kingsmead, Durban",
              "shortName": "Kingsmead, Durban",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "89",
              "name": "England - Lord's Cricket Ground, London",
              "shortName": "Lord's Cricket Ground, London",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "90",
              "name": "India - M.Chinnaswamy Stadium, Bengaluru",
              "shortName": "M.Chinnaswamy Stadium, Bengaluru",
              "matchesPlayed": "5",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "80"
            },
            {
              "id": "91",
              "name": "India - MA Chidambaram Stadium, Chennai",
              "shortName": "MA Chidambaram Stadium, Chennai",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "96",
              "name": "Australia - Melbourne Cricket Ground (MCG), Melbourne",
              "shortName": "Melbourne Cricket Ground (MCG), Melbourne",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "109",
              "name": "England - Nevill Ground, Tunbridge Wells",
              "shortName": "Nevill Ground, Tunbridge Wells",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "110",
              "name": "England - County Ground, Hove",
              "shortName": "County Ground, Hove",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "111",
              "name": "South Africa - The Wanderers Stadium, Johannesburg",
              "shortName": "The Wanderers Stadium, Johannesburg",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "112",
              "name": "South Africa - Newlands, Cape Town",
              "shortName": "Newlands, Cape Town",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "117",
              "name": "England - Emirates Old Trafford, Manchester",
              "shortName": "Emirates Old Trafford, Manchester",
              "matchesPlayed": "8",
              "matchesWon": "5",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "62.5"
            },
            {
              "id": "121",
              "name": "South Africa - City Oval, Pietermaritzburg",
              "shortName": "City Oval, Pietermaritzburg",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "125",
              "name": "India - I.S. Bindra Punjab Cricket Association Stadium, Mohali",
              "shortName": "I.S. Bindra Punjab Cricket Association Stadium, Mohali",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "127",
              "name": "West Indies - Queen's Park Oval, Port of Spain",
              "shortName": "Queen's Park Oval, Port of Spain",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "id": "137",
              "name": "India - Narendra Modi Stadium, Ahmedabad",
              "shortName": "Narendra Modi Stadium, Ahmedabad",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "id": "145",
              "name": "Bangladesh - Shere Bangla National Stadium, Mirpur",
              "shortName": "Shere Bangla National Stadium, Mirpur",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "153",
              "name": "South Africa - SuperSport Park, Centurion",
              "shortName": "SuperSport Park, Centurion",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "154",
              "name": "Australia - Sydney Cricket Ground (SCG), Sydney",
              "shortName": "Sydney Cricket Ground (SCG), Sydney",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "159",
              "name": "England - Utilita Bowl, Southampton",
              "shortName": "Utilita Bowl, Southampton",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "160",
              "name": "England - The Seat Unique Stadium, Bristol",
              "shortName": "The Seat Unique Stadium, Bristol",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "161",
              "name": "England - Trent Bridge, Nottingham",
              "shortName": "Trent Bridge, Nottingham",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "165",
              "name": "India - Vidarbha Cricket Association Stadium, Nagpur",
              "shortName": "Vidarbha Cricket Association Stadium, Nagpur",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "167",
              "name": "Australia - W.A.C.A. Ground, Perth",
              "shortName": "W.A.C.A. Ground, Perth",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "168",
              "name": "India - Wankhede Stadium, Mumbai",
              "shortName": "Wankhede Stadium, Mumbai",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "170",
              "name": "New Zealand - Seddon Park, Hamilton",
              "shortName": "Seddon Park, Hamilton",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "244",
              "name": "India - Vidarbha Cricket Association Ground, Nagpur",
              "shortName": "Vidarbha Cricket Association Ground, Nagpur",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "248",
              "name": "India - Himachal Pradesh Cricket Association Stadium, Dharamsala",
              "shortName": "Himachal Pradesh Cricket Association Stadium, Dharamsala",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1763",
              "name": "India - Maharashtra Cricket Association Stadium, Pune",
              "shortName": "Maharashtra Cricket Association Stadium, Pune",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1900",
              "name": "India - Bharat Ratna Shri Atal Bihari Vajpayee Ekana Cricket Stadium, Lucknow",
              "shortName": "Bharat Ratna Shri Atal Bihari Vajpayee Ekana Cricket Stadium, Lucknow",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "listOfCaptains": {
          "captain": [
            {
              "id": "487",
              "name": "Mohammad Azharuddin",
              "shortName": "Azharuddin",
              "matchesPlayed": "23",
              "matchesWon": "10",
              "matchesLost": "12",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "43.48"
            },
            {
              "id": "3676",
              "name": "MS Dhoni",
              "shortName": "Dhoni",
              "matchesPlayed": "17",
              "matchesWon": "14",
              "matchesLost": "2",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "82.35"
            },
            {
              "id": "1682",
              "name": "Kapil Dev",
              "shortName": "Dev",
              "matchesPlayed": "15",
              "matchesWon": "11",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "73.33"
            },
            {
              "id": "1186",
              "name": "Sourav Ganguly",
              "shortName": "Ganguly",
              "matchesPlayed": "11",
              "matchesWon": "9",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "81.82"
            },
            {
              "id": "3852",
              "name": "Rohit Sharma",
              "shortName": "Sharma",
              "matchesPlayed": "11",
              "matchesWon": "10",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "90.91"
            },
            {
              "id": "3993",
              "name": "Virat Kohli",
              "shortName": "Kohli",
              "matchesPlayed": "9",
              "matchesWon": "7",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "77.78"
            },
            {
              "id": "3076",
              "name": "Srinivas Venkataraghavan",
              "shortName": "Venkataraghavan",
              "matchesPlayed": "6",
              "matchesWon": "1",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "16.67"
            },
            {
              "id": "1004",
              "name": "Rahul Dravid",
              "shortName": "Dravid",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            }
          ]
        },
        "splitByYear": {
          "year": [
            {
              "value": "1975",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "value": "1979",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1983",
              "matchesPlayed": "8",
              "matchesWon": "6",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "75"
            },
            {
              "value": "1987",
              "matchesPlayed": "7",
              "matchesWon": "5",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "71.43"
            },
            {
              "value": "1992",
              "matchesPlayed": "8",
              "matchesWon": "2",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "25"
            },
            {
              "value": "1996",
              "matchesPlayed": "7",
              "matchesWon": "4",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "57.14"
            },
            {
              "value": "1999",
              "matchesPlayed": "8",
              "matchesWon": "4",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "2003",
              "matchesPlayed": "11",
              "matchesWon": "9",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "81.82"
            },
            {
              "value": "2007",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "value": "2011",
              "matchesPlayed": "9",
              "matchesWon": "7",
              "matchesLost": "1",
              "matchesTied": "1",
              "noResult": "0",
              "winPercentage": "77.78"
            },
            {
              "value": "2015",
              "matchesPlayed": "8",
              "matchesWon": "7",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "87.5"
            },
            {
              "value": "2019",
              "matchesPlayed": "9",
              "matchesWon": "7",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "77.78"
            },
            {
              "value": "2023",
              "matchesPlayed": "11",
              "matchesWon": "10",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "90.91"
            }
          ]
        },
        "lastTwelveMonths": null,
        "manOfTheMatches": {
          "manOfTheMatch": [
            {
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "463",
              "manOfTheMatch": "62"
            },
            {
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "302",
              "manOfTheMatch": "43"
            },
            {
              "id": "1186",
              "name": "Sourav Ganguly",
              "matchesPlayed": "308",
              "manOfTheMatch": "31"
            }
          ]
        },
        "manOfTheSeries": {
          "manOfTheSeries": [
            {
              "id": "2962",
              "name": "Sachin Tendulkar",
              "seriesPlayed": "108",
              "manOfTheSeries": "14"
            },
            {
              "id": "3993",
              "name": "Virat Kohli",
              "seriesPlayed": "73",
              "manOfTheSeries": "10"
            },
            {
              "id": "3676",
              "name": "MS Dhoni",
              "seriesPlayed": "79",
              "manOfTheSeries": "7"
            }
          ]
        },
        "leaders": {
          "mostMatchesPlayed": {
            "stat": "Most Matches Played",
            "playerId": "2962",
            "playerName": "Sachin Tendulkar",
            "matchesPlayed": "45",
            "inningsPlayed": "45",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4"
          },
          "mostRunsLeader": {
            "stat": "Most Runs",
            "playerId": "2962",
            "playerName": "Sachin Tendulkar",
            "matchesPlayed": "45",
            "inningsPlayed": "45",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "runs": "2278"
          },
          "highestScore": {
            "stat": "Highest Score",
            "playerId": "1186",
            "playerName": "Sourav Ganguly",
            "matchesPlayed": "21",
            "inningsPlayed": "21",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "runs": "183"
          },
          "mostHundreds": {
            "stat": "Most Hundreds",
            "playerId": "3852",
            "playerName": "Rohit Sharma",
            "matchesPlayed": "28",
            "inningsPlayed": "28",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "hundreds": "7"
          },
          "mostFifties": {
            "stat": "Most Fifties",
            "playerId": "2962",
            "playerName": "Sachin Tendulkar",
            "matchesPlayed": "45",
            "inningsPlayed": "45",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "fifties": "15"
          },
          "mostFours": {
            "stat": "Most Fours",
            "playerId": "2962",
            "playerName": "Sachin Tendulkar",
            "matchesPlayed": "45",
            "inningsPlayed": "45",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "fours": "241"
          },
          "mostSixes": {
            "stat": "Most Sixes",
            "playerId": "3852",
            "playerName": "Rohit Sharma",
            "matchesPlayed": "28",
            "inningsPlayed": "28",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "sixes": "54"
          },
          "bestBattingAverage": {
            "stat": "Best Batting Average",
            "playerId": "3993",
            "playerName": "Virat Kohli",
            "matchesPlayed": "37",
            "inningsPlayed": "37",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "average": "1795"
          },
          "bestStrikeRate": {
            "stat": "Best Strike Rate",
            "playerId": "517",
            "playerName": "Subroto Banerjee",
            "matchesPlayed": "2",
            "inningsPlayed": "2",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "strikeRate": "144"
          },
          "mostWickets": {
            "stat": "Most Wickets",
            "playerId": "28994",
            "playerName": "Mohammad Shami",
            "matchesPlayed": "18",
            "inningsPlayed": "18",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "wickets": "55"
          },
          "bestBowlingFigure": {
            "stat": "Best Bowling Figure",
            "playerId": "2962",
            "playerName": "Sachin Tendulkar",
            "matchesPlayed": "25",
            "inningsPlayed": "25",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "bowlingFigure": "8/539"
          },
          "bestEconomy": {
            "stat": "Best Economy",
            "playerId": "11803",
            "playerName": "Suryakumar Yadav",
            "matchesPlayed": "1",
            "inningsPlayed": "1",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "economy": "8.5"
          },
          "bestBowlingAverage": {
            "stat": "Best Bowling Average",
            "playerId": "3724",
            "playerName": "Yusuf Pathan",
            "matchesPlayed": "6",
            "inningsPlayed": "6",
            "gender": "M",
            "nationality": "India",
            "nationalityId": "4",
            "average": "167"
          }
        }
      }
    },
    {
      "compTypeId": "6",
      "compType": "T20",
      "leagueId": "14",
      "leagueName": "Indian Premier League",
      "parentId": "14",
      "parentSeriesName": "Indian Premier League",
      "ranking": "",
      "rating": "",
      "firstMatch": null,
      "captain": {
        "id": "11803",
        "name": "Suryakumar Ashok Yadav",
        "shortName": "Suryakumar Yadav"
      },
      "championship": {
        "seriesId": "-",
        "seriesName": "-",
        "played": "-",
        "won": "-",
        "lost": "-",
        "draw": "-",
        "pts": "-",
        "form": "-"
      },
      "trophyDetails": null,
      "overall": null
    },
    {
      "compTypeId": "6",
      "compType": "T20",
      "leagueId": "16",
      "leagueName": "Champions League",
      "parentId": "16",
      "parentSeriesName": "Champions League",
      "ranking": "",
      "rating": "",
      "firstMatch": null,
      "captain": {
        "id": "11803",
        "name": "Suryakumar Ashok Yadav",
        "shortName": "Suryakumar Yadav"
      },
      "championship": {
        "seriesId": "-",
        "seriesName": "-",
        "played": "-",
        "won": "-",
        "lost": "-",
        "draw": "-",
        "pts": "-",
        "form": "-"
      },
      "trophyDetails": null,
      "overall": null
    },
    {
      "compTypeId": "6",
      "compType": "Domestic-T20",
      "leagueId": "0",
      "leagueName": "Domestic",
      "parentId": "0",
      "parentSeriesName": "Domestic",
      "ranking": "",
      "rating": "",
      "firstMatch": {
        "matchId": "118382",
        "date": "26/08/2011",
        "outcome": "Indians beat Kent by 5 Runs",
        "against": {
          "id": "469",
          "name": "Kent",
          "shortName": "KET"
        },
        "venue": {
          "id": "152",
          "name": "The Spitfire Ground, Canterbury",
          "shortName": "The Spitfire Ground, Canterbury"
        }
      },
      "captain": {
        "id": "11803",
        "name": "Suryakumar Ashok Yadav",
        "shortName": "Suryakumar Yadav"
      },
      "championship": {
        "seriesId": "-",
        "seriesName": "-",
        "played": "-",
        "won": "-",
        "lost": "-",
        "draw": "-",
        "pts": "-",
        "form": "-"
      },
      "trophyDetails": null,
      "overall": {
        "matchesPlayed": "4",
        "matchesWon": "4",
        "matchesLost": "0",
        "matchesTied": "0",
        "noResult": "0",
        "winPercentage": "100",
        "topPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "2",
              "average": "45.50",
              "value": "91",
              "displayText": "Virat Kohli - (91 runs for India)"
            },
            {
              "type": "bowling",
              "id": "67905",
              "name": "Arshdeep Singh",
              "matchesPlayed": "2",
              "economy": "7.25",
              "value": "4",
              "displayText": "Arshdeep Singh - (4 wickets for India)"
            }
          ]
        },
        "top_3Performers": {
          "record": [
            {
              "type": "batting",
              "id": "3993",
              "name": "Virat Kohli",
              "matchesPlayed": "2",
              "average": "45.50",
              "value": "91",
              "displayText": "Virat Kohli - (91 runs for India)"
            },
            {
              "type": "batting",
              "id": "3852",
              "name": "Rohit Sharma",
              "matchesPlayed": "2",
              "average": "29.50",
              "value": "59",
              "displayText": "Rohit Sharma - (59 runs for India)"
            },
            {
              "type": "batting",
              "id": "63748",
              "name": "Deepak Hooda",
              "matchesPlayed": "1",
              "average": "59.00",
              "value": "59",
              "displayText": "Deepak Hooda - (59 runs for India)"
            },
            {
              "type": "bowling",
              "id": "67905",
              "name": "Arshdeep Singh",
              "matchesPlayed": "2",
              "economy": "7.25",
              "value": "4",
              "displayText": "Arshdeep Singh - (4 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "4180",
              "name": "Vinay Kumar",
              "matchesPlayed": "2",
              "economy": "7.25",
              "value": "3",
              "displayText": "Vinay Kumar - (3 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "3709",
              "name": "RP Singh",
              "matchesPlayed": "1",
              "economy": "9.00",
              "value": "2",
              "displayText": "RP Singh - (2 wickets for India)"
            }
          ]
        },
        "higestIndividualPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "3993",
              "name": "Virat Kohli",
              "value": "78",
              "displayText": "78 by Virat Kohli v Kent on August 26, 2011 - Indians beat Kent by 5 Runs",
              "isNotOut": "False",
              "against": {
                "id": "469",
                "name": "Kent",
                "shortName": "KET"
              },
              "venue": {
                "id": "152",
                "name": "The Spitfire Ground, Canterbury",
                "shortName": "The Spitfire Ground, Canterbury"
              },
              "matchId": "118382",
              "matchDate": "26/08/2011",
              "outcome": "Indians beat Kent by 5 Runs"
            },
            {
              "type": "bowling",
              "id": "4180",
              "name": "Vinay Kumar",
              "value": "3/29",
              "displayText": "3/29 by Vinay Kumar v Leicestershire on August 29, 2011 - Indians beat Leicestershire by 15 Runs",
              "against": {
                "id": "506",
                "name": "Leicestershire",
                "shortName": "LEI"
              },
              "venue": {
                "id": "60",
                "name": "Uptonsteel County Ground, Leicester",
                "shortName": "Uptonsteel County Ground, Leicester"
              },
              "matchId": "118386",
              "matchDate": "29/08/2011",
              "outcome": "Indians beat Leicestershire by 15 Runs"
            }
          ]
        },
        "bestIndividualPerformers": {
          "record": [
            {
              "type": "batting",
              "id": "3993",
              "name": "Virat Kohli",
              "value": "78",
              "displayText": "78 by Virat Kohli v Kent on August 26, 2011 - r",
              "isNotOut": "False",
              "against": {
                "id": "469",
                "name": "Kent",
                "shortName": "KET"
              },
              "venue": {
                "id": "152",
                "name": "The Spitfire Ground, Canterbury",
                "shortName": "The Spitfire Ground, Canterbury"
              },
              "matchId": "118382",
              "matchDate": "26/08/2011",
              "outcome": "r"
            },
            {
              "type": "batting",
              "id": "63748",
              "name": "Deepak Hooda",
              "value": "59",
              "displayText": "59 by Deepak Hooda v Derbyshire on July 1, 2022 - w",
              "isNotOut": "False",
              "against": {
                "id": "225",
                "name": "Derbyshire",
                "shortName": "DER"
              },
              "venue": {
                "id": "35",
                "name": "County Ground, Derby",
                "shortName": "County Ground, Derby"
              },
              "matchId": "211583",
              "matchDate": "01/07/2022",
              "outcome": "w"
            },
            {
              "type": "batting",
              "id": "5407",
              "name": "Harshal Patel",
              "value": "54",
              "displayText": "54 by Harshal Patel v Northamptonshire on July 3, 2022 - r",
              "isNotOut": "False",
              "against": {
                "id": "644",
                "name": "Northamptonshire",
                "shortName": "NOR"
              },
              "venue": {
                "id": "38",
                "name": "County Ground, Northampton",
                "shortName": "County Ground, Northampton"
              },
              "matchId": "211584",
              "matchDate": "03/07/2022",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "4180",
              "name": "Vinay Kumar",
              "value": "3/29",
              "displayText": "3/29 by Vinay Kumar v Leicestershire on August 29, 2011 - r",
              "against": {
                "id": "506",
                "name": "Leicestershire",
                "shortName": "LEI"
              },
              "venue": {
                "id": "60",
                "name": "Uptonsteel County Ground, Leicester",
                "shortName": "Uptonsteel County Ground, Leicester"
              },
              "matchId": "118386",
              "matchDate": "29/08/2011",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "64511",
              "name": "Avesh Khan",
              "value": "2/16",
              "displayText": "2/16 by Avesh Khan v Northamptonshire on July 3, 2022 - r",
              "against": {
                "id": "644",
                "name": "Northamptonshire",
                "shortName": "NOR"
              },
              "venue": {
                "id": "38",
                "name": "County Ground, Northampton",
                "shortName": "County Ground, Northampton"
              },
              "matchId": "211584",
              "matchDate": "03/07/2022",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "3480",
              "name": "Amit Mishra",
              "value": "2/19",
              "displayText": "2/19 by Amit Mishra v Leicestershire on August 29, 2011 - r",
              "against": {
                "id": "506",
                "name": "Leicestershire",
                "shortName": "LEI"
              },
              "venue": {
                "id": "60",
                "name": "Uptonsteel County Ground, Leicester",
                "shortName": "Uptonsteel County Ground, Leicester"
              },
              "matchId": "118386",
              "matchDate": "29/08/2011",
              "outcome": "r"
            }
          ]
        },
        "performanceAgainst": {
          "team": [
            {
              "id": "225",
              "name": "Derbyshire",
              "shortName": "DER",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "211583",
                "matchFilename": "drin07012022211583",
                "date": "01/07/2022",
                "runs": "151",
                "wicket": "3",
                "overs": "16",
                "vsId": "225",
                "vsName": "Derbyshire",
                "matchResult": "India beat Derbyshire by 7 wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "211583",
                "matchFilename": "drin07012022211583",
                "date": "01/07/2022",
                "runs": "151",
                "wicket": "3",
                "overs": "16",
                "vsId": "225",
                "vsName": "Derbyshire",
                "matchResult": "India beat Derbyshire by 7 wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "211583",
                "matchFilename": "drin07012022211583",
                "date": "01/07/2022",
                "runs": "152",
                "wicket": "3",
                "overs": "16.4",
                "vsId": "225",
                "vsName": "Derbyshire",
                "matchResult": "India beat Derbyshire by 7 wickets"
              }
            },
            {
              "id": "469",
              "name": "Kent",
              "shortName": "KET",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "118382",
                "matchFilename": "knin08262011118382",
                "date": "26/08/2011",
                "runs": "164",
                "wicket": "6",
                "overs": null,
                "vsId": "469",
                "vsName": "Kent",
                "matchResult": "Indians beat Kent by 5 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "118382",
                "matchFilename": "knin08262011118382",
                "date": "26/08/2011",
                "runs": "164",
                "wicket": "6",
                "overs": null,
                "vsId": "469",
                "vsName": "Kent",
                "matchResult": "Indians beat Kent by 5 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "506",
              "name": "Leicestershire",
              "shortName": "LEI",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "118386",
                "matchFilename": "lein08292011118386",
                "date": "29/08/2011",
                "runs": "161",
                "wicket": "5",
                "overs": null,
                "vsId": "506",
                "vsName": "Leicestershire",
                "matchResult": "Indians beat Leicestershire by 15 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "118386",
                "matchFilename": "lein08292011118386",
                "date": "29/08/2011",
                "runs": "161",
                "wicket": "5",
                "overs": null,
                "vsId": "506",
                "vsName": "Leicestershire",
                "matchResult": "Indians beat Leicestershire by 15 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "644",
              "name": "Northamptonshire",
              "shortName": "NOR",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "211584",
                "matchFilename": "noin07032022211584",
                "date": "03/07/2022",
                "runs": "149",
                "wicket": "8",
                "overs": "20",
                "vsId": "644",
                "vsName": "Northamptonshire",
                "matchResult": "India beat Northamptonshire by 10 runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "211584",
                "matchFilename": "noin07032022211584",
                "date": "03/07/2022",
                "runs": "149",
                "wicket": "8",
                "overs": "20",
                "vsId": "644",
                "vsName": "Northamptonshire",
                "matchResult": "India beat Northamptonshire by 10 runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            }
          ]
        },
        "homeRecords": null,
        "awayRecords": {
          "matchesPlayed": "2",
          "matchesWon": "2",
          "matchesLost": "0",
          "matchesTied": "0",
          "noResult": "0",
          "winPercentage": "100",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3993",
                "name": "Virat Kohli",
                "value": "91",
                "displayText": "Virat Kohli - (91 runs for India)"
              },
              {
                "type": "bowling",
                "id": "4180",
                "name": "Vinay Kumar",
                "value": "3",
                "displayText": "Vinay Kumar - (3 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3993",
                "name": "Virat Kohli",
                "value": "78",
                "displayText": "78 by Virat Kohli v Kent on August 26, 2011 - Indians beat Kent by 5 Runs",
                "isNotOut": "False",
                "against": {
                  "id": "469",
                  "name": "Kent",
                  "shortName": "KET"
                },
                "venue": {
                  "id": "152",
                  "name": "The Spitfire Ground, Canterbury",
                  "shortName": "The Spitfire Ground, Canterbury"
                },
                "matchId": "118382",
                "matchDate": "26/08/2011",
                "outcome": "Indians beat Kent by 5 Runs"
              },
              {
                "type": "bowling",
                "id": "4180",
                "name": "Vinay Kumar",
                "value": "3/29",
                "displayText": "3/29 by Vinay Kumar v Leicestershire on August 29, 2011 - Indians beat Leicestershire by 15 Runs",
                "against": {
                  "id": "506",
                  "name": "Leicestershire",
                  "shortName": "LEI"
                },
                "venue": {
                  "id": "60",
                  "name": "Uptonsteel County Ground, Leicester",
                  "shortName": "Uptonsteel County Ground, Leicester"
                },
                "matchId": "118386",
                "matchDate": "29/08/2011",
                "outcome": "Indians beat Leicestershire by 15 Runs"
              }
            ]
          }
        },
        "neutralRecords": {
          "matchesPlayed": "2",
          "matchesWon": "2",
          "matchesLost": "0",
          "matchesTied": "0",
          "noResult": "0",
          "winPercentage": "100",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "63748",
                "name": "Deepak Hooda",
                "value": "59",
                "displayText": "Deepak Hooda - (59 runs for India)"
              },
              {
                "type": "bowling",
                "id": "67905",
                "name": "Arshdeep Singh",
                "value": "4",
                "displayText": "Arshdeep Singh - (4 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "63748",
                "name": "Deepak Hooda",
                "value": "59",
                "displayText": "59 by Deepak Hooda v Derbyshire on July 1, 2022 - India beat Derbyshire by 7 wickets",
                "isNotOut": "False",
                "against": {
                  "id": "225",
                  "name": "Derbyshire",
                  "shortName": "DER"
                },
                "venue": {
                  "id": "35",
                  "name": "County Ground, Derby",
                  "shortName": "County Ground, Derby"
                },
                "matchId": "211583",
                "matchDate": "01/07/2022",
                "outcome": "India beat Derbyshire by 7 wickets"
              },
              {
                "type": "bowling",
                "id": "64511",
                "name": "Avesh Khan",
                "value": "2/16",
                "displayText": "2/16 by Avesh Khan v Northamptonshire on July 3, 2022 - India beat Northamptonshire by 10 runs",
                "against": {
                  "id": "644",
                  "name": "Northamptonshire",
                  "shortName": "NOR"
                },
                "venue": {
                  "id": "38",
                  "name": "County Ground, Northampton",
                  "shortName": "County Ground, Northampton"
                },
                "matchId": "211584",
                "matchDate": "03/07/2022",
                "outcome": "India beat Northamptonshire by 10 runs"
              }
            ]
          }
        },
        "venuesBasedPerformance": {
          "venue": [
            {
              "id": "35",
              "name": "England - County Ground, Derby",
              "shortName": "County Ground, Derby",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "38",
              "name": "England - County Ground, Northampton",
              "shortName": "County Ground, Northampton",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "60",
              "name": "England - Uptonsteel County Ground, Leicester",
              "shortName": "Uptonsteel County Ground, Leicester",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "152",
              "name": "England - The Spitfire Ground, Canterbury",
              "shortName": "The Spitfire Ground, Canterbury",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "listOfCaptains": {
          "captain": [
            {
              "id": "3632",
              "name": "Dinesh Karthik",
              "shortName": "Karthik",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "3676",
              "name": "MS Dhoni",
              "shortName": "Dhoni",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "3700",
              "name": "Suresh Raina",
              "shortName": "Raina",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "splitByYear": {
          "year": [
            {
              "value": "2011",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "2022",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "lastTwelveMonths": null,
        "manOfTheMatches": null,
        "manOfTheSeries": null,
        "leaders": {
          "mostMatchesPlayed": {
            "stat": "Most Matches Played",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null
          },
          "mostRunsLeader": {
            "stat": "Most Runs",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "highestScore": {
            "stat": "Highest Score",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "mostHundreds": {
            "stat": "Most Hundreds",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "hundreds": null
          },
          "mostFifties": {
            "stat": "Most Fifties",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fifties": null
          },
          "mostFours": {
            "stat": "Most Fours",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fours": null
          },
          "mostSixes": {
            "stat": "Most Sixes",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "sixes": null
          },
          "bestBattingAverage": {
            "stat": "Best Batting Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          },
          "bestStrikeRate": {
            "stat": "Best Strike Rate",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "strikeRate": null
          },
          "mostWickets": {
            "stat": "Most Wickets",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "wickets": null
          },
          "bestBowlingFigure": {
            "stat": "Best Bowling Figure",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "bowlingFigure": null
          },
          "bestEconomy": {
            "stat": "Best Economy",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "economy": null
          },
          "bestBowlingAverage": {
            "stat": "Best Bowling Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          }
        }
      }
    },
    {
      "compTypeId": "4",
      "compType": "First Class Domestic",
      "leagueId": "0",
      "leagueName": "Domestic",
      "parentId": "0",
      "parentSeriesName": "Domestic",
      "ranking": "",
      "rating": "",
      "firstMatch": {
        "matchId": "122783",
        "date": "26/01/1893",
        "outcome": "Lord Hawke's XI beat India by an Innings and 5 runs",
        "against": {
          "id": "363",
          "name": "Lord Hawke's XI",
          "shortName": "HAW"
        },
        "venue": {
          "id": "1155",
          "name": "Madan Mohan Malaviya Stadium, Allahabad",
          "shortName": "Madan Mohan Malaviya Stadium, Allahabad"
        }
      },
      "captain": {
        "id": "3993",
        "name": "Virat Kohli",
        "shortName": "Virat Kohli"
      },
      "championship": {
        "seriesId": "-",
        "seriesName": "-",
        "played": "-",
        "won": "-",
        "lost": "-",
        "draw": "-",
        "pts": "-",
        "form": "-"
      },
      "trophyDetails": null,
      "overall": {
        "matchesPlayed": "445",
        "matchesWon": "120",
        "matchesLost": "84",
        "matchesTied": "0",
        "noResult": "241",
        "winPercentage": "26.97",
        "topPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "1199",
              "name": "Sunil Gavaskar",
              "matchesPlayed": "76",
              "average": "47.64",
              "value": "5336",
              "displayText": "Sunil Gavaskar - (5336 runs for India)"
            },
            {
              "type": "bowling",
              "id": "559",
              "name": "Bishan Bedi",
              "matchesPlayed": "63",
              "economy": "2.26",
              "value": "255",
              "displayText": "Bishan Bedi - (255 wickets for India)"
            }
          ]
        },
        "top_3Performers": {
          "record": [
            {
              "type": "batting",
              "id": "1199",
              "name": "Sunil Gavaskar",
              "matchesPlayed": "76",
              "average": "47.64",
              "value": "5336",
              "displayText": "Sunil Gavaskar - (5336 runs for India)"
            },
            {
              "type": "batting",
              "id": "3049",
              "name": "Polly Umrigar",
              "matchesPlayed": "69",
              "average": "58.64",
              "value": "5278",
              "displayText": "Polly Umrigar - (5278 runs for India)"
            },
            {
              "type": "batting",
              "id": "1425",
              "name": "Vijay Hazare",
              "matchesPlayed": "73",
              "average": "46.02",
              "value": "4326",
              "displayText": "Vijay Hazare - (4326 runs for India)"
            },
            {
              "type": "bowling",
              "id": "559",
              "name": "Bishan Bedi",
              "matchesPlayed": "60",
              "economy": "2.26",
              "value": "255",
              "displayText": "Bishan Bedi - (255 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "1911",
              "name": "Vinoo Mankad",
              "matchesPlayed": "56",
              "economy": "2.26",
              "value": "248",
              "displayText": "Vinoo Mankad - (248 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "3076",
              "name": "Srinivas Venkataraghavan",
              "matchesPlayed": "68",
              "economy": "2.53",
              "value": "218",
              "displayText": "Srinivas Venkataraghavan - (218 wickets for India)"
            }
          ]
        },
        "higestIndividualPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "2752",
              "name": "Navjot Sidhu",
              "value": "286",
              "displayText": "286 by Navjot Sidhu v Jamaica Scorpions on April 22, 1989 - Drawn",
              "isNotOut": "False",
              "against": {
                "id": "423",
                "name": "Jamaica Scorpions",
                "shortName": "JAM"
              },
              "venue": {
                "id": "136",
                "name": "Sabina Park, Kingston",
                "shortName": "Sabina Park, Kingston"
              },
              "matchId": "155926",
              "matchDate": "22/04/1989",
              "outcome": "Drawn"
            },
            {
              "type": "bowling",
              "id": "44511",
              "name": "Hormasji Vajifdar",
              "value": "9/43",
              "displayText": "9/43 by Hormasji Vajifdar v England on November 21, 1918 - Drawn",
              "against": {
                "id": "3",
                "name": "England",
                "shortName": "ENG"
              },
              "venue": {
                "id": "62",
                "name": "Gymkhana Ground, Mumbai",
                "shortName": "Gymkhana Ground, Mumbai"
              },
              "matchId": "128178",
              "matchDate": "21/11/1918",
              "outcome": "Drawn"
            }
          ]
        },
        "bestIndividualPerformers": {
          "record": [
            {
              "type": "batting",
              "id": "2752",
              "name": "Navjot Sidhu",
              "value": "286",
              "displayText": "286 by Navjot Sidhu v Jamaica Scorpions on April 22, 1989 - d",
              "isNotOut": "False",
              "against": {
                "id": "423",
                "name": "Jamaica Scorpions",
                "shortName": "JAM"
              },
              "venue": {
                "id": "136",
                "name": "Sabina Park, Kingston",
                "shortName": "Sabina Park, Kingston"
              },
              "matchId": "155926",
              "matchDate": "22/04/1989",
              "outcome": "d"
            },
            {
              "type": "batting",
              "id": "1589",
              "name": "Ajay Jadeja",
              "value": "254",
              "displayText": "254* by Ajay Jadeja v Combined Bowl XI on October 31, 1992 - i",
              "isNotOut": "True",
              "against": {
                "id": "154",
                "name": "Combined Bowl XI",
                "shortName": "CBI"
              },
              "venue": {
                "id": "1329",
                "name": "PAM Brink Stadium, Springs",
                "shortName": "PAM Brink Stadium, Springs"
              },
              "matchId": "157974",
              "matchDate": "31/10/1992",
              "outcome": "i"
            },
            {
              "type": "batting",
              "id": "3049",
              "name": "Polly Umrigar",
              "value": "252",
              "displayText": "252* by Polly Umrigar v Cambridge MCCU on May 6, 1959 - i",
              "isNotOut": "True",
              "against": {
                "id": "148",
                "name": "Cambridge MCCU",
                "shortName": "CAM"
              },
              "venue": {
                "id": "313",
                "name": "FP Fenner's Ground, Cambridge",
                "shortName": "FP Fenner's Ground, Cambridge"
              },
              "matchId": "141169",
              "matchDate": "06/05/1959",
              "outcome": "i"
            },
            {
              "type": "bowling",
              "id": "44511",
              "name": "Hormasji Vajifdar",
              "value": "9/43",
              "displayText": "9/43 by Hormasji Vajifdar v England on November 21, 1918 - d",
              "against": {
                "id": "3",
                "name": "England",
                "shortName": "ENG"
              },
              "venue": {
                "id": "62",
                "name": "Gymkhana Ground, Mumbai",
                "shortName": "Gymkhana Ground, Mumbai"
              },
              "matchId": "128178",
              "matchDate": "21/11/1918",
              "outcome": "d"
            },
            {
              "type": "bowling",
              "id": "3076",
              "name": "Srinivas Venkataraghavan",
              "value": "9/93",
              "displayText": "9/93 by Srinivas Venkataraghavan v Hampshire on July 17, 1971 - w",
              "against": {
                "id": "361",
                "name": "Hampshire",
                "shortName": "HAM"
              },
              "venue": {
                "id": "304",
                "name": "Dean Park, Bournemouth",
                "shortName": "Dean Park, Bournemouth"
              },
              "matchId": "147110",
              "matchDate": "17/07/1971",
              "outcome": "w"
            },
            {
              "type": "bowling",
              "id": "34951",
              "name": "AG Ram Singh",
              "value": "8/14",
              "displayText": "8/14 by AG Ram Singh v Europeans on January 12, 1936 - i",
              "against": {
                "id": "287",
                "name": "Europeans",
                "shortName": "EUR"
              },
              "venue": {
                "id": "91",
                "name": "MA Chidambaram Stadium, Chennai",
                "shortName": "MA Chidambaram Stadium, Chennai"
              },
              "matchId": "133987",
              "matchDate": "12/01/1936",
              "outcome": "i"
            }
          ]
        },
        "performanceAgainst": {
          "team": [
            {
              "id": "328",
              "name": "A Gilligan's XI",
              "shortName": "GIL",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141466",
                "matchFilename": "gilin09021959141466",
                "date": "02/09/1959",
                "runs": "285",
                "wicket": "10",
                "overs": null,
                "vsId": "328",
                "vsName": "A Gilligan's XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141466",
                "matchFilename": "gilin09021959141466",
                "date": "02/09/1959",
                "runs": "254",
                "wicket": "6",
                "overs": null,
                "vsId": "328",
                "vsName": "A Gilligan's XI",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1",
              "name": "Australia",
              "shortName": "AUS",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "133984",
                "matchFilename": "inau01101936133984",
                "date": "10/01/1936",
                "runs": "301",
                "wicket": "10",
                "overs": null,
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "India beat Australians by 68 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "133972",
                "matchFilename": "inau12311935133972",
                "date": "31/12/1935",
                "runs": "48",
                "wicket": "10",
                "overs": null,
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "Australians beat India by 8 Wickets"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "47",
              "name": "Australia A",
              "shortName": "AU-A",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "164984",
                "matchFilename": "avin12192003164984",
                "date": "19/12/2003",
                "runs": "245",
                "wicket": "10",
                "overs": null,
                "vsId": "47",
                "vsName": "Australia A",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "164984",
                "matchFilename": "avin12192003164984",
                "date": "19/12/2003",
                "runs": "66",
                "wicket": "2",
                "overs": null,
                "vsId": "47",
                "vsName": "Australia A",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1192",
              "name": "Australian XI",
              "shortName": "AUS",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "136458",
                "matchFilename": "axin11141947136458",
                "date": "14/11/1947",
                "runs": "326",
                "wicket": "10",
                "overs": null,
                "vsId": "1192",
                "vsName": "Australian XI",
                "matchResult": "Indians beat Australian XI by 47 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "136458",
                "matchFilename": "axin11141947136458",
                "date": "14/11/1947",
                "runs": "304",
                "wicket": "9",
                "overs": null,
                "vsId": "1192",
                "vsName": "Australian XI",
                "matchResult": "Indians beat Australian XI by 47 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "2",
              "name": "Bangladesh",
              "shortName": "BAN",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139326",
                "matchFilename": "bain12271954139326",
                "date": "27/12/1954",
                "runs": "200",
                "wicket": "7",
                "overs": null,
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat East Pakistan by an Innings and 15 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139326",
                "matchFilename": "bain12271954139326",
                "date": "27/12/1954",
                "runs": "200",
                "wicket": "7",
                "overs": null,
                "vsId": "2",
                "vsName": "Bangladesh",
                "matchResult": "India beat East Pakistan by an Innings and 15 runs "
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "100",
              "name": "Barbados Pride",
              "shortName": "BAR",
              "matchesPlayed": "6",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "138529",
                "matchFilename": "bgin01311953138529",
                "date": "31/01/1953",
                "runs": "445",
                "wicket": "9",
                "overs": null,
                "vsId": "100",
                "vsName": "Barbados Pride",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "142636",
                "matchFilename": "bgin03161962142636",
                "date": "16/03/1962",
                "runs": "86",
                "wicket": "8",
                "overs": null,
                "vsId": "100",
                "vsName": "Barbados Pride",
                "matchResult": "Barbados beat Indians by an Innings and 95 runs "
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "140",
              "name": "British Universities Students Association",
              "shortName": "BU",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "160143",
                "matchFilename": "bnsin06261996160143",
                "date": "26/06/1996",
                "runs": "457",
                "wicket": "6",
                "overs": null,
                "vsId": "140",
                "vsName": "British Universities Students Association",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "160143",
                "matchFilename": "bnsin06261996160143",
                "date": "26/06/1996",
                "runs": "231",
                "wicket": "3",
                "overs": null,
                "vsId": "140",
                "vsName": "British Universities Students Association",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "148",
              "name": "Cambridge MCCU",
              "shortName": "CAM",
              "matchesPlayed": "7",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "57.14",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141169",
                "matchFilename": "cgin05061959141169",
                "date": "06/05/1959",
                "runs": "436",
                "wicket": "6",
                "overs": null,
                "vsId": "148",
                "vsName": "Cambridge MCCU",
                "matchResult": "Indians beat Cambridge University by an Innings and 53 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "134093",
                "matchFilename": "cgin05301936134093",
                "date": "30/05/1936",
                "runs": "3",
                "wicket": "0",
                "overs": null,
                "vsId": "148",
                "vsName": "Cambridge MCCU",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "132641",
                "matchFilename": "cgin06081932132641",
                "date": "08/06/1932",
                "runs": "59",
                "wicket": "1",
                "overs": null,
                "vsId": "148",
                "vsName": "Cambridge MCCU",
                "matchResult": "Indians beat Cambridge University by 9 Wickets"
              }
            },
            {
              "id": "1385",
              "name": "Central Stags",
              "shortName": "CS",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "40",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "161603",
                "matchFilename": "cein12071998161603",
                "date": "07/12/1998",
                "runs": "390",
                "wicket": "10",
                "overs": null,
                "vsId": "1385",
                "vsName": "Central Stags",
                "matchResult": "Central Districts beat Indians by 7 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "161603",
                "matchFilename": "cein12071998161603",
                "date": "07/12/1998",
                "runs": "103",
                "wicket": "10",
                "overs": null,
                "vsId": "1385",
                "vsName": "Central Stags",
                "matchResult": "Central Districts beat Indians by 7 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "149168",
                "matchFilename": "cein01151976149168",
                "date": "15/01/1976",
                "runs": "108",
                "wicket": "4",
                "overs": null,
                "vsId": "1385",
                "vsName": "Central Stags",
                "matchResult": "Indians beat Central Districts by 6 Wickets"
              }
            },
            {
              "id": "218",
              "name": "Central Zone",
              "shortName": "CZ",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139355",
                "matchFilename": "czin01211955139355",
                "date": "21/01/1955",
                "runs": "307",
                "wicket": "7",
                "overs": null,
                "vsId": "218",
                "vsName": "Central Zone",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139355",
                "matchFilename": "czin01211955139355",
                "date": "21/01/1955",
                "runs": "110",
                "wicket": "4",
                "overs": null,
                "vsId": "218",
                "vsName": "Central Zone",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "154",
              "name": "Combined Bowl XI",
              "shortName": "CBI",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "157974",
                "matchFilename": "cexin10311992157974",
                "date": "31/10/1992",
                "runs": "556",
                "wicket": "3",
                "overs": null,
                "vsId": "154",
                "vsName": "Combined Bowl XI",
                "matchResult": "Indians beat Combined Bowl XI by an Innings and 241 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "157974",
                "matchFilename": "cexin10311992157974",
                "date": "31/10/1992",
                "runs": "556",
                "wicket": "3",
                "overs": null,
                "vsId": "154",
                "vsName": "Combined Bowl XI",
                "matchResult": "Indians beat Combined Bowl XI by an Innings and 241 runs "
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "173",
              "name": "Combined Islands",
              "shortName": "CI",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "142645",
                "matchFilename": "cnsin04211962142645",
                "date": "21/04/1962",
                "runs": "218",
                "wicket": "9",
                "overs": null,
                "vsId": "173",
                "vsName": "Combined Islands",
                "matchResult": "Indians beat Combined Islands by 137 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "142645",
                "matchFilename": "cnsin04211962142645",
                "date": "21/04/1962",
                "runs": "202",
                "wicket": "7",
                "overs": null,
                "vsId": "173",
                "vsName": "Combined Islands",
                "matchResult": "Indians beat Combined Islands by 137 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "204",
              "name": "Combined Schools",
              "shortName": "CSC",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139373",
                "matchFilename": "solin02221955139373",
                "date": "22/02/1955",
                "runs": "352",
                "wicket": "5",
                "overs": null,
                "vsId": "204",
                "vsName": "Combined Schools",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139373",
                "matchFilename": "solin02221955139373",
                "date": "22/02/1955",
                "runs": "36",
                "wicket": "2",
                "overs": null,
                "vsId": "204",
                "vsName": "Combined Schools",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "203",
              "name": "Combined Services",
              "shortName": "CS",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139365",
                "matchFilename": "csvin02081955139365",
                "date": "08/02/1955",
                "runs": "304",
                "wicket": "5",
                "overs": null,
                "vsId": "203",
                "vsName": "Combined Services",
                "matchResult": "India beat Combined Services by an Innings and 20 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "135859",
                "matchFilename": "csvin06121946135859",
                "date": "12/06/1946",
                "runs": "116",
                "wicket": "5",
                "overs": null,
                "vsId": "203",
                "vsName": "Combined Services",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "194",
              "name": "Commonwealth XI",
              "shortName": "COM",
              "matchesPlayed": "16",
              "matchesWon": "4",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "25",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "137675",
                "matchFilename": "inclh12301950137675",
                "date": "30/12/1950",
                "runs": "467",
                "wicket": "7",
                "overs": null,
                "vsId": "194",
                "vsName": "Commonwealth XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "137675",
                "matchFilename": "inclh12301950137675",
                "date": "30/12/1950",
                "runs": "39",
                "wicket": "1",
                "overs": null,
                "vsId": "194",
                "vsName": "Commonwealth XI",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "137281",
                "matchFilename": "inclh02171950137281",
                "date": "17/02/1950",
                "runs": "259",
                "wicket": "7",
                "overs": null,
                "vsId": "194",
                "vsName": "Commonwealth XI",
                "matchResult": "India beat Commonwealth XI by 3 Wickets"
              }
            },
            {
              "id": "225",
              "name": "Derbyshire",
              "shortName": "DER",
              "matchesPlayed": "10",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "30",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "164135",
                "matchFilename": "drin08282002164135",
                "date": "28/08/2002",
                "runs": "445",
                "wicket": "8",
                "overs": null,
                "vsId": "225",
                "vsName": "Derbyshire",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141308",
                "matchFilename": "drin06271959141308",
                "date": "27/06/1959",
                "runs": "77",
                "wicket": "2",
                "overs": null,
                "vsId": "225",
                "vsName": "Derbyshire",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "148377",
                "matchFilename": "drin06011974148377",
                "date": "01/06/1974",
                "runs": "197",
                "wicket": "2",
                "overs": null,
                "vsId": "225",
                "vsName": "Derbyshire",
                "matchResult": "Indians beat Derbyshire by 8 Wickets"
              }
            },
            {
              "id": "230",
              "name": "DH Robins XI",
              "shortName": "DHR",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "148322",
                "matchFilename": "dhrin04221974148322",
                "date": "22/04/1974",
                "runs": "350",
                "wicket": "10",
                "overs": null,
                "vsId": "230",
                "vsName": "DH Robins XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "148322",
                "matchFilename": "dhrin04221974148322",
                "date": "22/04/1974",
                "runs": "128",
                "wicket": "3",
                "overs": null,
                "vsId": "230",
                "vsName": "DH Robins XI",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "24",
              "name": "East Africa",
              "shortName": "EA",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "145319",
                "matchFilename": "eain08191967145319",
                "date": "19/08/1967",
                "runs": "386",
                "wicket": "9",
                "overs": null,
                "vsId": "24",
                "vsName": "East Africa",
                "matchResult": "Indians beat East Africa by 8 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "145319",
                "matchFilename": "eain08191967145319",
                "date": "19/08/1967",
                "runs": "199",
                "wicket": "2",
                "overs": null,
                "vsId": "24",
                "vsName": "East Africa",
                "matchResult": "Indians beat East Africa by 8 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "145319",
                "matchFilename": "eain08191967145319",
                "date": "19/08/1967",
                "runs": "199",
                "wicket": "2",
                "overs": null,
                "vsId": "24",
                "vsName": "East Africa",
                "matchResult": "Indians beat East Africa by 8 Wickets"
              }
            },
            {
              "id": "271",
              "name": "Eastern Province",
              "shortName": "EP",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "160447",
                "matchFilename": "epin12211996160447",
                "date": "21/12/1996",
                "runs": "335",
                "wicket": "6",
                "overs": null,
                "vsId": "271",
                "vsName": "Eastern Province",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "160447",
                "matchFilename": "epin12211996160447",
                "date": "21/12/1996",
                "runs": "130",
                "wicket": "2",
                "overs": null,
                "vsId": "271",
                "vsName": "Eastern Province",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "3",
              "name": "England",
              "shortName": "ENG",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "128178",
                "matchFilename": "inen11211918128178",
                "date": "21/11/1918",
                "runs": "500",
                "wicket": "11",
                "overs": null,
                "vsId": "3",
                "vsName": "England",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "128153",
                "matchFilename": "inen12131915128153",
                "date": "13/12/1915",
                "runs": "110",
                "wicket": "11",
                "overs": null,
                "vsId": "3",
                "vsName": "England",
                "matchResult": "England beat India by an Innings and 263 runs "
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "269",
              "name": "England A",
              "shortName": "ENA",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "167321",
                "matchFilename": "egin07132007167321",
                "date": "13/07/2007",
                "runs": "383",
                "wicket": "10",
                "overs": null,
                "vsId": "269",
                "vsName": "England A",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "167321",
                "matchFilename": "egin07132007167321",
                "date": "13/07/2007",
                "runs": "91",
                "wicket": "1",
                "overs": null,
                "vsId": "269",
                "vsName": "England A",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "289",
              "name": "England XI",
              "shortName": "ENG-XI",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "134313",
                "matchFilename": "exin09021936134313",
                "date": "02/09/1936",
                "runs": "372",
                "wicket": "10",
                "overs": null,
                "vsId": "289",
                "vsName": "England XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "132847",
                "matchFilename": "exin09031932132847",
                "date": "03/09/1932",
                "runs": "77",
                "wicket": "10",
                "overs": null,
                "vsId": "289",
                "vsName": "England XI",
                "matchResult": "England XI beat Indians by an Innings and 40 runs "
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "264",
              "name": "English Inv XI",
              "shortName": "EI",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "147197",
                "matchFilename": "eixin09041971147197",
                "date": "04/09/1971",
                "runs": "306",
                "wicket": "10",
                "overs": null,
                "vsId": "264",
                "vsName": "English Inv XI",
                "matchResult": "Indians beat English Inv XI by 5 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "147197",
                "matchFilename": "eixin09041971147197",
                "date": "04/09/1971",
                "runs": "252",
                "wicket": "5",
                "overs": null,
                "vsId": "264",
                "vsName": "English Inv XI",
                "matchResult": "Indians beat English Inv XI by 5 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "147197",
                "matchFilename": "eixin09041971147197",
                "date": "04/09/1971",
                "runs": "251",
                "wicket": "5",
                "overs": null,
                "vsId": "264",
                "vsName": "English Inv XI",
                "matchResult": "Indians beat English Inv XI by 5 Wickets"
              }
            },
            {
              "id": "282",
              "name": "Essex",
              "shortName": "ESS",
              "matchesPlayed": "11",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "9.09",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "164117",
                "matchFilename": "esin08142002164117",
                "date": "14/08/2002",
                "runs": "516",
                "wicket": "10",
                "overs": null,
                "vsId": "282",
                "vsName": "Essex",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141207",
                "matchFilename": "esin05201959141207",
                "date": "20/05/1959",
                "runs": "98",
                "wicket": "2",
                "overs": null,
                "vsId": "282",
                "vsName": "Essex",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "136040",
                "matchFilename": "esin08241946136040",
                "date": "24/08/1946",
                "runs": "367",
                "wicket": "9",
                "overs": null,
                "vsId": "282",
                "vsName": "Essex",
                "matchResult": "Indians beat Essex by 1 Wickets"
              }
            },
            {
              "id": "287",
              "name": "Europeans",
              "shortName": "EUR",
              "matchesPlayed": "32",
              "matchesWon": "15",
              "matchesLost": "9",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "46.88",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "130665",
                "matchFilename": "eusin01131927130665",
                "date": "13/01/1927",
                "runs": "458",
                "wicket": "10",
                "overs": null,
                "vsId": "287",
                "vsName": "Europeans",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "129280",
                "matchFilename": "eusin01141923129280",
                "date": "14/01/1923",
                "runs": "12",
                "wicket": "0",
                "overs": null,
                "vsId": "287",
                "vsName": "Europeans",
                "matchResult": "Indians beat Europeans by 10 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "128184",
                "matchFilename": "eusin01121919128184",
                "date": "12/01/1919",
                "runs": "307",
                "wicket": "6",
                "overs": null,
                "vsId": "287",
                "vsName": "Europeans",
                "matchResult": "Indians beat Europeans by 4 Wickets"
              }
            },
            {
              "id": "308",
              "name": "Free State",
              "shortName": "FS",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "160495",
                "matchFilename": "fsin01111997160495",
                "date": "11/01/1997",
                "runs": "296",
                "wicket": "6",
                "overs": null,
                "vsId": "308",
                "vsName": "Free State",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "160495",
                "matchFilename": "fsin01111997160495",
                "date": "11/01/1997",
                "runs": "185",
                "wicket": "6",
                "overs": null,
                "vsId": "308",
                "vsName": "Free State",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "333",
              "name": "Glamorgan",
              "shortName": "GLA",
              "matchesPlayed": "13",
              "matchesWon": "5",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "38.46",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "135851",
                "matchFilename": "glin06081946135851",
                "date": "08/06/1946",
                "runs": "376",
                "wicket": "6",
                "overs": null,
                "vsId": "333",
                "vsName": "Glamorgan",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "138219",
                "matchFilename": "glin05311952138219",
                "date": "31/05/1952",
                "runs": "85",
                "wicket": "8",
                "overs": null,
                "vsId": "333",
                "vsName": "Glamorgan",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "135990",
                "matchFilename": "glin08031946135990",
                "date": "03/08/1946",
                "runs": "273",
                "wicket": "5",
                "overs": null,
                "vsId": "333",
                "vsName": "Glamorgan",
                "matchResult": "Indians beat Glamorgan by 5 Wickets"
              }
            },
            {
              "id": "334",
              "name": "Gloucestershire",
              "shortName": "GLO",
              "matchesPlayed": "12",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "25",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "160083",
                "matchFilename": "gcin05111996160083",
                "date": "11/05/1996",
                "runs": "406",
                "wicket": "10",
                "overs": null,
                "vsId": "334",
                "vsName": "Gloucestershire",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "127281",
                "matchFilename": "gcin08241911127281",
                "date": "24/08/1911",
                "runs": "74",
                "wicket": "8",
                "overs": null,
                "vsId": "334",
                "vsName": "Gloucestershire",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "148403",
                "matchFilename": "gcin06151974148403",
                "date": "15/06/1974",
                "runs": "195",
                "wicket": "5",
                "overs": null,
                "vsId": "334",
                "vsName": "Gloucestershire",
                "matchResult": "Indians beat Gloucestershire by 5 Wickets"
              }
            },
            {
              "id": "319",
              "name": "Guyana Board Pres XI",
              "shortName": "GBP",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "163971",
                "matchFilename": "gbpin04052002163971",
                "date": "05/04/2002",
                "runs": "248",
                "wicket": "10",
                "overs": null,
                "vsId": "319",
                "vsName": "Guyana Board Pres XI",
                "matchResult": "Indians beat Guyana Board Pres XI by 9 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "163971",
                "matchFilename": "gbpin04052002163971",
                "date": "05/04/2002",
                "runs": "39",
                "wicket": "1",
                "overs": null,
                "vsId": "319",
                "vsName": "Guyana Board Pres XI",
                "matchResult": "Indians beat Guyana Board Pres XI by 9 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "163971",
                "matchFilename": "gbpin04052002163971",
                "date": "05/04/2002",
                "runs": "39",
                "wicket": "1",
                "overs": null,
                "vsId": "319",
                "vsName": "Guyana Board Pres XI",
                "matchResult": "Indians beat Guyana Board Pres XI by 9 Wickets"
              }
            },
            {
              "id": "1197",
              "name": "Guyana Harpy Eagles",
              "shortName": "GUY",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "138547",
                "matchFilename": "gyin03041953138547",
                "date": "04/03/1953",
                "runs": "398",
                "wicket": "10",
                "overs": null,
                "vsId": "1197",
                "vsName": "Guyana Harpy Eagles",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "146921",
                "matchFilename": "gyin03131971146921",
                "date": "13/03/1971",
                "runs": "262",
                "wicket": "10",
                "overs": null,
                "vsId": "1197",
                "vsName": "Guyana Harpy Eagles",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "361",
              "name": "Hampshire",
              "shortName": "HAM",
              "matchesPlayed": "14",
              "matchesWon": "5",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "35.71",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "150775",
                "matchFilename": "hmin07041979150775",
                "date": "04/07/1979",
                "runs": "369",
                "wicket": "3",
                "overs": null,
                "vsId": "361",
                "vsName": "Hampshire",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "132608",
                "matchFilename": "hmin05251932132608",
                "date": "25/05/1932",
                "runs": "51",
                "wicket": "10",
                "overs": null,
                "vsId": "361",
                "vsName": "Hampshire",
                "matchResult": "Hampshire beat Indians by an Innings and 103 runs "
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "152149",
                "matchFilename": "hmin05291982152149",
                "date": "29/05/1982",
                "runs": "296",
                "wicket": "7",
                "overs": null,
                "vsId": "361",
                "vsName": "Hampshire",
                "matchResult": "Indians beat Hampshire by 3 Wickets"
              }
            },
            {
              "id": "509",
              "name": "HDG Leveson Gower's XI",
              "shortName": "LG",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "134317",
                "matchFilename": "llxin09091936134317",
                "date": "09/09/1936",
                "runs": "333",
                "wicket": "10",
                "overs": null,
                "vsId": "509",
                "vsName": "HDG Leveson Gower's XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "136056",
                "matchFilename": "llxin09071946136056",
                "date": "07/09/1946",
                "runs": "139",
                "wicket": "10",
                "overs": null,
                "vsId": "509",
                "vsName": "HDG Leveson Gower's XI",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "13",
              "name": "Ireland",
              "shortName": "IRE",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "134193",
                "matchFilename": "irin07091936134193",
                "date": "09/07/1936",
                "runs": "150",
                "wicket": "10",
                "overs": null,
                "vsId": "13",
                "vsName": "Ireland",
                "matchResult": "Indians beat Ireland by 10 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "134193",
                "matchFilename": "irin07091936134193",
                "date": "09/07/1936",
                "runs": "131",
                "wicket": "0",
                "overs": null,
                "vsId": "13",
                "vsName": "Ireland",
                "matchResult": "Indians beat Ireland by 10 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "134193",
                "matchFilename": "irin07091936134193",
                "date": "09/07/1936",
                "runs": "131",
                "wicket": "0",
                "overs": null,
                "vsId": "13",
                "vsName": "Ireland",
                "matchResult": "Indians beat Ireland by 10 Wickets"
              }
            },
            {
              "id": "423",
              "name": "Jamaica Scorpions",
              "shortName": "JAM",
              "matchesPlayed": "7",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "14.29",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "155926",
                "matchFilename": "jmin04221989155926",
                "date": "22/04/1989",
                "runs": "586",
                "wicket": "10",
                "overs": null,
                "vsId": "423",
                "vsName": "Jamaica Scorpions",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "149252",
                "matchFilename": "jmin04151976149252",
                "date": "15/04/1976",
                "runs": "99",
                "wicket": "1",
                "overs": null,
                "vsId": "423",
                "vsName": "Jamaica Scorpions",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "138555",
                "matchFilename": "jmin03201953138555",
                "date": "20/03/1953",
                "runs": "144",
                "wicket": "4",
                "overs": null,
                "vsId": "423",
                "vsName": "Jamaica Scorpions",
                "matchResult": "Indians beat Jamaica by 6 Wickets"
              }
            },
            {
              "id": "443",
              "name": "Karachi",
              "shortName": "KAI",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139342",
                "matchFilename": "kaiin01071955139342",
                "date": "07/01/1955",
                "runs": "404",
                "wicket": "4",
                "overs": null,
                "vsId": "443",
                "vsName": "Karachi",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139342",
                "matchFilename": "kaiin01071955139342",
                "date": "07/01/1955",
                "runs": "31",
                "wicket": "0",
                "overs": null,
                "vsId": "443",
                "vsName": "Karachi",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "469",
              "name": "Kent",
              "shortName": "KET",
              "matchesPlayed": "11",
              "matchesWon": "2",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "18.18",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "138435",
                "matchFilename": "knin08271952138435",
                "date": "27/08/1952",
                "runs": "392",
                "wicket": "10",
                "overs": null,
                "vsId": "469",
                "vsName": "Kent",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "138435",
                "matchFilename": "knin08271952138435",
                "date": "27/08/1952",
                "runs": "45",
                "wicket": "4",
                "overs": null,
                "vsId": "469",
                "vsName": "Kent",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "156659",
                "matchFilename": "knin07071990156659",
                "date": "07/07/1990",
                "runs": "265",
                "wicket": "3",
                "overs": null,
                "vsId": "469",
                "vsName": "Kent",
                "matchResult": "Indians beat Kent by 7 Wickets"
              }
            },
            {
              "id": "492",
              "name": "Lancashire",
              "shortName": "LAN",
              "matchesPlayed": "13",
              "matchesWon": "3",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "23.08",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "132650",
                "matchFilename": "lain06111932132650",
                "date": "11/06/1932",
                "runs": "493",
                "wicket": "10",
                "overs": null,
                "vsId": "492",
                "vsName": "Lancashire",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "138292",
                "matchFilename": "lain06281952138292",
                "date": "28/06/1952",
                "runs": "5",
                "wicket": "0",
                "overs": null,
                "vsId": "492",
                "vsName": "Lancashire",
                "matchResult": "Indians beat Lancashire by 10 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "135906",
                "matchFilename": "lain06291946135906",
                "date": "29/06/1946",
                "runs": "200",
                "wicket": "2",
                "overs": null,
                "vsId": "492",
                "vsName": "Lancashire",
                "matchResult": "Indians beat Lancashire by 8 Wickets"
              }
            },
            {
              "id": "518",
              "name": "Leeward Islands Hurricanes",
              "shortName": "LEE",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "152618",
                "matchFilename": "liin04221983152618",
                "date": "22/04/1983",
                "runs": "362",
                "wicket": "10",
                "overs": null,
                "vsId": "518",
                "vsName": "Leeward Islands Hurricanes",
                "matchResult": "Indians beat Leeward Islands by 9 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "152618",
                "matchFilename": "liin04221983152618",
                "date": "22/04/1983",
                "runs": "6",
                "wicket": "1",
                "overs": null,
                "vsId": "518",
                "vsName": "Leeward Islands Hurricanes",
                "matchResult": "Indians beat Leeward Islands by 9 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "146899",
                "matchFilename": "liin02251971146899",
                "date": "25/02/1971",
                "runs": "57",
                "wicket": "1",
                "overs": null,
                "vsId": "518",
                "vsName": "Leeward Islands Hurricanes",
                "matchResult": "Indians beat Leeward Islands by 9 Wickets"
              }
            },
            {
              "id": "506",
              "name": "Leicestershire",
              "shortName": "LEI",
              "matchesPlayed": "13",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "9",
              "winPercentage": "23.08",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "127206",
                "matchFilename": "lein07131911127206",
                "date": "13/07/1911",
                "runs": "481",
                "wicket": "10",
                "overs": null,
                "vsId": "506",
                "vsName": "Leicestershire",
                "matchResult": "Indians beat Leicestershire by 7 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "127206",
                "matchFilename": "lein07131911127206",
                "date": "13/07/1911",
                "runs": "53",
                "wicket": "3",
                "overs": null,
                "vsId": "506",
                "vsName": "Leicestershire",
                "matchResult": "Indians beat Leicestershire by 7 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "127206",
                "matchFilename": "lein07131911127206",
                "date": "13/07/1911",
                "runs": "51",
                "wicket": "3",
                "overs": null,
                "vsId": "506",
                "vsName": "Leicestershire",
                "matchResult": "Indians beat Leicestershire by 7 Wickets"
              }
            },
            {
              "id": "962",
              "name": "LH Tennyson's XI",
              "shortName": "TEN",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "40",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "134751",
                "matchFilename": "inlht12311937134751",
                "date": "31/12/1937",
                "runs": "350",
                "wicket": "10",
                "overs": null,
                "vsId": "962",
                "vsName": "LH Tennyson's XI",
                "matchResult": "India beat LH Tennyson's XI by 93 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "134718",
                "matchFilename": "inlht11131937134718",
                "date": "13/11/1937",
                "runs": "121",
                "wicket": "10",
                "overs": null,
                "vsId": "962",
                "vsName": "LH Tennyson's XI",
                "matchResult": "LH Tennyson's XI beat India by 9 Wickets"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "363",
              "name": "Lord Hawke's XI",
              "shortName": "HAW",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "122783",
                "matchFilename": "inhax01261893122783",
                "date": "26/01/1893",
                "runs": "199",
                "wicket": "10",
                "overs": null,
                "vsId": "363",
                "vsName": "Lord Hawke's XI",
                "matchResult": "Lord Hawke's XI beat India by an Innings and 5 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "122783",
                "matchFilename": "inhax01261893122783",
                "date": "26/01/1893",
                "runs": "139",
                "wicket": "10",
                "overs": null,
                "vsId": "363",
                "vsName": "Lord Hawke's XI",
                "matchResult": "Lord Hawke's XI beat India by an Innings and 5 runs "
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "562",
              "name": "MCC",
              "shortName": "MCC",
              "matchesPlayed": "12",
              "matchesWon": "1",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "8.33",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "135820",
                "matchFilename": "ccmin05251946135820",
                "date": "25/05/1946",
                "runs": "438",
                "wicket": "9",
                "overs": null,
                "vsId": "562",
                "vsName": "MCC",
                "matchResult": "Indians beat Marylebone Cricket Club by an Innings and 194 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "127135",
                "matchFilename": "ccmin06081911127135",
                "date": "08/06/1911",
                "runs": "96",
                "wicket": "10",
                "overs": null,
                "vsId": "562",
                "vsName": "MCC",
                "matchResult": "Marylebone Cricket Club beat Indians by an Innings and 168 runs "
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1113",
              "name": "Middlesex",
              "shortName": "MID",
              "matchesPlayed": "6",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "136051",
                "matchFilename": "msin08311946136051",
                "date": "31/08/1946",
                "runs": "469",
                "wicket": "5",
                "overs": null,
                "vsId": "1113",
                "vsName": "Middlesex",
                "matchResult": "Indians beat Middlesex by an Innings and 263 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "132750",
                "matchFilename": "msin07201932132750",
                "date": "20/07/1932",
                "runs": "14",
                "wicket": "2",
                "overs": null,
                "vsId": "1113",
                "vsName": "Middlesex",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "147057",
                "matchFilename": "msin06231971147057",
                "date": "23/06/1971",
                "runs": "197",
                "wicket": "8",
                "overs": null,
                "vsId": "1113",
                "vsName": "Middlesex",
                "matchResult": "Indians beat Middlesex by 2 Wickets"
              }
            },
            {
              "id": "560",
              "name": "Minor Counties",
              "shortName": "MC",
              "matchesPlayed": "5",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "20",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "156660",
                "matchFilename": "mtiin07111990156660",
                "date": "11/07/1990",
                "runs": "512",
                "wicket": "6",
                "overs": null,
                "vsId": "560",
                "vsName": "Minor Counties",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "147122",
                "matchFilename": "mtiin07281971147122",
                "date": "28/07/1971",
                "runs": "26",
                "wicket": "0",
                "overs": null,
                "vsId": "560",
                "vsName": "Minor Counties",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1136",
              "name": "New South Wales",
              "shortName": "NSW",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "40",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "149984",
                "matchFilename": "nsin11181977149984",
                "date": "18/11/1977",
                "runs": "386",
                "wicket": "5",
                "overs": null,
                "vsId": "1136",
                "vsName": "New South Wales",
                "matchResult": "Indians beat New South Wales by 6 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "145458",
                "matchFilename": "nsin01061968145458",
                "date": "06/01/1968",
                "runs": "100",
                "wicket": "6",
                "overs": null,
                "vsId": "1136",
                "vsName": "New South Wales",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "149984",
                "matchFilename": "nsin11181977149984",
                "date": "18/11/1977",
                "runs": "160",
                "wicket": "4",
                "overs": null,
                "vsId": "1136",
                "vsName": "New South Wales",
                "matchResult": "Indians beat New South Wales by 6 Wickets"
              }
            },
            {
              "id": "690",
              "name": "New Zealand Inv XI",
              "shortName": "NZI",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "156401",
                "matchFilename": "nziin01221990156401",
                "date": "22/01/1990",
                "runs": "512",
                "wicket": "10",
                "overs": null,
                "vsId": "690",
                "vsName": "New Zealand Inv XI",
                "matchResult": "Indians beat NZ President's XI by 195 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "156401",
                "matchFilename": "nziin01221990156401",
                "date": "22/01/1990",
                "runs": "185",
                "wicket": "10",
                "overs": null,
                "vsId": "690",
                "vsName": "New Zealand Inv XI",
                "matchResult": "Indians beat NZ President's XI by 195 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "693",
              "name": "New Zealand President's XI",
              "shortName": "NZP",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "145503",
                "matchFilename": "nzpin02051968145503",
                "date": "05/02/1968",
                "runs": "264",
                "wicket": "7",
                "overs": null,
                "vsId": "693",
                "vsName": "New Zealand President's XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "145503",
                "matchFilename": "nzpin02051968145503",
                "date": "05/02/1968",
                "runs": "105",
                "wicket": "10",
                "overs": null,
                "vsId": "693",
                "vsName": "New Zealand President's XI",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "691",
              "name": "North Zone (P)",
              "shortName": "NZK",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139371",
                "matchFilename": "nzkin02181955139371",
                "date": "18/02/1955",
                "runs": "300",
                "wicket": "8",
                "overs": null,
                "vsId": "691",
                "vsName": "North Zone (P)",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139371",
                "matchFilename": "nzkin02181955139371",
                "date": "18/02/1955",
                "runs": "191",
                "wicket": "2",
                "overs": null,
                "vsId": "691",
                "vsName": "North Zone (P)",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "644",
              "name": "Northamptonshire",
              "shortName": "NOR",
              "matchesPlayed": "11",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "18.18",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141272",
                "matchFilename": "noin06131959141272",
                "date": "13/06/1959",
                "runs": "428",
                "wicket": "6",
                "overs": null,
                "vsId": "644",
                "vsName": "Northamptonshire",
                "matchResult": "Indians beat Northamptonshire by an Innings and 9 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "132633",
                "matchFilename": "noin06041932132633",
                "date": "04/06/1932",
                "runs": "29",
                "wicket": "0",
                "overs": null,
                "vsId": "644",
                "vsName": "Northamptonshire",
                "matchResult": "Indians beat Northamptonshire by 10 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "132633",
                "matchFilename": "noin06041932132633",
                "date": "04/06/1932",
                "runs": "28",
                "wicket": "0",
                "overs": null,
                "vsId": "644",
                "vsName": "Northamptonshire",
                "matchResult": "Indians beat Northamptonshire by 10 Wickets"
              }
            },
            {
              "id": "633",
              "name": "Northern Districts",
              "shortName": "ND",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "156471",
                "matchFilename": "nuin02161990156471",
                "date": "16/02/1990",
                "runs": "356",
                "wicket": "6",
                "overs": null,
                "vsId": "633",
                "vsName": "Northern Districts",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "149183",
                "matchFilename": "nuin01201976149183",
                "date": "20/01/1976",
                "runs": "199",
                "wicket": "10",
                "overs": null,
                "vsId": "633",
                "vsName": "Northern Districts",
                "matchResult": "Indians beat Northern Districts by 141 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "660",
              "name": "Nottinghamshire",
              "shortName": "NOT",
              "matchesPlayed": "10",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "145215",
                "matchFilename": "ntin07051967145215",
                "date": "05/07/1967",
                "runs": "438",
                "wicket": "9",
                "overs": null,
                "vsId": "660",
                "vsName": "Nottinghamshire",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "138310",
                "matchFilename": "ntin07051952138310",
                "date": "05/07/1952",
                "runs": "16",
                "wicket": "0",
                "overs": null,
                "vsId": "660",
                "vsName": "Nottinghamshire",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "620",
              "name": "NZ Academy",
              "shortName": "NAC",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "158772",
                "matchFilename": "nacin03141994158772",
                "date": "14/03/1994",
                "runs": "96",
                "wicket": "1",
                "overs": null,
                "vsId": "620",
                "vsName": "NZ Academy",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "158772",
                "matchFilename": "nacin03141994158772",
                "date": "14/03/1994",
                "runs": "96",
                "wicket": "1",
                "overs": null,
                "vsId": "620",
                "vsName": "NZ Academy",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1139",
              "name": "Otago Volts",
              "shortName": "OV",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "151585",
                "matchFilename": "ovin02281981151585",
                "date": "28/02/1981",
                "runs": "318",
                "wicket": "10",
                "overs": null,
                "vsId": "1139",
                "vsName": "Otago Volts",
                "matchResult": "Indians beat Otago by an Innings and 14 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "149203",
                "matchFilename": "ovin01311976149203",
                "date": "31/01/1976",
                "runs": "144",
                "wicket": "10",
                "overs": null,
                "vsId": "1139",
                "vsName": "Otago Volts",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "712",
              "name": "Oxford MCCU",
              "shortName": "OXF",
              "matchesPlayed": "7",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "42.86",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141225",
                "matchFilename": "oxin05271959141225",
                "date": "27/05/1959",
                "runs": "459",
                "wicket": "4",
                "overs": null,
                "vsId": "712",
                "vsName": "Oxford MCCU",
                "matchResult": "Indians beat Oxford University by an Innings and 53 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "132591",
                "matchFilename": "oxin05181932132591",
                "date": "18/05/1932",
                "runs": "32",
                "wicket": "2",
                "overs": null,
                "vsId": "712",
                "vsName": "Oxford MCCU",
                "matchResult": "Indians beat Oxford University by 8 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "138192",
                "matchFilename": "oxin05211952138192",
                "date": "21/05/1952",
                "runs": "62",
                "wicket": "1",
                "overs": null,
                "vsId": "712",
                "vsName": "Oxford MCCU",
                "matchResult": "Indians beat Oxford University by 9 Wickets"
              }
            },
            {
              "id": "742",
              "name": "Pakistan Inv XI",
              "shortName": "PI",
              "matchesPlayed": "8",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "12.5",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "152460",
                "matchFilename": "pixin12181982152460",
                "date": "18/12/1982",
                "runs": "328",
                "wicket": "9",
                "overs": null,
                "vsId": "742",
                "vsName": "Pakistan Inv XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "152407",
                "matchFilename": "pixin11291982152407",
                "date": "29/11/1982",
                "runs": "86",
                "wicket": "3",
                "overs": null,
                "vsId": "742",
                "vsName": "Pakistan Inv XI",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "152505",
                "matchFilename": "pixin01101983152505",
                "date": "10/01/1983",
                "runs": "250",
                "wicket": "6",
                "overs": null,
                "vsId": "742",
                "vsName": "Pakistan Inv XI",
                "matchResult": "Indians beat Pakistan Inv XI by 4 Wickets"
              }
            },
            {
              "id": "777",
              "name": "Pakistan Universities",
              "shortName": "PU",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "150430",
                "matchFilename": "puvin10231978150430",
                "date": "23/10/1978",
                "runs": "193",
                "wicket": "8",
                "overs": null,
                "vsId": "777",
                "vsName": "Pakistan Universities",
                "matchResult": "Indians beat Pakistan Universities by 2 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "150430",
                "matchFilename": "puvin10231978150430",
                "date": "23/10/1978",
                "runs": "149",
                "wicket": "10",
                "overs": null,
                "vsId": "777",
                "vsName": "Pakistan Universities",
                "matchResult": "Indians beat Pakistan Universities by 2 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "150430",
                "matchFilename": "puvin10231978150430",
                "date": "23/10/1978",
                "runs": "193",
                "wicket": "8",
                "overs": null,
                "vsId": "777",
                "vsName": "Pakistan Universities",
                "matchResult": "Indians beat Pakistan Universities by 2 Wickets"
              }
            },
            {
              "id": "755",
              "name": "Punjab Pakistan",
              "shortName": "PP",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139361",
                "matchFilename": "ppkin02031955139361",
                "date": "03/02/1955",
                "runs": "422",
                "wicket": "6",
                "overs": null,
                "vsId": "755",
                "vsName": "Punjab Pakistan",
                "matchResult": "India beat Punjab (P) by an Innings and 162 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "150440",
                "matchFilename": "ppkin11051978150440",
                "date": "05/11/1978",
                "runs": "230",
                "wicket": "10",
                "overs": null,
                "vsId": "755",
                "vsName": "Punjab Pakistan",
                "matchResult": "Indians beat Punjab by 145 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "44",
              "name": "Queensland",
              "shortName": "QUN",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "40",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "157533",
                "matchFilename": "qlin12201991157533",
                "date": "20/12/1991",
                "runs": "454",
                "wicket": "9",
                "overs": null,
                "vsId": "44",
                "vsName": "Queensland",
                "matchResult": "Indians beat Queensland by 39 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "157533",
                "matchFilename": "qlin12201991157533",
                "date": "20/12/1991",
                "runs": "177",
                "wicket": "2",
                "overs": null,
                "vsId": "44",
                "vsName": "Queensland",
                "matchResult": "Indians beat Queensland by 39 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "830",
              "name": "Rest of India",
              "shortName": "ROI",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "132537",
                "matchFilename": "inri02021932132537",
                "date": "02/02/1932",
                "runs": "287",
                "wicket": "10",
                "overs": null,
                "vsId": "830",
                "vsName": "Rest of India",
                "matchResult": "India beat Rest of India by 153 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "132537",
                "matchFilename": "inri02021932132537",
                "date": "02/02/1932",
                "runs": "238",
                "wicket": "11",
                "overs": null,
                "vsId": "830",
                "vsName": "Rest of India",
                "matchResult": "India beat Rest of India by 153 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "841",
              "name": "Rest of South Africa",
              "shortName": "RSA",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "166883",
                "matchFilename": "rsain12072006166883",
                "date": "07/12/2006",
                "runs": "316",
                "wicket": "7",
                "overs": null,
                "vsId": "841",
                "vsName": "Rest of South Africa",
                "matchResult": "Indians beat Rest of South Africa by 96 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "166883",
                "matchFilename": "rsain12072006166883",
                "date": "07/12/2006",
                "runs": "142",
                "wicket": "10",
                "overs": null,
                "vsId": "841",
                "vsName": "Rest of South Africa",
                "matchResult": "Indians beat Rest of South Africa by 96 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "833",
              "name": "Rest of the World",
              "shortName": "ROW",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "156742",
                "matchFilename": "rowin08291990156742",
                "date": "29/08/1990",
                "runs": "292",
                "wicket": "10",
                "overs": null,
                "vsId": "833",
                "vsName": "Rest of the World",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "156742",
                "matchFilename": "rowin08291990156742",
                "date": "29/08/1990",
                "runs": "253",
                "wicket": "6",
                "overs": null,
                "vsId": "833",
                "vsName": "Rest of the World",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "16",
              "name": "Scotland",
              "shortName": "SCO",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141334",
                "matchFilename": "scin07081959141334",
                "date": "08/07/1959",
                "runs": "293",
                "wicket": "10",
                "overs": null,
                "vsId": "16",
                "vsName": "Scotland",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "132759",
                "matchFilename": "scin07231932132759",
                "date": "23/07/1932",
                "runs": "146",
                "wicket": "10",
                "overs": null,
                "vsId": "16",
                "vsName": "Scotland",
                "matchResult": "Indians beat Scotland by 200 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "913",
              "name": "Sindh",
              "shortName": "SIN",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "150443",
                "matchFilename": "sndin11091978150443",
                "date": "09/11/1978",
                "runs": "286",
                "wicket": "5",
                "overs": null,
                "vsId": "913",
                "vsName": "Sindh",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "139344",
                "matchFilename": "sndin01111955139344",
                "date": "11/01/1955",
                "runs": "283",
                "wicket": "5",
                "overs": null,
                "vsId": "913",
                "vsName": "Sindh",
                "matchResult": "India beat Sind by an Innings and 70 runs "
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1185",
              "name": "Somerset",
              "shortName": "SOM",
              "matchesPlayed": "11",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "18.18",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141234",
                "matchFilename": "soin05301959141234",
                "date": "30/05/1959",
                "runs": "432",
                "wicket": "9",
                "overs": null,
                "vsId": "1185",
                "vsName": "Somerset",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "135980",
                "matchFilename": "soin07311946135980",
                "date": "31/07/1946",
                "runs": "64",
                "wicket": "10",
                "overs": null,
                "vsId": "1185",
                "vsName": "Somerset",
                "matchResult": "Somerset beat Indians by an Innings and 11 runs "
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "127213",
                "matchFilename": "soin07171911127213",
                "date": "17/07/1911",
                "runs": "265",
                "wicket": "9",
                "overs": null,
                "vsId": "1185",
                "vsName": "Somerset",
                "matchResult": "Indians beat Somerset by 1 Wickets"
              }
            },
            {
              "id": "7",
              "name": "South Africa",
              "shortName": "SA",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "163603",
                "matchFilename": "sain11232001163603",
                "date": "23/11/2001",
                "runs": "261",
                "wicket": "8",
                "overs": null,
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "South Africa beat India by an Innings and 73 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "163603",
                "matchFilename": "sain11232001163603",
                "date": "23/11/2001",
                "runs": "232",
                "wicket": "9",
                "overs": null,
                "vsId": "7",
                "vsName": "South Africa",
                "matchResult": "South Africa beat India by an Innings and 73 runs "
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "859",
              "name": "South Africa Pres XI",
              "shortName": "SAP",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "157982",
                "matchFilename": "asxin11061992157982",
                "date": "06/11/1992",
                "runs": "164",
                "wicket": "10",
                "overs": null,
                "vsId": "859",
                "vsName": "South Africa Pres XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "157982",
                "matchFilename": "asxin11061992157982",
                "date": "06/11/1992",
                "runs": "9",
                "wicket": "0",
                "overs": null,
                "vsId": "859",
                "vsName": "South Africa Pres XI",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "857",
              "name": "South African Invitation XI",
              "shortName": "SA XI",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "158011",
                "matchFilename": "iqin11201992158011",
                "date": "20/11/1992",
                "runs": "312",
                "wicket": "8",
                "overs": null,
                "vsId": "857",
                "vsName": "South African Invitation XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "158011",
                "matchFilename": "iqin11201992158011",
                "date": "20/11/1992",
                "runs": "250",
                "wicket": "10",
                "overs": null,
                "vsId": "857",
                "vsName": "South African Invitation XI",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "45",
              "name": "South Australia",
              "shortName": "SAU",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "40",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "151437",
                "matchFilename": "srin11291980151437",
                "date": "29/11/1980",
                "runs": "456",
                "wicket": "9",
                "overs": null,
                "vsId": "45",
                "vsName": "South Australia",
                "matchResult": "South Australia beat Indians by 43 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "151437",
                "matchFilename": "srin11291980151437",
                "date": "29/11/1980",
                "runs": "78",
                "wicket": "10",
                "overs": null,
                "vsId": "45",
                "vsName": "South Australia",
                "matchResult": "South Australia beat Indians by 43 Runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "154031",
                "matchFilename": "srin11291985154031",
                "date": "29/11/1985",
                "runs": "326",
                "wicket": "6",
                "overs": null,
                "vsId": "45",
                "vsName": "South Australia",
                "matchResult": "Indians beat South Australia by 4 Wickets"
              }
            },
            {
              "id": "871",
              "name": "South of England",
              "shortName": "SE",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "136053",
                "matchFilename": "eldin09041946136053",
                "date": "04/09/1946",
                "runs": "253",
                "wicket": "3",
                "overs": null,
                "vsId": "871",
                "vsName": "South of England",
                "matchResult": "Indians beat South of England by 10 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "136053",
                "matchFilename": "eldin09041946136053",
                "date": "04/09/1946",
                "runs": "241",
                "wicket": "10",
                "overs": null,
                "vsId": "871",
                "vsName": "South of England",
                "matchResult": "Indians beat South of England by 10 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "8",
              "name": "Sri Lanka",
              "shortName": "SL",
              "matchesPlayed": "13",
              "matchesWon": "5",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "38.46",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "143993",
                "matchFilename": "insl12111964143993",
                "date": "11/12/1964",
                "runs": "508",
                "wicket": "4",
                "overs": null,
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "India beat Sri Lankans by an Innings and 46 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "144030",
                "matchFilename": "insl01021965144030",
                "date": "02/01/1965",
                "runs": "66",
                "wicket": "10",
                "overs": null,
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Sri Lankans beat India by 4 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "148260",
                "matchFilename": "slin02081974148260",
                "date": "08/02/1974",
                "runs": "68",
                "wicket": "4",
                "overs": null,
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Indians beat Sri Lanka by 6 Wickets"
              }
            },
            {
              "id": "900",
              "name": "Sri Lanka A",
              "shortName": "SL-A",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "167344",
                "matchFilename": "insk08032007167344",
                "date": "03/08/2007",
                "runs": "238",
                "wicket": "5",
                "overs": null,
                "vsId": "900",
                "vsName": "Sri Lanka A",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "167344",
                "matchFilename": "insk08032007167344",
                "date": "03/08/2007",
                "runs": "187",
                "wicket": "6",
                "overs": null,
                "vsId": "900",
                "vsName": "Sri Lanka A",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "905",
              "name": "Sri Lankan Invitation XI",
              "shortName": "SLI",
              "matchesPlayed": "7",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "158363",
                "matchFilename": "lixin07121993158363",
                "date": "12/07/1993",
                "runs": "342",
                "wicket": "6",
                "overs": null,
                "vsId": "905",
                "vsName": "Sri Lankan Invitation XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "148238",
                "matchFilename": "lixin01181974148238",
                "date": "18/01/1974",
                "runs": "78",
                "wicket": "1",
                "overs": null,
                "vsId": "905",
                "vsName": "Sri Lankan Invitation XI",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "944",
              "name": "Surrey",
              "shortName": "SUR",
              "matchesPlayed": "12",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "25",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "135792",
                "matchFilename": "sgin05111946135792",
                "date": "11/05/1946",
                "runs": "454",
                "wicket": "10",
                "overs": null,
                "vsId": "944",
                "vsName": "Surrey",
                "matchResult": "Indians beat Surrey by 9 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "135792",
                "matchFilename": "sgin05111946135792",
                "date": "11/05/1946",
                "runs": "20",
                "wicket": "1",
                "overs": null,
                "vsId": "944",
                "vsName": "Surrey",
                "matchResult": "Indians beat Surrey by 9 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "138361",
                "matchFilename": "sgin07261952138361",
                "date": "26/07/1952",
                "runs": "212",
                "wicket": "4",
                "overs": null,
                "vsId": "944",
                "vsName": "Surrey",
                "matchResult": "Indians beat Surrey by 6 Wickets"
              }
            },
            {
              "id": "1186",
              "name": "Sussex",
              "shortName": "SUS",
              "matchesPlayed": "9",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "11.11",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "135975",
                "matchFilename": "ssin07271946135975",
                "date": "27/07/1946",
                "runs": "533",
                "wicket": "3",
                "overs": null,
                "vsId": "1186",
                "vsName": "Sussex",
                "matchResult": "Indians beat Sussex by 9 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "127275",
                "matchFilename": "ssin08211911127275",
                "date": "21/08/1911",
                "runs": "138",
                "wicket": "10",
                "overs": null,
                "vsId": "1186",
                "vsName": "Sussex",
                "matchResult": "Sussex beat Indians by 10 Runs"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "135975",
                "matchFilename": "ssin07271946135975",
                "date": "27/07/1946",
                "runs": "148",
                "wicket": "1",
                "overs": null,
                "vsId": "1186",
                "vsName": "Sussex",
                "matchResult": "Indians beat Sussex by 9 Wickets"
              }
            },
            {
              "id": "46",
              "name": "Tasmania",
              "shortName": "TAS",
              "matchesPlayed": "6",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "16.67",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "136509",
                "matchFilename": "tain01151948136509",
                "date": "15/01/1948",
                "runs": "457",
                "wicket": "7",
                "overs": null,
                "vsId": "46",
                "vsName": "Tasmania",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "136509",
                "matchFilename": "tain01151948136509",
                "date": "15/01/1948",
                "runs": "12",
                "wicket": "1",
                "overs": null,
                "vsId": "46",
                "vsName": "Tasmania",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "728",
              "name": "TN Pearce's XI",
              "shortName": "PEA",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141471",
                "matchFilename": "tnpin09091959141471",
                "date": "09/09/1959",
                "runs": "310",
                "wicket": "10",
                "overs": null,
                "vsId": "728",
                "vsName": "TN Pearce's XI",
                "matchResult": "TN Pearce's XI beat Indians by 5 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "141471",
                "matchFilename": "tnpin09091959141471",
                "date": "09/09/1959",
                "runs": "176",
                "wicket": "10",
                "overs": null,
                "vsId": "728",
                "vsName": "TN Pearce's XI",
                "matchResult": "TN Pearce's XI beat Indians by 5 Wickets"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1138",
              "name": "Trinidad & Tobago Red Force",
              "shortName": "TRI",
              "matchesPlayed": "5",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "20",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "146908",
                "matchFilename": "ttin03011971146908",
                "date": "01/03/1971",
                "runs": "464",
                "wicket": "7",
                "overs": null,
                "vsId": "1138",
                "vsName": "Trinidad & Tobago Red Force",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "138515",
                "matchFilename": "ttin01131953138515",
                "date": "13/01/1953",
                "runs": "81",
                "wicket": "0",
                "overs": null,
                "vsId": "1138",
                "vsName": "Trinidad & Tobago Red Force",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "861",
              "name": "University Sport South Africa",
              "shortName": "SAS",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "158079",
                "matchFilename": "ssain12211992158079",
                "date": "21/12/1992",
                "runs": "273",
                "wicket": "8",
                "overs": null,
                "vsId": "861",
                "vsName": "University Sport South Africa",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "158079",
                "matchFilename": "ssain12211992158079",
                "date": "21/12/1992",
                "runs": "273",
                "wicket": "8",
                "overs": null,
                "vsId": "861",
                "vsName": "University Sport South Africa",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1137",
              "name": "Victoria",
              "shortName": "VCT",
              "matchesPlayed": "7",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "28.57",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "136453",
                "matchFilename": "vcin10301947136453",
                "date": "30/10/1947",
                "runs": "403",
                "wicket": "10",
                "overs": null,
                "vsId": "1137",
                "vsName": "Victoria",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "151552",
                "matchFilename": "vcin01301981151552",
                "date": "30/01/1981",
                "runs": "102",
                "wicket": "0",
                "overs": null,
                "vsId": "1137",
                "vsName": "Victoria",
                "matchResult": "Indians beat Victoria by 10 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "149973",
                "matchFilename": "vcin11111977149973",
                "date": "11/11/1977",
                "runs": "130",
                "wicket": "4",
                "overs": null,
                "vsId": "1137",
                "vsName": "Victoria",
                "matchResult": "Indians beat Victoria by 6 Wickets"
              }
            },
            {
              "id": "1007",
              "name": "Warwickshire",
              "shortName": "WAS",
              "matchesPlayed": "9",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "11.11",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "147093",
                "matchFilename": "wwin07101971147093",
                "date": "10/07/1971",
                "runs": "562",
                "wicket": "10",
                "overs": null,
                "vsId": "1007",
                "vsName": "Warwickshire",
                "matchResult": "Indians beat Warwickshire by an Innings and 3 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "135999",
                "matchFilename": "wwin08071946135999",
                "date": "07/08/1946",
                "runs": "21",
                "wicket": "1",
                "overs": null,
                "vsId": "1007",
                "vsName": "Warwickshire",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1015",
              "name": "Wellington Firebirds",
              "shortName": "WF",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "161614",
                "matchFilename": "vein12121998161614",
                "date": "12/12/1998",
                "runs": "268",
                "wicket": "10",
                "overs": null,
                "vsId": "1015",
                "vsName": "Wellington Firebirds",
                "matchResult": "Indians beat Wellington by 8 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "161614",
                "matchFilename": "vein12121998161614",
                "date": "12/12/1998",
                "runs": "175",
                "wicket": "2",
                "overs": null,
                "vsId": "1015",
                "vsName": "Wellington Firebirds",
                "matchResult": "Indians beat Wellington by 8 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "161614",
                "matchFilename": "vein12121998161614",
                "date": "12/12/1998",
                "runs": "174",
                "wicket": "2",
                "overs": null,
                "vsId": "1015",
                "vsName": "Wellington Firebirds",
                "matchResult": "Indians beat Wellington by 8 Wickets"
              }
            },
            {
              "id": "1020",
              "name": "West Indies A",
              "shortName": "WI-A",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "164082",
                "matchFilename": "inwt07162002164082",
                "date": "16/07/2002",
                "runs": "255",
                "wicket": "10",
                "overs": null,
                "vsId": "1020",
                "vsName": "West Indies A",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "164082",
                "matchFilename": "inwt07162002164082",
                "date": "16/07/2002",
                "runs": "253",
                "wicket": "7",
                "overs": null,
                "vsId": "1020",
                "vsName": "West Indies A",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1024",
              "name": "West Indies Inv XI",
              "shortName": "WII",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "155881",
                "matchFilename": "wiiin03021989155881",
                "date": "02/03/1989",
                "runs": "356",
                "wicket": "10",
                "overs": null,
                "vsId": "1024",
                "vsName": "West Indies Inv XI",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "155907",
                "matchFilename": "wiiin04011989155907",
                "date": "01/04/1989",
                "runs": "103",
                "wicket": "9",
                "overs": null,
                "vsId": "1024",
                "vsName": "West Indies Inv XI",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1117",
              "name": "Western Australia",
              "shortName": "WAU",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "151421",
                "matchFilename": "wsin11221980151421",
                "date": "22/11/1980",
                "runs": "312",
                "wicket": "4",
                "overs": null,
                "vsId": "1117",
                "vsName": "Western Australia",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "151421",
                "matchFilename": "wsin11221980151421",
                "date": "22/11/1980",
                "runs": "116",
                "wicket": "1",
                "overs": null,
                "vsId": "1117",
                "vsName": "Western Australia",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1027",
              "name": "Windward Islands Volcanoes",
              "shortName": "WIS",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "152602",
                "matchFilename": "wmin03181983152602",
                "date": "18/03/1983",
                "runs": "287",
                "wicket": "10",
                "overs": null,
                "vsId": "1027",
                "vsName": "Windward Islands Volcanoes",
                "matchResult": "Indians beat Windward Islands by 129 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "149224",
                "matchFilename": "wmin02261976149224",
                "date": "26/02/1976",
                "runs": "39",
                "wicket": "0",
                "overs": null,
                "vsId": "1027",
                "vsName": "Windward Islands Volcanoes",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1032",
              "name": "Worcestershire",
              "shortName": "WOR",
              "matchesPlayed": "11",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "9.09",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "164102",
                "matchFilename": "woin07312002164102",
                "date": "31/07/2002",
                "runs": "417",
                "wicket": "8",
                "overs": null,
                "vsId": "1032",
                "vsName": "Worcestershire",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "145069",
                "matchFilename": "woin05031967145069",
                "date": "03/05/1967",
                "runs": "106",
                "wicket": "8",
                "overs": null,
                "vsId": "1032",
                "vsName": "Worcestershire",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "132668",
                "matchFilename": "woin06181932132668",
                "date": "18/06/1932",
                "runs": "208",
                "wicket": "7",
                "overs": null,
                "vsId": "1032",
                "vsName": "Worcestershire",
                "matchResult": "Indians beat Worcestershire by 3 Wickets"
              }
            },
            {
              "id": "1062",
              "name": "Yorkshire",
              "shortName": "YOR",
              "matchesPlayed": "14",
              "matchesWon": "1",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "7.14",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "135945",
                "matchFilename": "yoin07131946135945",
                "date": "13/07/1946",
                "runs": "490",
                "wicket": "5",
                "overs": null,
                "vsId": "1062",
                "vsName": "Yorkshire",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "132742",
                "matchFilename": "yoin07161932132742",
                "date": "16/07/1932",
                "runs": "66",
                "wicket": "10",
                "overs": null,
                "vsId": "1062",
                "vsName": "Yorkshire",
                "matchResult": "Yorkshire beat Indians by 6 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "154402",
                "matchFilename": "yoin07121986154402",
                "date": "12/07/1986",
                "runs": "255",
                "wicket": "5",
                "overs": null,
                "vsId": "1062",
                "vsName": "Yorkshire",
                "matchResult": "Indians beat Yorkshire by 5 Wickets"
              }
            },
            {
              "id": "1056",
              "name": "Young England",
              "shortName": "YE",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "156717",
                "matchFilename": "yenin08151990156717",
                "date": "15/08/1990",
                "runs": "293",
                "wicket": "6",
                "overs": null,
                "vsId": "1056",
                "vsName": "Young England",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "156717",
                "matchFilename": "yenin08151990156717",
                "date": "15/08/1990",
                "runs": "238",
                "wicket": "3",
                "overs": null,
                "vsId": "1056",
                "vsName": "Young England",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1061",
              "name": "Young New Zealand",
              "shortName": "YNZ",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "158763",
                "matchFilename": "yznin03101994158763",
                "date": "10/03/1994",
                "runs": "352",
                "wicket": "10",
                "overs": null,
                "vsId": "1061",
                "vsName": "Young New Zealand",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "158763",
                "matchFilename": "yznin03101994158763",
                "date": "10/03/1994",
                "runs": "352",
                "wicket": "10",
                "overs": null,
                "vsId": "1061",
                "vsName": "Young New Zealand",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1066",
              "name": "Young Sri Lanka",
              "shortName": "YSL",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "153896",
                "matchFilename": "yslin08211985153896",
                "date": "21/08/1985",
                "runs": "296",
                "wicket": "10",
                "overs": null,
                "vsId": "1066",
                "vsName": "Young Sri Lanka",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "153896",
                "matchFilename": "yslin08211985153896",
                "date": "21/08/1985",
                "runs": "296",
                "wicket": "10",
                "overs": null,
                "vsId": "1066",
                "vsName": "Young Sri Lanka",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1068",
              "name": "Young West Indies",
              "shortName": "YWI",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "155896",
                "matchFilename": "ywiin03141989155896",
                "date": "14/03/1989",
                "runs": "411",
                "wicket": "6",
                "overs": null,
                "vsId": "1068",
                "vsName": "Young West Indies",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "155896",
                "matchFilename": "ywiin03141989155896",
                "date": "14/03/1989",
                "runs": "39",
                "wicket": "0",
                "overs": null,
                "vsId": "1068",
                "vsName": "Young West Indies",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1071",
              "name": "Zimbabwe A",
              "shortName": "ZIM-A",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "163324",
                "matchFilename": "zain05282001163324",
                "date": "28/05/2001",
                "runs": "336",
                "wicket": "9",
                "overs": null,
                "vsId": "1071",
                "vsName": "Zimbabwe A",
                "matchResult": "Drawn"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "163324",
                "matchFilename": "zain05282001163324",
                "date": "28/05/2001",
                "runs": "150",
                "wicket": "7",
                "overs": null,
                "vsId": "1071",
                "vsName": "Zimbabwe A",
                "matchResult": "Drawn"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1072",
              "name": "Zimbabwe Academy",
              "shortName": "ZAC",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "163334",
                "matchFilename": "zacin06022001163334",
                "date": "02/06/2001",
                "runs": "447",
                "wicket": "4",
                "overs": null,
                "vsId": "1072",
                "vsName": "Zimbabwe Academy",
                "matchResult": "Indians beat Zimbabwe Academy by 226 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "163334",
                "matchFilename": "zacin06022001163334",
                "date": "02/06/2001",
                "runs": "128",
                "wicket": "5",
                "overs": null,
                "vsId": "1072",
                "vsName": "Zimbabwe Academy",
                "matchResult": "Indians beat Zimbabwe Academy by 226 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1075",
              "name": "Zimbabwe Inv XI",
              "shortName": "ZI",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "161453",
                "matchFilename": "zixin10021998161453",
                "date": "02/10/1998",
                "runs": "400",
                "wicket": "5",
                "overs": null,
                "vsId": "1075",
                "vsName": "Zimbabwe Inv XI",
                "matchResult": "Indians beat Zimbabwe Inv XI by an Innings and 71 runs "
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "161453",
                "matchFilename": "zixin10021998161453",
                "date": "02/10/1998",
                "runs": "400",
                "wicket": "5",
                "overs": null,
                "vsId": "1075",
                "vsName": "Zimbabwe Inv XI",
                "matchResult": "Indians beat Zimbabwe Inv XI by an Innings and 71 runs "
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            }
          ]
        },
        "homeRecords": {
          "matchesPlayed": "41",
          "matchesWon": "14",
          "matchesLost": "13",
          "matchesTied": "0",
          "noResult": "14",
          "winPercentage": "34.15",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "1425",
                "name": "Vijay Hazare",
                "value": "1501",
                "displayText": "Vijay Hazare - (1501 runs for India)"
              },
              {
                "type": "bowling",
                "id": "395",
                "name": "Amar Singh",
                "value": "65",
                "displayText": "Amar Singh - (65 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "1199",
                "name": "Sunil Gavaskar",
                "value": "203",
                "displayText": "203 by Sunil Gavaskar v Sri Lanka on November 8, 1975 - India beat Sri Lankans by 8 Wickets",
                "isNotOut": "False",
                "against": {
                  "id": "8",
                  "name": "Sri Lanka",
                  "shortName": "SL"
                },
                "venue": {
                  "id": "86",
                  "name": "Lal Bahadur Shastri Stadium, Hyderabad",
                  "shortName": "Lal Bahadur Shastri Stadium, Hyderabad"
                },
                "matchId": "149045",
                "matchDate": "08/11/1975",
                "outcome": "India beat Sri Lankans by 8 Wickets"
              },
              {
                "type": "bowling",
                "id": "44511",
                "name": "Hormasji Vajifdar",
                "value": "9/43",
                "displayText": "9/43 by Hormasji Vajifdar v England on November 21, 1918 - Drawn",
                "against": {
                  "id": "3",
                  "name": "England",
                  "shortName": "ENG"
                },
                "venue": {
                  "id": "62",
                  "name": "Gymkhana Ground, Mumbai",
                  "shortName": "Gymkhana Ground, Mumbai"
                },
                "matchId": "128178",
                "matchDate": "21/11/1918",
                "outcome": "Drawn"
              }
            ]
          }
        },
        "awayRecords": {
          "matchesPlayed": "404",
          "matchesWon": "106",
          "matchesLost": "71",
          "matchesTied": "0",
          "noResult": "227",
          "winPercentage": "26.24",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "1199",
                "name": "Sunil Gavaskar",
                "value": "5098",
                "displayText": "Sunil Gavaskar - (5098 runs for India)"
              },
              {
                "type": "bowling",
                "id": "559",
                "name": "Bishan Bedi",
                "value": "233",
                "displayText": "Bishan Bedi - (233 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "2752",
                "name": "Navjot Sidhu",
                "value": "286",
                "displayText": "286 by Navjot Sidhu v Jamaica Scorpions on April 22, 1989 - Drawn",
                "isNotOut": "False",
                "against": {
                  "id": "423",
                  "name": "Jamaica Scorpions",
                  "shortName": "JAM"
                },
                "venue": {
                  "id": "136",
                  "name": "Sabina Park, Kingston",
                  "shortName": "Sabina Park, Kingston"
                },
                "matchId": "155926",
                "matchDate": "22/04/1989",
                "outcome": "Drawn"
              },
              {
                "type": "bowling",
                "id": "3076",
                "name": "Srinivas Venkataraghavan",
                "value": "9/93",
                "displayText": "9/93 by Srinivas Venkataraghavan v Hampshire on July 17, 1971 - Indians beat Hampshire by 5 Wickets",
                "against": {
                  "id": "361",
                  "name": "Hampshire",
                  "shortName": "HAM"
                },
                "venue": {
                  "id": "304",
                  "name": "Dean Park, Bournemouth",
                  "shortName": "Dean Park, Bournemouth"
                },
                "matchId": "147110",
                "matchDate": "17/07/1971",
                "outcome": "Indians beat Hampshire by 5 Wickets"
              }
            ]
          }
        },
        "neutralRecords": null,
        "venuesBasedPerformance": {
          "venue": [
            {
              "id": "1",
              "name": "Australia - Adelaide Oval, Adelaide",
              "shortName": "Adelaide Oval, Adelaide",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "40"
            },
            {
              "id": "6",
              "name": "West Indies - Arnos Vale Ground, Kingstown",
              "shortName": "Arnos Vale Ground, Kingstown",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "9",
              "name": "Pakistan - Bagh-e-Jinnah, Lahore",
              "shortName": "Bagh-e-Jinnah, Lahore",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "10",
              "name": "Pakistan - Dring Stadium, Bahawalpur",
              "shortName": "Dring Stadium, Bahawalpur",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "14",
              "name": "New Zealand - Cello Basin Reserve, Wellington",
              "shortName": "Cello Basin Reserve, Wellington",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "15",
              "name": "West Indies - Daren Sammy National Cricket Stadium, Gros Islet",
              "shortName": "Daren Sammy National Cricket Stadium, Gros Islet",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "16",
              "name": "Australia - Bellerive Oval, Hobart",
              "shortName": "Bellerive Oval, Hobart",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "19",
              "name": "Guyana - Bourda, Georgetown, Guyana",
              "shortName": "Bourda, Georgetown, Guyana",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "id": "20",
              "name": "India - Brabourne Stadium, Mumbai",
              "shortName": "Brabourne Stadium, Mumbai",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "21",
              "name": "England - Bramall Lane, Sheffield",
              "shortName": "Bramall Lane, Sheffield",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "id": "22",
              "name": "Australia - The Gabba, Brisbane",
              "shortName": "The Gabba, Brisbane",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "40"
            },
            {
              "id": "23",
              "name": "South Africa - Buffalo Park, East London",
              "shortName": "Buffalo Park, East London",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "29",
              "name": "New Zealand - Carisbrook, Dunedin",
              "shortName": "Carisbrook, Dunedin",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "25"
            },
            {
              "id": "35",
              "name": "England - County Ground, Derby",
              "shortName": "County Ground, Derby",
              "matchesPlayed": "6",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "33.33"
            },
            {
              "id": "36",
              "name": "England - County Ground, Chelmsford",
              "shortName": "County Ground, Chelmsford",
              "matchesPlayed": "6",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "0"
            },
            {
              "id": "37",
              "name": "England - The County Ground, New Road, Worcester",
              "shortName": "The County Ground, New Road, Worcester",
              "matchesPlayed": "11",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "9.09"
            },
            {
              "id": "38",
              "name": "England - County Ground, Northampton",
              "shortName": "County Ground, Northampton",
              "matchesPlayed": "10",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "10"
            },
            {
              "id": "39",
              "name": "England - County Ground, Southampton",
              "shortName": "County Ground, Southampton",
              "matchesPlayed": "9",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "22.22"
            },
            {
              "id": "40",
              "name": "England - The Cooper Associates County Ground, Taunton",
              "shortName": "The Cooper Associates County Ground, Taunton",
              "matchesPlayed": "10",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "10"
            },
            {
              "id": "48",
              "name": "India - Eden Gardens, Kolkata",
              "shortName": "Eden Gardens, Kolkata",
              "matchesPlayed": "6",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "33.33"
            },
            {
              "id": "50",
              "name": "England - Edgbaston, Birmingham",
              "shortName": "Edgbaston, Birmingham",
              "matchesPlayed": "10",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "10"
            },
            {
              "id": "54",
              "name": "India - Arun Jaitley Stadium, Delhi",
              "shortName": "Arun Jaitley Stadium, Delhi",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "40"
            },
            {
              "id": "59",
              "name": "South Africa - Mangaung Oval, Bloemfontein",
              "shortName": "Mangaung Oval, Bloemfontein",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "60",
              "name": "England - Uptonsteel County Ground, Leicester",
              "shortName": "Uptonsteel County Ground, Leicester",
              "matchesPlayed": "11",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "9",
              "winPercentage": "9.09"
            },
            {
              "id": "61",
              "name": "India - Green Park, Kanpur",
              "shortName": "Green Park, Kanpur",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "62",
              "name": "India - Gymkhana Ground, Mumbai",
              "shortName": "Gymkhana Ground, Mumbai",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "65",
              "name": "England - Headingley, Leeds",
              "shortName": "Headingley, Leeds",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "67",
              "name": "Pakistan - Ibn-e-Qasim Bagh Stadium, Multan",
              "shortName": "Ibn-e-Qasim Bagh Stadium, Multan",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "75",
              "name": "Pakistan - Jinnah Stadium, Sialkot",
              "shortName": "Jinnah Stadium, Sialkot",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "81",
              "name": "England - Kennington Oval, London",
              "shortName": "Kennington Oval, London",
              "matchesPlayed": "12",
              "matchesWon": "3",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "25"
            },
            {
              "id": "82",
              "name": "West Indies - Kensington Oval, Bridgetown",
              "shortName": "Kensington Oval, Bridgetown",
              "matchesPlayed": "7",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "0"
            },
            {
              "id": "86",
              "name": "India - Lal Bahadur Shastri Stadium, Hyderabad",
              "shortName": "Lal Bahadur Shastri Stadium, Hyderabad",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "89",
              "name": "England - Lord's Cricket Ground, London",
              "shortName": "Lord's Cricket Ground, London",
              "matchesPlayed": "17",
              "matchesWon": "5",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "29.41"
            },
            {
              "id": "91",
              "name": "India - MA Chidambaram Stadium, Chennai",
              "shortName": "MA Chidambaram Stadium, Chennai",
              "matchesPlayed": "35",
              "matchesWon": "18",
              "matchesLost": "8",
              "matchesTied": "0",
              "noResult": "9",
              "winPercentage": "51.43"
            },
            {
              "id": "95",
              "name": "New Zealand - McLean Park, Napier",
              "shortName": "McLean Park, Napier",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "25"
            },
            {
              "id": "96",
              "name": "Australia - Melbourne Cricket Ground (MCG), Melbourne",
              "shortName": "Melbourne Cricket Ground (MCG), Melbourne",
              "matchesPlayed": "5",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "20"
            },
            {
              "id": "105",
              "name": "Pakistan - National Stadium, Karachi",
              "shortName": "National Stadium, Karachi",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "106",
              "name": "India - Nehru Stadium, Chennai",
              "shortName": "Nehru Stadium, Chennai",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "110",
              "name": "England - County Ground, Hove",
              "shortName": "County Ground, Hove",
              "matchesPlayed": "9",
              "matchesWon": "1",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "11.11"
            },
            {
              "id": "113",
              "name": "Pakistan - Niaz Stadium, Hyderabad, Sind",
              "shortName": "Niaz Stadium, Hyderabad, Sind",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "114",
              "name": "England - North Marine Road Ground, Scarborough",
              "shortName": "North Marine Road Ground, Scarborough",
              "matchesPlayed": "8",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "25"
            },
            {
              "id": "115",
              "name": "Australia - North Tasmania Cricket Association Ground, Launceston",
              "shortName": "North Tasmania Cricket Association Ground, Launceston",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "116",
              "name": "South Africa - JB Marks Oval, Potchefstroom",
              "shortName": "JB Marks Oval, Potchefstroom",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "117",
              "name": "England - Emirates Old Trafford, Manchester",
              "shortName": "Emirates Old Trafford, Manchester",
              "matchesPlayed": "8",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "12.5"
            },
            {
              "id": "120",
              "name": "Sri Lanka - P Sara Oval, Colombo",
              "shortName": "P Sara Oval, Colombo",
              "matchesPlayed": "7",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "0"
            },
            {
              "id": "122",
              "name": "Pakistan - Pindi Club Ground, Rawalpindi",
              "shortName": "Pindi Club Ground, Rawalpindi",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "id": "124",
              "name": "New Zealand - Pukekura Park, New Plymouth",
              "shortName": "Pukekura Park, New Plymouth",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "127",
              "name": "West Indies - Queen's Park Oval, Port of Spain",
              "shortName": "Queen's Park Oval, Port of Spain",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "id": "128",
              "name": "West Indies - Queen's Park, St George's",
              "shortName": "Queen's Park, St George's",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "134",
              "name": "Pakistan - Rawalpindi Cricket Stadium, Rawalpindi",
              "shortName": "Rawalpindi Cricket Stadium, Rawalpindi",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "136",
              "name": "West Indies - Sabina Park, Kingston",
              "shortName": "Sabina Park, Kingston",
              "matchesPlayed": "6",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "16.67"
            },
            {
              "id": "141",
              "name": "Pakistan - Peshawar Club Ground, Peshawar",
              "shortName": "Peshawar Club Ground, Peshawar",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "147",
              "name": "Sri Lanka - Sinhalese Sports Club, Colombo",
              "shortName": "Sinhalese Sports Club, Colombo",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "149",
              "name": "England - Sophia Gardens, Cardiff",
              "shortName": "Sophia Gardens, Cardiff",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "150",
              "name": "South Africa - St George's Park, Gqeberha",
              "shortName": "St George's Park, Gqeberha",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "151",
              "name": "England - St Helen's, Swansea",
              "shortName": "St Helen's, Swansea",
              "matchesPlayed": "7",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "57.14"
            },
            {
              "id": "152",
              "name": "England - The Spitfire Ground, Canterbury",
              "shortName": "The Spitfire Ground, Canterbury",
              "matchesPlayed": "10",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "20"
            },
            {
              "id": "153",
              "name": "South Africa - SuperSport Park, Centurion",
              "shortName": "SuperSport Park, Centurion",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "154",
              "name": "Australia - Sydney Cricket Ground (SCG), Sydney",
              "shortName": "Sydney Cricket Ground (SCG), Sydney",
              "matchesPlayed": "5",
              "matchesWon": "3",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "60"
            },
            {
              "id": "156",
              "name": "Australia - Tasmania Cricket Association Ground, Hobart",
              "shortName": "Tasmania Cricket Association Ground, Hobart",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "25"
            },
            {
              "id": "159",
              "name": "England - Utilita Bowl, Southampton",
              "shortName": "Utilita Bowl, Southampton",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "160",
              "name": "England - The Seat Unique Stadium, Bristol",
              "shortName": "The Seat Unique Stadium, Bristol",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "0"
            },
            {
              "id": "161",
              "name": "England - Trent Bridge, Nottingham",
              "shortName": "Trent Bridge, Nottingham",
              "matchesPlayed": "10",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "0"
            },
            {
              "id": "162",
              "name": "Sri Lanka - De Zoysa Stadium, Moratuwa",
              "shortName": "De Zoysa Stadium, Moratuwa",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "163",
              "name": "India - University Ground, Lucknow",
              "shortName": "University Ground, Lucknow",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "165",
              "name": "India - Vidarbha Cricket Association Stadium, Nagpur",
              "shortName": "Vidarbha Cricket Association Stadium, Nagpur",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "167",
              "name": "Australia - W.A.C.A. Ground, Perth",
              "shortName": "W.A.C.A. Ground, Perth",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "169",
              "name": "West Indies - Warner Park, Basseterre",
              "shortName": "Warner Park, Basseterre",
              "matchesPlayed": "4",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "75"
            },
            {
              "id": "170",
              "name": "New Zealand - Seddon Park, Hamilton",
              "shortName": "Seddon Park, Hamilton",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "id": "187",
              "name": "India - Sardar Vallabhai Patel Stadium, Ahmedabad",
              "shortName": "Sardar Vallabhai Patel Stadium, Ahmedabad",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "198",
              "name": "Australia - Junction Oval, Melbourne",
              "shortName": "Junction Oval, Melbourne",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "224",
              "name": "England - Aigburth, Liverpool",
              "shortName": "Aigburth, Liverpool",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "226",
              "name": "England - Arundel Castle Cricket Club Ground, Arundel",
              "shortName": "Arundel Castle Cricket Club Ground, Arundel",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "227",
              "name": "England - College Ground, Cheltenham",
              "shortName": "College Ground, Cheltenham",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "25"
            },
            {
              "id": "298",
              "name": "Ireland - College Park, Dublin",
              "shortName": "College Park, Dublin",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "300",
              "name": "Sri Lanka - Colts Cricket Club Ground, Colombo",
              "shortName": "Colts Cricket Club Ground, Colombo",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "304",
              "name": "England - Dean Park, Bournemouth",
              "shortName": "Dean Park, Bournemouth",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "50"
            },
            {
              "id": "313",
              "name": "England - FP Fenner's Ground, Cambridge",
              "shortName": "FP Fenner's Ground, Cambridge",
              "matchesPlayed": "8",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "50"
            },
            {
              "id": "345",
              "name": "West Indies - Jarrett Park, Montego Bay, Jamaica",
              "shortName": "Jarrett Park, Montego Bay, Jamaica",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "350",
              "name": "Pakistan - Karachi Gymkhana Ground, Karachi",
              "shortName": "Karachi Gymkhana Ground, Karachi",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "389",
              "name": "Australia - Oakes Oval, Lismore",
              "shortName": "Oakes Oval, Lismore",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "396",
              "name": "England - Queen's Park, Chesterfield",
              "shortName": "Queen's Park, Chesterfield",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "id": "414",
              "name": "England - St George's Road, Harrogate",
              "shortName": "St George's Road, Harrogate",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "417",
              "name": "England - Stanley Park, Blackpool",
              "shortName": "Stanley Park, Blackpool",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "425",
              "name": "England - The Saffrons, Eastbourne",
              "shortName": "The Saffrons, Eastbourne",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "434",
              "name": "England - Valentine's Park, Ilford",
              "shortName": "Valentine's Park, Ilford",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "437",
              "name": "Sri Lanka - Welagedara Stadium, Kurunegala",
              "shortName": "Welagedara Stadium, Kurunegala",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "488",
              "name": "Sri Lanka - Nondescripts Cricket Club, Colombo",
              "shortName": "Nondescripts Cricket Club, Colombo",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "520",
              "name": "Australia - GMHBA Stadium, Geelong",
              "shortName": "GMHBA Stadium, Geelong",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "530",
              "name": "Zimbabwe - Country Club, Harare",
              "shortName": "Country Club, Harare",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "534",
              "name": "West Indies - Guaracara Park, Pointe-a-Pierre, Trinidad",
              "shortName": "Guaracara Park, Pointe-a-Pierre, Trinidad",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "653",
              "name": "England - Aylestone Road, Leicester",
              "shortName": "Aylestone Road, Leicester",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "700",
              "name": "Pakistan - Boranwalla Ground, Faisalabad",
              "shortName": "Boranwalla Ground, Faisalabad",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "705",
              "name": "West Indies - Botanical Gardens, Roseau",
              "shortName": "Botanical Gardens, Roseau",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "749",
              "name": "England - Cardiff Arms Park, Cardiff",
              "shortName": "Cardiff Arms Park, Cardiff",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "id": "758",
              "name": "India - Central College Ground, Bangalore",
              "shortName": "Central College Ground, Bangalore",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "764",
              "name": "England - Central Recreation Ground, Hastings",
              "shortName": "Central Recreation Ground, Hastings",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "id": "780",
              "name": "England - Cheriton Road Sports Ground, Folkestone",
              "shortName": "Cheriton Road Sports Ground, Folkestone",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "784",
              "name": "England - Christ Church College, Oxford",
              "shortName": "Christ Church College, Oxford",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "794",
              "name": "England - Clarence Park, Weston-super-Mare",
              "shortName": "Clarence Park, Weston-super-Mare",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "796",
              "name": "England - Clifton College Close Ground, Clifton",
              "shortName": "Clifton College Close Ground, Clifton",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "816",
              "name": "England - County Ground, Lakenham",
              "shortName": "County Ground, Lakenham",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "923",
              "name": "West Indies - Everest Cricket Club, Georgetown",
              "shortName": "Everest Cricket Club, Georgetown",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "941",
              "name": "Scotland - Forthill, Dundee",
              "shortName": "Forthill, Dundee",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "952",
              "name": "England - Garrison A Ground, Colchester",
              "shortName": "Garrison A Ground, Colchester",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1019",
              "name": "England - County Ground, Leyton",
              "shortName": "County Ground, Leyton",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1086",
              "name": "Sri Lanka - Katugastota Oval, Kandy",
              "shortName": "Katugastota Oval, Kandy",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1137",
              "name": "England - Longton Cricket Club, Stoke-on-Trent",
              "shortName": "Longton Cricket Club, Stoke-on-Trent",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1149",
              "name": "Uganda - Lugogo Stadium, Kampala",
              "shortName": "Lugogo Stadium, Kampala",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1155",
              "name": "India - Madan Mohan Malaviya Stadium, Allahabad",
              "shortName": "Madan Mohan Malaviya Stadium, Allahabad",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1195",
              "name": "West Indies - Melbourne Park, Kingston",
              "shortName": "Melbourne Park, Kingston",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1213",
              "name": "Pakistan - Montgomery CC Ground, Sahiwal",
              "shortName": "Montgomery CC Ground, Sahiwal",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "1223",
              "name": "Scotland - Mossilee, Galashiels",
              "shortName": "Mossilee, Galashiels",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1234",
              "name": "Pakistan - Municipal Gardens Ground, Hyderabad, Sind",
              "shortName": "Municipal Gardens Ground, Hyderabad, Sind",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1243",
              "name": "Zimbabwe - Mutare Sports Club, Mutare",
              "shortName": "Mutare Sports Club, Mutare",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1278",
              "name": "Pakistan - Niaz Stadium",
              "shortName": "Niaz Stadium",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1315",
              "name": "England - Orleton Park, Wellington",
              "shortName": "Orleton Park, Wellington",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1329",
              "name": "South Africa - PAM Brink Stadium, Springs",
              "shortName": "PAM Brink Stadium, Springs",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1336",
              "name": "England - Park Avenue Cricket Ground, Bradford",
              "shortName": "Park Avenue Cricket Ground, Bradford",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "id": "1396",
              "name": "England - Private Banks Sports Ground, Catford Bridge",
              "shortName": "Private Banks Sports Ground, Catford Bridge",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1400",
              "name": "Pakistan - Punjab University Ground, Lahore",
              "shortName": "Punjab University Ground, Lahore",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1481",
              "name": "England - Rutland Recreation Ground, Ilkeston",
              "shortName": "Rutland Recreation Ground, Ilkeston",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1523",
              "name": "England - Shenfield Road, Brentwood",
              "shortName": "Shenfield Road, Brentwood",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1544",
              "name": "England - Southchurch Park, Southend-on-Sea",
              "shortName": "Southchurch Park, Southend-on-Sea",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1580",
              "name": "West Indies - Sturge Park, Plymouth, Montserrat",
              "shortName": "Sturge Park, Plymouth, Montserrat",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1585",
              "name": "Zimbabwe - Sunrise Sports Club, Harare",
              "shortName": "Sunrise Sports Club, Harare",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1613",
              "name": "England - The Circle, Hull",
              "shortName": "The Circle, Hull",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1632",
              "name": "England - The University Parks, Oxford",
              "shortName": "The University Parks, Oxford",
              "matchesPlayed": "7",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "57.14"
            },
            {
              "id": "1643",
              "name": "England - Town Ground, Kettering",
              "shortName": "Town Ground, Kettering",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1648",
              "name": "England - Trafalgar Road Ground, Southport",
              "shortName": "Trafalgar Road Ground, Southport",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1655",
              "name": "England - Trowbridge Cricket Club, Trowbridge",
              "shortName": "Trowbridge Cricket Club, Trowbridge",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1665",
              "name": "England - United Services Recreation Ground, Portsmouth",
              "shortName": "United Services Recreation Ground, Portsmouth",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1688",
              "name": "England - Victoria Park, Cheltenham",
              "shortName": "Victoria Park, Cheltenham",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1701",
              "name": "England - Wagon Works Ground, Gloucester",
              "shortName": "Wagon Works Ground, Gloucester",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1735",
              "name": "Scotland - Whitehaugh, Paisley",
              "shortName": "Whitehaugh, Paisley",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            }
          ]
        },
        "listOfCaptains": {
          "captain": [
            {
              "id": "3105",
              "name": "Ajit Wadekar",
              "shortName": "Wadekar",
              "matchesPlayed": "34",
              "matchesWon": "9",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "23",
              "winPercentage": "26.47"
            },
            {
              "id": "3097",
              "name": " Vizianagra",
              "shortName": "Vizianagra",
              "matchesPlayed": "26",
              "matchesWon": "4",
              "matchesLost": "11",
              "matchesTied": "0",
              "noResult": "11",
              "winPercentage": "15.38"
            },
            {
              "id": "1425",
              "name": "Vijay Hazare",
              "shortName": "Hazare",
              "matchesPlayed": "25",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "19",
              "winPercentage": "16"
            },
            {
              "id": "487",
              "name": "Mohammad Azharuddin",
              "shortName": "Azharuddin",
              "matchesPlayed": "22",
              "matchesWon": "4",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "14",
              "winPercentage": "18.18"
            },
            {
              "id": "2036",
              "name": "Vijay Merchant",
              "shortName": "Merchant",
              "matchesPlayed": "22",
              "matchesWon": "8",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "36.36"
            },
            {
              "id": "3076",
              "name": "Srinivas Venkataraghavan",
              "shortName": "Venkataraghavan",
              "matchesPlayed": "20",
              "matchesWon": "5",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "12",
              "winPercentage": "25"
            },
            {
              "id": "2206",
              "name": "Nawab of Pataudi",
              "shortName": "of Pataudi",
              "matchesPlayed": "20",
              "matchesWon": "5",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "9",
              "winPercentage": "25"
            },
            {
              "id": "1199",
              "name": "Sunil Gavaskar",
              "shortName": "Gavaskar",
              "matchesPlayed": "18",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "12",
              "winPercentage": "22.22"
            },
            {
              "id": "87",
              "name": "Datta Gaekwad",
              "shortName": "Gaekwad",
              "matchesPlayed": "18",
              "matchesWon": "4",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "10",
              "winPercentage": "22.22"
            },
            {
              "id": "202",
              "name": "C.K. Nayudu",
              "shortName": "Nayudu",
              "matchesPlayed": "18",
              "matchesWon": "7",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "38.89"
            },
            {
              "id": "2205",
              "name": "Nawab of Pataudi Sr.",
              "shortName": "of Pataudi Sr.",
              "matchesPlayed": "16",
              "matchesWon": "6",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "37.5"
            },
            {
              "id": "559",
              "name": "Bishan Bedi",
              "shortName": "Bedi",
              "matchesPlayed": "14",
              "matchesWon": "8",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "57.14"
            },
            {
              "id": "1186",
              "name": "Sourav Ganguly",
              "shortName": "Ganguly",
              "matchesPlayed": "12",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "33.33"
            },
            {
              "id": "13",
              "name": "Lala Amarnath",
              "shortName": "Amarnath",
              "matchesPlayed": "10",
              "matchesWon": "2",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "20"
            },
            {
              "id": "2962",
              "name": "Sachin Tendulkar",
              "shortName": "Tendulkar",
              "matchesPlayed": "9",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "0"
            },
            {
              "id": "2716",
              "name": "Ravi Shastri",
              "shortName": "Shastri",
              "matchesPlayed": "9",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "11.11"
            },
            {
              "id": "3093",
              "name": "Gundappa Viswanath",
              "shortName": "Viswanath",
              "matchesPlayed": "9",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "11.11"
            },
            {
              "id": "1682",
              "name": "Kapil Dev",
              "shortName": "Dev",
              "matchesPlayed": "9",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "22.22"
            },
            {
              "id": "257",
              "name": "Pankaj Roy",
              "shortName": "Roy",
              "matchesPlayed": "9",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "22.22"
            },
            {
              "id": "20342",
              "name": "KSGDJ Limbdi",
              "shortName": "Limbdi",
              "matchesPlayed": "9",
              "matchesWon": "2",
              "matchesLost": "5",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "22.22"
            },
            {
              "id": "622",
              "name": "Chandu Borde",
              "shortName": "Borde",
              "matchesPlayed": "6",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "16.67"
            },
            {
              "id": "1911",
              "name": "Vinoo Mankad",
              "shortName": "Mankad",
              "matchesPlayed": "6",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "50"
            },
            {
              "id": "33869",
              "name": "Maharaja of Patiala",
              "shortName": "of Patiala",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "4",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "3049",
              "name": "Polly Umrigar",
              "shortName": "Umrigar",
              "matchesPlayed": "5",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "40"
            },
            {
              "id": "1004",
              "name": "Rahul Dravid",
              "shortName": "Dravid",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "id": "39229",
              "name": " Porba",
              "shortName": "Porba",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "25"
            },
            {
              "id": "349",
              "name": "Hemu Adhikari",
              "shortName": "Adhikari",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "id": "1804",
              "name": "VVS Laxman",
              "shortName": "Laxman",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "id": "49975",
              "name": "M Baliah",
              "shortName": "Baliah",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "33.33"
            },
            {
              "id": "28478",
              "name": "B Subramaniam",
              "shortName": "Subramaniam",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "id": "1256",
              "name": "Morappakam Gopalan",
              "shortName": "Gopalan",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "2847",
              "name": "Kris Srikkanth",
              "shortName": "Srikkanth",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "3074",
              "name": "Dilip Vengsarkar",
              "shortName": "Vengsarkar",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "3676",
              "name": "MS Dhoni",
              "shortName": "Dhoni",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "id": "3313",
              "name": "Yuvraj of Patiala",
              "shortName": "of Patiala",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "38365",
              "name": "Hormasji Kanga",
              "shortName": "Kanga",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "396",
              "name": "Mohinder Amarnath",
              "shortName": "Amarnath",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "1738",
              "name": "Syed Kirmani",
              "shortName": "Kirmani",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "id": "1589",
              "name": "Ajay Jadeja",
              "shortName": "Jadeja",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "3176",
              "name": "Syed Wazir Ali",
              "shortName": "Wazir Ali",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1767",
              "name": "Anil Kumble",
              "shortName": "Kumble",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1878",
              "name": "Madan Lal Sr.",
              "shortName": "Lal Sr.",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "1908",
              "name": "Sanjay Manjrekar",
              "shortName": "Manjrekar",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "2105",
              "name": "Kiran More",
              "shortName": "More",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "2460",
              "name": "Cotar Ramaswami",
              "shortName": "Ramaswami",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "2752",
              "name": "Navjot Sidhu",
              "shortName": "Sidhu",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "3478",
              "name": "Gautam Gambhir",
              "shortName": "Gambhir",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "32479",
              "name": "Gopalaswami Parthasarathi",
              "shortName": "Parthasarathi",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "34951",
              "name": "AG Ram Singh",
              "shortName": "Ram Singh",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "id": "839",
              "name": "Nari Contractor",
              "shortName": "Contractor",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1756",
              "name": "AG Kripal Singh",
              "shortName": "Kripal Singh",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "16885",
              "name": "KM Mistry",
              "shortName": "Mistry",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "30119",
              "name": "Alexander Hosie",
              "shortName": "Hosie",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1171",
              "name": "Anshuman Gaekwad",
              "shortName": "Gaekwad",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "28851",
              "name": "CK Krishnaswamy",
              "shortName": "Krishnaswamy",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "39754",
              "name": "CR Ganapathy",
              "shortName": "Ganapathy",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "splitByYear": {
          "year": [
            {
              "value": "1893",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1911",
              "matchesPlayed": "14",
              "matchesWon": "2",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "14.29"
            },
            {
              "value": "1915",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1917",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1918",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "value": "1919",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "1920",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1922",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1923",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1924",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1925",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1926",
              "matchesPlayed": "3",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1927",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1928",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1929",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1930",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1931",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1932",
              "matchesPlayed": "29",
              "matchesWon": "10",
              "matchesLost": "7",
              "matchesTied": "0",
              "noResult": "12",
              "winPercentage": "34.48"
            },
            {
              "value": "1933",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1934",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1935",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1936",
              "matchesPlayed": "28",
              "matchesWon": "7",
              "matchesLost": "10",
              "matchesTied": "0",
              "noResult": "11",
              "winPercentage": "25"
            },
            {
              "value": "1937",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "1938",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "33.33"
            },
            {
              "value": "1938",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "33.33"
            },
            {
              "value": "1939",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1940",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1941",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1942",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1943",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1944",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1945",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "50"
            },
            {
              "value": "1946",
              "matchesPlayed": "26",
              "matchesWon": "11",
              "matchesLost": "3",
              "matchesTied": "0",
              "noResult": "12",
              "winPercentage": "42.31"
            },
            {
              "value": "1947",
              "matchesPlayed": "7",
              "matchesWon": "2",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "28.57"
            },
            {
              "value": "1948",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "25"
            },
            {
              "value": "1949",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "33.33"
            },
            {
              "value": "1950",
              "matchesPlayed": "5",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "20"
            },
            {
              "value": "1951",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1952",
              "matchesPlayed": "25",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "19",
              "winPercentage": "16"
            },
            {
              "value": "1953",
              "matchesPlayed": "7",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "28.57"
            },
            {
              "value": "1954",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "value": "1955",
              "matchesPlayed": "8",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "50"
            },
            {
              "value": "1956",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "value": "1959",
              "matchesPlayed": "28",
              "matchesWon": "6",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "16",
              "winPercentage": "21.43"
            },
            {
              "value": "1962",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "25"
            },
            {
              "value": "1964",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1965",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1967",
              "matchesPlayed": "20",
              "matchesWon": "3",
              "matchesLost": "6",
              "matchesTied": "0",
              "noResult": "11",
              "winPercentage": "15"
            },
            {
              "value": "1968",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "33.33"
            },
            {
              "value": "1971",
              "matchesPlayed": "23",
              "matchesWon": "7",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "14",
              "winPercentage": "30.43"
            },
            {
              "value": "1974",
              "matchesPlayed": "19",
              "matchesWon": "5",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "14",
              "winPercentage": "26.32"
            },
            {
              "value": "1975",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "value": "1976",
              "matchesPlayed": "8",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "25"
            },
            {
              "value": "1977",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "value": "1978",
              "matchesPlayed": "6",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "33.33"
            },
            {
              "value": "1979",
              "matchesPlayed": "12",
              "matchesWon": "1",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "9",
              "winPercentage": "8.33"
            },
            {
              "value": "1980",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "0"
            },
            {
              "value": "1981",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "66.67"
            },
            {
              "value": "1982",
              "matchesPlayed": "12",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "11",
              "winPercentage": "8.33"
            },
            {
              "value": "1983",
              "matchesPlayed": "6",
              "matchesWon": "4",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "66.67"
            },
            {
              "value": "1985",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "25"
            },
            {
              "value": "1986",
              "matchesPlayed": "8",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "7",
              "winPercentage": "12.5"
            },
            {
              "value": "1989",
              "matchesPlayed": "5",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "5",
              "winPercentage": "0"
            },
            {
              "value": "1990",
              "matchesPlayed": "13",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "10",
              "winPercentage": "15.38"
            },
            {
              "value": "1991",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "1992",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "3",
              "winPercentage": "25"
            },
            {
              "value": "1993",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "1994",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "value": "1996",
              "matchesPlayed": "9",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "8",
              "winPercentage": "0"
            },
            {
              "value": "1997",
              "matchesPlayed": "5",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "20"
            },
            {
              "value": "1998",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "value": "1999",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "33.33"
            },
            {
              "value": "2001",
              "matchesPlayed": "4",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "25"
            },
            {
              "value": "2002",
              "matchesPlayed": "8",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "6",
              "winPercentage": "25"
            },
            {
              "value": "2003",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "2",
              "winPercentage": "0"
            },
            {
              "value": "2006",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "2007",
              "matchesPlayed": "4",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "4",
              "winPercentage": "0"
            },
            {
              "value": "2010",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            },
            {
              "value": "2011",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "1",
              "winPercentage": "0"
            }
          ]
        },
        "lastTwelveMonths": null,
        "manOfTheMatches": {
          "manOfTheMatch": [
            {
              "id": "3075",
              "name": "Venkatapathy Raju",
              "matchesPlayed": "26",
              "manOfTheMatch": "2"
            },
            {
              "id": "3531",
              "name": "Irfan Pathan",
              "matchesPlayed": "3",
              "manOfTheMatch": "2"
            }
          ]
        },
        "manOfTheSeries": null,
        "leaders": {
          "mostMatchesPlayed": {
            "stat": "Most Matches Played",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null
          },
          "mostRunsLeader": {
            "stat": "Most Runs",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "highestScore": {
            "stat": "Highest Score",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "mostHundreds": {
            "stat": "Most Hundreds",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "hundreds": null
          },
          "mostFifties": {
            "stat": "Most Fifties",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fifties": null
          },
          "mostFours": {
            "stat": "Most Fours",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fours": null
          },
          "mostSixes": {
            "stat": "Most Sixes",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "sixes": null
          },
          "bestBattingAverage": {
            "stat": "Best Batting Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          },
          "bestStrikeRate": {
            "stat": "Best Strike Rate",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "strikeRate": null
          },
          "mostWickets": {
            "stat": "Most Wickets",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "wickets": null
          },
          "bestBowlingFigure": {
            "stat": "Best Bowling Figure",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "bowlingFigure": null
          },
          "bestEconomy": {
            "stat": "Best Economy",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "economy": null
          },
          "bestBowlingAverage": {
            "stat": "Best Bowling Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          }
        }
      }
    },
    {
      "compTypeId": "5",
      "compType": "List A Domestic",
      "leagueId": "0",
      "leagueName": "Domestic",
      "parentId": "0",
      "parentSeriesName": "Domestic",
      "ranking": "",
      "rating": "",
      "firstMatch": {
        "matchId": "96882",
        "date": "30/01/1974",
        "outcome": "Indians beat Sri Lanka by 3 Wickets",
        "against": {
          "id": "8",
          "name": "Sri Lanka",
          "shortName": "SL"
        },
        "venue": {
          "id": "33",
          "name": "Colombo Cricket Club Ground, Colombo",
          "shortName": "Colombo Cricket Club Ground, Colombo"
        }
      },
      "captain": null,
      "championship": {
        "seriesId": "-",
        "seriesName": "-",
        "played": "-",
        "won": "-",
        "lost": "-",
        "draw": "-",
        "pts": "-",
        "form": "-"
      },
      "trophyDetails": null,
      "overall": {
        "matchesPlayed": "30",
        "matchesWon": "20",
        "matchesLost": "7",
        "matchesTied": "0",
        "noResult": "0",
        "winPercentage": "66.67",
        "topPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "16",
              "average": "48.38",
              "value": "629",
              "displayText": "Sachin Tendulkar - (629 runs for India)"
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "matchesPlayed": "14",
              "economy": "3.44",
              "value": "23",
              "displayText": "Anil Kumble - (23 wickets for India)"
            }
          ]
        },
        "top_3Performers": {
          "record": [
            {
              "type": "batting",
              "id": "2962",
              "name": "Sachin Tendulkar",
              "matchesPlayed": "16",
              "average": "48.38",
              "value": "629",
              "displayText": "Sachin Tendulkar - (629 runs for India)"
            },
            {
              "type": "batting",
              "id": "1186",
              "name": "Sourav Ganguly",
              "matchesPlayed": "7",
              "average": "65.20",
              "value": "326",
              "displayText": "Sourav Ganguly - (326 runs for India)"
            },
            {
              "type": "batting",
              "id": "3314",
              "name": "Yuvraj Singh",
              "matchesPlayed": "7",
              "average": "57.40",
              "value": "287",
              "displayText": "Yuvraj Singh - (287 runs for India)"
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "matchesPlayed": "14",
              "economy": "3.44",
              "value": "23",
              "displayText": "Anil Kumble - (23 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "1682",
              "name": "Kapil Dev",
              "matchesPlayed": "6",
              "economy": "4.02",
              "value": "9",
              "displayText": "Kapil Dev - (9 wickets for India)"
            },
            {
              "type": "bowling",
              "id": "2089",
              "name": "Debasis Mohanty",
              "matchesPlayed": "5",
              "economy": "3.51",
              "value": "9",
              "displayText": "Debasis Mohanty - (9 wickets for India)"
            }
          ]
        },
        "higestIndividualPerformer": {
          "record": [
            {
              "type": "batting",
              "id": "3314",
              "name": "Yuvraj Singh",
              "value": "172",
              "displayText": "172 by Yuvraj Singh v Sri Lankan Invitation XI on August 15, 2008 - Indians beat Sri Lankan XI by 92 Runs",
              "isNotOut": "False",
              "against": {
                "id": "905",
                "name": "Sri Lankan Invitation XI",
                "shortName": "SLI"
              },
              "venue": {
                "id": "120",
                "name": "P Sara Oval, Colombo",
                "shortName": "P Sara Oval, Colombo"
              },
              "matchId": "112352",
              "matchDate": "15/08/2008",
              "outcome": "Indians beat Sri Lankan XI by 92 Runs"
            },
            {
              "type": "bowling",
              "id": "991",
              "name": "Dilip Doshi",
              "value": "5/24",
              "displayText": "5/24 by Dilip Doshi v Western Australia on November 25, 1980 - Indians beat Western Australia",
              "against": {
                "id": "1117",
                "name": "Western Australia",
                "shortName": "WAU"
              },
              "venue": {
                "id": "167",
                "name": "W.A.C.A. Ground, Perth",
                "shortName": "W.A.C.A. Ground, Perth"
              },
              "matchId": "98550",
              "matchDate": "25/11/1980",
              "outcome": "Indians beat Western Australia"
            }
          ]
        },
        "bestIndividualPerformers": {
          "record": [
            {
              "type": "batting",
              "id": "3314",
              "name": "Yuvraj Singh",
              "value": "172",
              "displayText": "172 by Yuvraj Singh v Sri Lankan Invitation XI on August 15, 2008 - r",
              "isNotOut": "False",
              "against": {
                "id": "905",
                "name": "Sri Lankan Invitation XI",
                "shortName": "SLI"
              },
              "venue": {
                "id": "120",
                "name": "P Sara Oval, Colombo",
                "shortName": "P Sara Oval, Colombo"
              },
              "matchId": "112352",
              "matchDate": "15/08/2008",
              "outcome": "r"
            },
            {
              "type": "batting",
              "id": "2962",
              "name": "Sachin Tendulkar",
              "value": "139",
              "displayText": "139* by Sachin Tendulkar v Central Stags on February 14, 1995 - w",
              "isNotOut": "True",
              "against": {
                "id": "1385",
                "name": "Central Stags",
                "shortName": "CS"
              },
              "venue": {
                "id": "95",
                "name": "McLean Park, Napier",
                "shortName": "McLean Park, Napier"
              },
              "matchId": "103914",
              "matchDate": "14/02/1995",
              "outcome": "w"
            },
            {
              "type": "batting",
              "id": "2962",
              "name": "Sachin Tendulkar",
              "value": "105",
              "displayText": "105* by Sachin Tendulkar v Derbyshire on July 16, 1990 - w",
              "isNotOut": "True",
              "against": {
                "id": "225",
                "name": "Derbyshire",
                "shortName": "DER"
              },
              "venue": {
                "id": "396",
                "name": "Queen's Park, Chesterfield",
                "shortName": "Queen's Park, Chesterfield"
              },
              "matchId": "101826",
              "matchDate": "16/07/1990",
              "outcome": "w"
            },
            {
              "type": "bowling",
              "id": "991",
              "name": "Dilip Doshi",
              "value": "5/24",
              "displayText": "5/24 by Dilip Doshi v Western Australia on November 25, 1980 - ",
              "against": {
                "id": "1117",
                "name": "Western Australia",
                "shortName": "WAU"
              },
              "venue": {
                "id": "167",
                "name": "W.A.C.A. Ground, Perth",
                "shortName": "W.A.C.A. Ground, Perth"
              },
              "matchId": "98550",
              "matchDate": "25/11/1980",
              "outcome": null
            },
            {
              "type": "bowling",
              "id": "1767",
              "name": "Anil Kumble",
              "value": "4/11",
              "displayText": "4/11 by Anil Kumble v Canada on September 12, 1998 - r",
              "against": {
                "id": "12",
                "name": "Canada",
                "shortName": "CAN"
              },
              "venue": {
                "id": "1687",
                "name": "Victoria Institute, Kuala Lumpur",
                "shortName": "Victoria Institute, Kuala Lumpur"
              },
              "matchId": "105830",
              "matchDate": "12/09/1998",
              "outcome": "r"
            },
            {
              "type": "bowling",
              "id": "2214",
              "name": "Ashish Nehra",
              "value": "4/27",
              "displayText": "4/27 by Ashish Nehra v Sussex on June 22, 2002 - w",
              "against": {
                "id": "1186",
                "name": "Sussex",
                "shortName": "SUS"
              },
              "venue": {
                "id": "110",
                "name": "County Ground, Hove",
                "shortName": "County Ground, Hove"
              },
              "matchId": "108341",
              "matchDate": "22/06/2002",
              "outcome": "w"
            }
          ]
        },
        "performanceAgainst": {
          "team": [
            {
              "id": "87",
              "name": "Antigua and Barbuda",
              "shortName": "ATG",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "105821",
                "matchFilename": "aubin09091998105821",
                "date": "09/09/1998",
                "runs": "30",
                "wicket": "2",
                "overs": null,
                "vsId": "87",
                "vsName": "Antigua and Barbuda",
                "matchResult": "No Result"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "105821",
                "matchFilename": "aubin09091998105821",
                "date": "09/09/1998",
                "runs": "30",
                "wicket": "2",
                "overs": null,
                "vsId": "87",
                "vsName": "Antigua and Barbuda",
                "matchResult": "No Result"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1",
              "name": "Australia",
              "shortName": "AUS",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "105848",
                "matchFilename": "auin09151998105848",
                "date": "15/09/1998",
                "runs": "109",
                "wicket": "9",
                "overs": null,
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "Australia beat India by 146 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "105848",
                "matchFilename": "auin09151998105848",
                "date": "15/09/1998",
                "runs": "109",
                "wicket": "9",
                "overs": null,
                "vsId": "1",
                "vsName": "Australia",
                "matchResult": "Australia beat India by 146 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "96",
              "name": "Baluchistan Governor's XI",
              "shortName": "BAG",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "99140",
                "matchFilename": "btein1127198299140",
                "date": "27/11/1982",
                "runs": "174",
                "wicket": "6",
                "overs": null,
                "vsId": "96",
                "vsName": "Baluchistan Governor's XI",
                "matchResult": "Indians beat Baluchistan Governor's XI by 4 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "99140",
                "matchFilename": "btein1127198299140",
                "date": "27/11/1982",
                "runs": "174",
                "wicket": "6",
                "overs": null,
                "vsId": "96",
                "vsName": "Baluchistan Governor's XI",
                "matchResult": "Indians beat Baluchistan Governor's XI by 4 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "99140",
                "matchFilename": "btein1127198299140",
                "date": "27/11/1982",
                "runs": "175",
                "wicket": "6",
                "overs": null,
                "vsId": "96",
                "vsName": "Baluchistan Governor's XI",
                "matchResult": "Indians beat Baluchistan Governor's XI by 4 Wickets"
              }
            },
            {
              "id": "12",
              "name": "Canada",
              "shortName": "CAN",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "105830",
                "matchFilename": "cain09121998105830",
                "date": "12/09/1998",
                "runs": "157",
                "wicket": "9",
                "overs": null,
                "vsId": "12",
                "vsName": "Canada",
                "matchResult": "India beat Canada by 112 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "105830",
                "matchFilename": "cain09121998105830",
                "date": "12/09/1998",
                "runs": "157",
                "wicket": "9",
                "overs": null,
                "vsId": "12",
                "vsName": "Canada",
                "matchResult": "India beat Canada by 112 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1385",
              "name": "Central Stags",
              "shortName": "CS",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "103914",
                "matchFilename": "cein02141995103914",
                "date": "14/02/1995",
                "runs": "253",
                "wicket": "1",
                "overs": null,
                "vsId": "1385",
                "vsName": "Central Stags",
                "matchResult": "Indians beat Central Districts by 9 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "103914",
                "matchFilename": "cein02141995103914",
                "date": "14/02/1995",
                "runs": "253",
                "wicket": "1",
                "overs": null,
                "vsId": "1385",
                "vsName": "Central Stags",
                "matchResult": "Indians beat Central Districts by 9 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "103914",
                "matchFilename": "cein02141995103914",
                "date": "14/02/1995",
                "runs": "254",
                "wicket": "1",
                "overs": null,
                "vsId": "1385",
                "vsName": "Central Stags",
                "matchResult": "Indians beat Central Districts by 9 Wickets"
              }
            },
            {
              "id": "225",
              "name": "Derbyshire",
              "shortName": "DER",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "101826",
                "matchFilename": "drin07161990101826",
                "date": "16/07/1990",
                "runs": "239",
                "wicket": "8",
                "overs": null,
                "vsId": "225",
                "vsName": "Derbyshire",
                "matchResult": "Indians beat Derbyshire by 2 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "101826",
                "matchFilename": "drin07161990101826",
                "date": "16/07/1990",
                "runs": "239",
                "wicket": "8",
                "overs": null,
                "vsId": "225",
                "vsName": "Derbyshire",
                "matchResult": "Indians beat Derbyshire by 2 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "101826",
                "matchFilename": "drin07161990101826",
                "date": "16/07/1990",
                "runs": "240",
                "wicket": "8",
                "overs": null,
                "vsId": "225",
                "vsName": "Derbyshire",
                "matchResult": "Indians beat Derbyshire by 2 Wickets"
              }
            },
            {
              "id": "269",
              "name": "England A",
              "shortName": "ENA",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "111682",
                "matchFilename": "egin08182007111682",
                "date": "18/08/2007",
                "runs": "32",
                "wicket": "0",
                "overs": null,
                "vsId": "269",
                "vsName": "England A",
                "matchResult": "No Result"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "111682",
                "matchFilename": "egin08182007111682",
                "date": "18/08/2007",
                "runs": "32",
                "wicket": "0",
                "overs": null,
                "vsId": "269",
                "vsName": "England A",
                "matchResult": "No Result"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "469",
              "name": "Kent",
              "shortName": "KET",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "108348",
                "matchFilename": "knin06242002108348",
                "date": "24/06/2002",
                "runs": "263",
                "wicket": "10",
                "overs": null,
                "vsId": "469",
                "vsName": "Kent",
                "matchResult": "Kent beat Indians by 21 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "108348",
                "matchFilename": "knin06242002108348",
                "date": "24/06/2002",
                "runs": "263",
                "wicket": "10",
                "overs": null,
                "vsId": "469",
                "vsName": "Kent",
                "matchResult": "Kent beat Indians by 21 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "506",
              "name": "Leicestershire",
              "shortName": "LEI",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "108350",
                "matchFilename": "lein06262002108350",
                "date": "26/06/2002",
                "runs": "315",
                "wicket": "7",
                "overs": null,
                "vsId": "506",
                "vsName": "Leicestershire",
                "matchResult": "Indians beat Leicestershire by 54 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "108350",
                "matchFilename": "lein06262002108350",
                "date": "26/06/2002",
                "runs": "315",
                "wicket": "7",
                "overs": null,
                "vsId": "506",
                "vsName": "Leicestershire",
                "matchResult": "Indians beat Leicestershire by 54 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1113",
              "name": "Middlesex",
              "shortName": "MID",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "104571",
                "matchFilename": "msin05191996104571",
                "date": "19/05/1996",
                "runs": "232",
                "wicket": "8",
                "overs": null,
                "vsId": "1113",
                "vsName": "Middlesex",
                "matchResult": "Indians beat Middlesex"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "104571",
                "matchFilename": "msin05191996104571",
                "date": "19/05/1996",
                "runs": "232",
                "wicket": "8",
                "overs": null,
                "vsId": "1113",
                "vsName": "Middlesex",
                "matchResult": "Indians beat Middlesex"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "644",
              "name": "Northamptonshire",
              "shortName": "NOR",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "104572",
                "matchFilename": "noin05211996104572",
                "date": "21/05/1996",
                "runs": "228",
                "wicket": "9",
                "overs": null,
                "vsId": "644",
                "vsName": "Northamptonshire",
                "matchResult": "Northamptonshire beat Indians"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "104572",
                "matchFilename": "noin05211996104572",
                "date": "21/05/1996",
                "runs": "228",
                "wicket": "9",
                "overs": null,
                "vsId": "644",
                "vsName": "Northamptonshire",
                "matchResult": "Northamptonshire beat Indians"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "355",
              "name": "Northern Cape",
              "shortName": "NCH",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "104948",
                "matchFilename": "gwin01091997104948",
                "date": "09/01/1997",
                "runs": "206",
                "wicket": "3",
                "overs": null,
                "vsId": "355",
                "vsName": "Northern Cape",
                "matchResult": "Indians beat Griqualand West by 7 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "104948",
                "matchFilename": "gwin01091997104948",
                "date": "09/01/1997",
                "runs": "206",
                "wicket": "3",
                "overs": null,
                "vsId": "355",
                "vsName": "Northern Cape",
                "matchResult": "Indians beat Griqualand West by 7 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "104948",
                "matchFilename": "gwin01091997104948",
                "date": "09/01/1997",
                "runs": "207",
                "wicket": "3",
                "overs": null,
                "vsId": "355",
                "vsName": "Northern Cape",
                "matchResult": "Indians beat Griqualand West by 7 Wickets"
              }
            },
            {
              "id": "855",
              "name": "South Africa A",
              "shortName": "SA-A",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "107802",
                "matchFilename": "sfin10032001107802",
                "date": "03/10/2001",
                "runs": "245",
                "wicket": "7",
                "overs": null,
                "vsId": "855",
                "vsName": "South Africa A",
                "matchResult": "Indians beat South Africa A by 3 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "104958",
                "matchFilename": "sfin01301997104958",
                "date": "30/01/1997",
                "runs": "94",
                "wicket": "5",
                "overs": null,
                "vsId": "855",
                "vsName": "South Africa A",
                "matchResult": "No Result"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "107802",
                "matchFilename": "sfin10032001107802",
                "date": "03/10/2001",
                "runs": "246",
                "wicket": "7",
                "overs": null,
                "vsId": "855",
                "vsName": "South Africa A",
                "matchResult": "Indians beat South Africa A by 3 Wickets"
              }
            },
            {
              "id": "859",
              "name": "South Africa Pres XI",
              "shortName": "SAP",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "102872",
                "matchFilename": "asxin12041992102872",
                "date": "04/12/1992",
                "runs": "199",
                "wicket": "4",
                "overs": null,
                "vsId": "859",
                "vsName": "South Africa Pres XI",
                "matchResult": "Indians beat South Africa Pres XI by 6 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "102872",
                "matchFilename": "asxin12041992102872",
                "date": "04/12/1992",
                "runs": "199",
                "wicket": "4",
                "overs": null,
                "vsId": "859",
                "vsName": "South Africa Pres XI",
                "matchResult": "Indians beat South Africa Pres XI by 6 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "102872",
                "matchFilename": "asxin12041992102872",
                "date": "04/12/1992",
                "runs": "200",
                "wicket": "4",
                "overs": null,
                "vsId": "859",
                "vsName": "South Africa Pres XI",
                "matchResult": "Indians beat South Africa Pres XI by 6 Wickets"
              }
            },
            {
              "id": "8",
              "name": "Sri Lanka",
              "shortName": "SL",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "96882",
                "matchFilename": "slin0130197496882",
                "date": "30/01/1974",
                "runs": "210",
                "wicket": "7",
                "overs": null,
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Indians beat Sri Lanka by 3 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "96886",
                "matchFilename": "slin0206197496886",
                "date": "06/02/1974",
                "runs": "109",
                "wicket": "5",
                "overs": null,
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Indians beat Sri Lanka by 5 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "96882",
                "matchFilename": "slin0130197496882",
                "date": "30/01/1974",
                "runs": "211",
                "wicket": "7",
                "overs": null,
                "vsId": "8",
                "vsName": "Sri Lanka",
                "matchResult": "Indians beat Sri Lanka by 3 Wickets"
              }
            },
            {
              "id": "900",
              "name": "Sri Lanka A",
              "shortName": "SL-A",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "111073",
                "matchFilename": "skin08122006111073",
                "date": "12/08/2006",
                "runs": "203",
                "wicket": "7",
                "overs": null,
                "vsId": "900",
                "vsName": "Sri Lanka A",
                "matchResult": "Indians beat Sri Lanka A by 3 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "111073",
                "matchFilename": "skin08122006111073",
                "date": "12/08/2006",
                "runs": "203",
                "wicket": "7",
                "overs": null,
                "vsId": "900",
                "vsName": "Sri Lanka A",
                "matchResult": "Indians beat Sri Lanka A by 3 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "111073",
                "matchFilename": "skin08122006111073",
                "date": "12/08/2006",
                "runs": "204",
                "wicket": "7",
                "overs": null,
                "vsId": "900",
                "vsName": "Sri Lanka A",
                "matchResult": "Indians beat Sri Lanka A by 3 Wickets"
              }
            },
            {
              "id": "905",
              "name": "Sri Lankan Invitation XI",
              "shortName": "SLI",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "112352",
                "matchFilename": "lixin08152008112352",
                "date": "15/08/2008",
                "runs": "342",
                "wicket": "5",
                "overs": null,
                "vsId": "905",
                "vsName": "Sri Lankan Invitation XI",
                "matchResult": "Indians beat Sri Lankan XI by 92 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "105243",
                "matchFilename": "lixin08151997105243",
                "date": "15/08/1997",
                "runs": "243",
                "wicket": "8",
                "overs": null,
                "vsId": "905",
                "vsName": "Sri Lankan Invitation XI",
                "matchResult": "Indians beat Sri Lankan Board XI by 2 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "105243",
                "matchFilename": "lixin08151997105243",
                "date": "15/08/1997",
                "runs": "244",
                "wicket": "8",
                "overs": null,
                "vsId": "905",
                "vsName": "Sri Lankan Invitation XI",
                "matchResult": "Indians beat Sri Lankan Board XI by 2 Wickets"
              }
            },
            {
              "id": "944",
              "name": "Surrey",
              "shortName": "SUR",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "100261",
                "matchFilename": "sgin05151986100261",
                "date": "15/05/1986",
                "runs": "231",
                "wicket": "5",
                "overs": null,
                "vsId": "944",
                "vsName": "Surrey",
                "matchResult": "Indians beat Surrey by 5 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "100261",
                "matchFilename": "sgin05151986100261",
                "date": "15/05/1986",
                "runs": "231",
                "wicket": "5",
                "overs": null,
                "vsId": "944",
                "vsName": "Surrey",
                "matchResult": "Indians beat Surrey by 5 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "100261",
                "matchFilename": "sgin05151986100261",
                "date": "15/05/1986",
                "runs": "232",
                "wicket": "5",
                "overs": null,
                "vsId": "944",
                "vsName": "Surrey",
                "matchResult": "Indians beat Surrey by 5 Wickets"
              }
            },
            {
              "id": "1186",
              "name": "Sussex",
              "shortName": "SUS",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "114369",
                "matchFilename": "ssin08252011114369",
                "date": "25/08/2011",
                "runs": "238",
                "wicket": "4",
                "overs": null,
                "vsId": "1186",
                "vsName": "Sussex",
                "matchResult": "Indians beat Sussex by 6 D/L - Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "108341",
                "matchFilename": "ssin06222002108341",
                "date": "22/06/2002",
                "runs": "205",
                "wicket": "7",
                "overs": null,
                "vsId": "1186",
                "vsName": "Sussex",
                "matchResult": "Indians beat Sussex by 3 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "114369",
                "matchFilename": "ssin08252011114369",
                "date": "25/08/2011",
                "runs": "239",
                "wicket": "4",
                "overs": null,
                "vsId": "1186",
                "vsName": "Sussex",
                "matchResult": "Indians beat Sussex by 6 D/L - Wickets"
              }
            },
            {
              "id": "46",
              "name": "Tasmania",
              "shortName": "TAS",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "97836",
                "matchFilename": "tain1223197797836",
                "date": "23/12/1977",
                "runs": "170",
                "wicket": "9",
                "overs": null,
                "vsId": "46",
                "vsName": "Tasmania",
                "matchResult": "Tasmania beat Indians by 3 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "98551",
                "matchFilename": "tain1214198098551",
                "date": "14/12/1980",
                "runs": "141",
                "wicket": "9",
                "overs": null,
                "vsId": "46",
                "vsName": "Tasmania",
                "matchResult": "Tasmania beat Indians by 3 Wickets"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1015",
              "name": "Wellington Firebirds",
              "shortName": "WF",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "97349",
                "matchFilename": "vein0119197697349",
                "date": "19/01/1976",
                "runs": "160",
                "wicket": "10",
                "overs": null,
                "vsId": "1015",
                "vsName": "Wellington Firebirds",
                "matchResult": "Wellington beat Indians by 9 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "97349",
                "matchFilename": "vein0119197697349",
                "date": "19/01/1976",
                "runs": "160",
                "wicket": "10",
                "overs": null,
                "vsId": "1015",
                "vsName": "Wellington Firebirds",
                "matchResult": "Wellington beat Indians by 9 Wickets"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1117",
              "name": "Western Australia",
              "shortName": "WAU",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "98550",
                "matchFilename": "wsin1125198098550",
                "date": "25/11/1980",
                "runs": "250",
                "wicket": "6",
                "overs": null,
                "vsId": "1117",
                "vsName": "Western Australia",
                "matchResult": "Indians beat Western Australia"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "102410",
                "matchFilename": "wsin11181991102410",
                "date": "18/11/1991",
                "runs": "64",
                "wicket": "10",
                "overs": null,
                "vsId": "1117",
                "vsName": "Western Australia",
                "matchResult": "Western Australia beat Indians by 9 Wickets"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            },
            {
              "id": "1071",
              "name": "Zimbabwe A",
              "shortName": "ZIM-A",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "107633",
                "matchFilename": "zain06222001107633",
                "date": "22/06/2001",
                "runs": "108",
                "wicket": "0",
                "overs": null,
                "vsId": "1071",
                "vsName": "Zimbabwe A",
                "matchResult": "Indians beat Zimbabwe A by 10 Wickets"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "107633",
                "matchFilename": "zain06222001107633",
                "date": "22/06/2001",
                "runs": "108",
                "wicket": "0",
                "overs": null,
                "vsId": "1071",
                "vsName": "Zimbabwe A",
                "matchResult": "Indians beat Zimbabwe A by 10 Wickets"
              },
              "highestScoreChased": {
                "id": "4",
                "name": "India",
                "shortName": "in",
                "matchId": "107633",
                "matchFilename": "zain06222001107633",
                "date": "22/06/2001",
                "runs": "109",
                "wicket": "0",
                "overs": null,
                "vsId": "1071",
                "vsName": "Zimbabwe A",
                "matchResult": "Indians beat Zimbabwe A by 10 Wickets"
              }
            },
            {
              "id": "1075",
              "name": "Zimbabwe Inv XI",
              "shortName": "ZI",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100",
              "highestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "102827",
                "matchFilename": "zixin10151992102827",
                "date": "15/10/1992",
                "runs": "203",
                "wicket": "9",
                "overs": null,
                "vsId": "1075",
                "vsName": "Zimbabwe Inv XI",
                "matchResult": "Indians beat Zimbabwe Inv XI by 16 Runs"
              },
              "lowestScore": {
                "id": "4",
                "name": "India",
                "shortName": "IND",
                "matchId": "102827",
                "matchFilename": "zixin10151992102827",
                "date": "15/10/1992",
                "runs": "203",
                "wicket": "9",
                "overs": null,
                "vsId": "1075",
                "vsName": "Zimbabwe Inv XI",
                "matchResult": "Indians beat Zimbabwe Inv XI by 16 Runs"
              },
              "highestScoreChased": {
                "id": null,
                "name": null,
                "shortName": null,
                "matchId": null,
                "matchFilename": null,
                "date": null,
                "runs": null,
                "wicket": null,
                "overs": null,
                "vsId": null,
                "vsName": null,
                "matchResult": null
              }
            }
          ]
        },
        "homeRecords": null,
        "awayRecords": {
          "matchesPlayed": "30",
          "matchesWon": "20",
          "matchesLost": "7",
          "matchesTied": "0",
          "noResult": "0",
          "winPercentage": "66.67",
          "topPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "2962",
                "name": "Sachin Tendulkar",
                "value": "629",
                "displayText": "Sachin Tendulkar - (629 runs for India)"
              },
              {
                "type": "bowling",
                "id": "1767",
                "name": "Anil Kumble",
                "value": "23",
                "displayText": "Anil Kumble - (23 wickets for India)"
              }
            ]
          },
          "higestIndividualPerformer": {
            "record": [
              {
                "type": "batting",
                "id": "3314",
                "name": "Yuvraj Singh",
                "value": "172",
                "displayText": "172 by Yuvraj Singh v Sri Lankan Invitation XI on August 15, 2008 - Indians beat Sri Lankan XI by 92 Runs",
                "isNotOut": "False",
                "against": {
                  "id": "905",
                  "name": "Sri Lankan Invitation XI",
                  "shortName": "SLI"
                },
                "venue": {
                  "id": "120",
                  "name": "P Sara Oval, Colombo",
                  "shortName": "P Sara Oval, Colombo"
                },
                "matchId": "112352",
                "matchDate": "15/08/2008",
                "outcome": "Indians beat Sri Lankan XI by 92 Runs"
              },
              {
                "type": "bowling",
                "id": "991",
                "name": "Dilip Doshi",
                "value": "5/24",
                "displayText": "5/24 by Dilip Doshi v Western Australia on November 25, 1980 - Indians beat Western Australia",
                "against": {
                  "id": "1117",
                  "name": "Western Australia",
                  "shortName": "WAU"
                },
                "venue": {
                  "id": "167",
                  "name": "W.A.C.A. Ground, Perth",
                  "shortName": "W.A.C.A. Ground, Perth"
                },
                "matchId": "98550",
                "matchDate": "25/11/1980",
                "outcome": "Indians beat Western Australia"
              }
            ]
          }
        },
        "neutralRecords": null,
        "venuesBasedPerformance": {
          "venue": [
            {
              "id": "8",
              "name": "Pakistan - Ayub National Stadium, Quetta",
              "shortName": "Ayub National Stadium, Quetta",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "14",
              "name": "New Zealand - Cello Basin Reserve, Wellington",
              "shortName": "Cello Basin Reserve, Wellington",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "33",
              "name": "Sri Lanka - Colombo Cricket Club Ground, Colombo",
              "shortName": "Colombo Cricket Club Ground, Colombo",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "38",
              "name": "England - County Ground, Northampton",
              "shortName": "County Ground, Northampton",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "43",
              "name": "South Africa - Diamond Oval, Kimberley",
              "shortName": "Diamond Oval, Kimberley",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "60",
              "name": "England - Uptonsteel County Ground, Leicester",
              "shortName": "Uptonsteel County Ground, Leicester",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "81",
              "name": "England - Kennington Oval, London",
              "shortName": "Kennington Oval, London",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "89",
              "name": "England - Lord's Cricket Ground, London",
              "shortName": "Lord's Cricket Ground, London",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "95",
              "name": "New Zealand - McLean Park, Napier",
              "shortName": "McLean Park, Napier",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "110",
              "name": "England - County Ground, Hove",
              "shortName": "County Ground, Hove",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "115",
              "name": "Australia - North Tasmania Cricket Association Ground, Launceston",
              "shortName": "North Tasmania Cricket Association Ground, Launceston",
              "matchesPlayed": "2",
              "matchesWon": "0",
              "matchesLost": "2",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "120",
              "name": "Sri Lanka - P Sara Oval, Colombo",
              "shortName": "P Sara Oval, Colombo",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "152",
              "name": "England - The Spitfire Ground, Canterbury",
              "shortName": "The Spitfire Ground, Canterbury",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "162",
              "name": "Sri Lanka - De Zoysa Stadium, Moratuwa",
              "shortName": "De Zoysa Stadium, Moratuwa",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "167",
              "name": "Australia - W.A.C.A. Ground, Perth",
              "shortName": "W.A.C.A. Ground, Perth",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "172",
              "name": "South Africa - Willowmoore Park, Benoni",
              "shortName": "Willowmoore Park, Benoni",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "208",
              "name": "Malaysia - Kilat Club, Kuala Lumpur",
              "shortName": "Kilat Club, Kuala Lumpur",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "300",
              "name": "Sri Lanka - Colts Cricket Club Ground, Colombo",
              "shortName": "Colts Cricket Club Ground, Colombo",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "396",
              "name": "England - Queen's Park, Chesterfield",
              "shortName": "Queen's Park, Chesterfield",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1062",
              "name": "South Africa - Jan Smuts Stadium, Pietermaritzburg",
              "shortName": "Jan Smuts Stadium, Pietermaritzburg",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "1303",
              "name": "Zimbabwe - Old Georgians Sports Club, Harare",
              "shortName": "Old Georgians Sports Club, Harare",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1347",
              "name": "Malaysia - Perbadanan Kemajuan Negari Selangor, Kelana Jaya, Kuala Lumpur",
              "shortName": "Perbadanan Kemajuan Negari Selangor, Kelana Jaya, Kuala Lumpur",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1585",
              "name": "Zimbabwe - Sunrise Sports Club, Harare",
              "shortName": "Sunrise Sports Club, Harare",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1687",
              "name": "Malaysia - Victoria Institute, Kuala Lumpur",
              "shortName": "Victoria Institute, Kuala Lumpur",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1709",
              "name": "England - Wardown Park, Luton",
              "shortName": "Wardown Park, Luton",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            }
          ]
        },
        "listOfCaptains": {
          "captain": [
            {
              "id": "487",
              "name": "Mohammad Azharuddin",
              "shortName": "Azharuddin",
              "matchesPlayed": "5",
              "matchesWon": "4",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "80"
            },
            {
              "id": "2962",
              "name": "Sachin Tendulkar",
              "shortName": "Tendulkar",
              "matchesPlayed": "4",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "3676",
              "name": "MS Dhoni",
              "shortName": "Dhoni",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "1186",
              "name": "Sourav Ganguly",
              "shortName": "Ganguly",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "1199",
              "name": "Sunil Gavaskar",
              "shortName": "Gavaskar",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "id": "1004",
              "name": "Rahul Dravid",
              "shortName": "Dravid",
              "matchesPlayed": "3",
              "matchesWon": "3",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1589",
              "name": "Ajay Jadeja",
              "shortName": "Jadeja",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "id": "559",
              "name": "Bishan Bedi",
              "shortName": "Bedi",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "782",
              "name": "Chetan Chauhan",
              "shortName": "Chauhan",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "2716",
              "name": "Ravi Shastri",
              "shortName": "Shastri",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "id": "1682",
              "name": "Kapil Dev",
              "shortName": "Dev",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "1767",
              "name": "Anil Kumble",
              "shortName": "Kumble",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "3076",
              "name": "Srinivas Venkataraghavan",
              "shortName": "Venkataraghavan",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "id": "3105",
              "name": "Ajit Wadekar",
              "shortName": "Wadekar",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "splitByYear": {
          "year": [
            {
              "value": "1974",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1976",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1977",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1980",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "1982",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1986",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1990",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1991",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "1992",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1995",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "1996",
              "matchesPlayed": "2",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "50"
            },
            {
              "value": "1997",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "value": "1998",
              "matchesPlayed": "3",
              "matchesWon": "1",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "33.33"
            },
            {
              "value": "2001",
              "matchesPlayed": "2",
              "matchesWon": "2",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "2002",
              "matchesPlayed": "3",
              "matchesWon": "2",
              "matchesLost": "1",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "66.67"
            },
            {
              "value": "2006",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "2007",
              "matchesPlayed": "1",
              "matchesWon": "0",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "0"
            },
            {
              "value": "2008",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            },
            {
              "value": "2011",
              "matchesPlayed": "1",
              "matchesWon": "1",
              "matchesLost": "0",
              "matchesTied": "0",
              "noResult": "0",
              "winPercentage": "100"
            }
          ]
        },
        "lastTwelveMonths": null,
        "manOfTheMatches": {
          "manOfTheMatch": [
            {
              "id": "3105",
              "name": "Ajit Wadekar",
              "matchesPlayed": "1",
              "manOfTheMatch": "1"
            }
          ]
        },
        "manOfTheSeries": null,
        "leaders": {
          "mostMatchesPlayed": {
            "stat": "Most Matches Played",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null
          },
          "mostRunsLeader": {
            "stat": "Most Runs",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "highestScore": {
            "stat": "Highest Score",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "runs": null
          },
          "mostHundreds": {
            "stat": "Most Hundreds",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "hundreds": null
          },
          "mostFifties": {
            "stat": "Most Fifties",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fifties": null
          },
          "mostFours": {
            "stat": "Most Fours",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "fours": null
          },
          "mostSixes": {
            "stat": "Most Sixes",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "sixes": null
          },
          "bestBattingAverage": {
            "stat": "Best Batting Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          },
          "bestStrikeRate": {
            "stat": "Best Strike Rate",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "strikeRate": null
          },
          "mostWickets": {
            "stat": "Most Wickets",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "wickets": null
          },
          "bestBowlingFigure": {
            "stat": "Best Bowling Figure",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "bowlingFigure": null
          },
          "bestEconomy": {
            "stat": "Best Economy",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "economy": null
          },
          "bestBowlingAverage": {
            "stat": "Best Bowling Average",
            "playerId": null,
            "playerName": null,
            "matchesPlayed": null,
            "inningsPlayed": null,
            "gender": null,
            "nationality": null,
            "nationalityId": null,
            "average": null
          }
        }
      }
    }
  ],
  "players": [
    {
      "id": "64450",
      "name": "Abhimanyu Ranganathan Parmashwaran Easwaran",
      "shortName": "Abhimanyu Easwaran",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "66799",
      "name": "Abhishek Sharma",
      "shortName": "Abhishek Sharma",
      "skillId": "3",
      "skillName": "All-Rounder"
    },
    {
      "id": "71447",
      "name": "Akash Deep",
      "shortName": "Akash Deep",
      "skillId": "2",
      "skillName": "Bowler"
    },
    {
      "id": "67905",
      "name": "Arshdeep Singh",
      "shortName": "Arshdeep Singh",
      "skillId": "2",
      "skillName": "Bowler"
    },
    {
      "id": "62576",
      "name": "Axar Rajeshbhai Patel",
      "shortName": "Axar Patel",
      "skillId": "3",
      "skillName": "All-Rounder"
    },
    {
      "id": "67589",
      "name": "Devdutt Babunu Padikkal",
      "shortName": "Devdutt Padikkal",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "71370",
      "name": "Dhruv Chand Jurel",
      "shortName": "Dhruv Jurel",
      "skillId": "4",
      "skillName": "Wicket-Keeper",
      "isKeeper": "true"
    },
    {
      "id": "63751",
      "name": "Hardik Himanshu Pandya",
      "shortName": "Hardik Pandya",
      "skillId": "3",
      "skillName": "All-Rounder"
    },
    {
      "id": "93526",
      "name": "Harshit Pradeep Rana",
      "shortName": "Harshit Rana",
      "skillId": "2",
      "skillName": "Bowler"
    },
    {
      "id": "63755",
      "name": "Jasprit Jasbirsingh Bumrah",
      "shortName": "Jasprit Bumrah",
      "skillId": "2",
      "skillName": "Bowler"
    },
    {
      "id": "62297",
      "name": "Karun Kaladharan Nair",
      "shortName": "Karun Nair",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "60122",
      "name": "Rahul Kannaur Lokesh",
      "shortName": "KL Rahul",
      "skillId": "4",
      "skillName": "Wicket-Keeper"
    },
    {
      "id": "63187",
      "name": "Kuldeep Yadav",
      "shortName": "Kuldeep Yadav",
      "skillId": "2",
      "skillName": "Bowler"
    },
    {
      "id": "28994",
      "name": "Mohammad Shami Ahmed",
      "shortName": "Mohammad Shami",
      "skillId": "2",
      "skillName": "Bowler"
    },
    {
      "id": "65799",
      "name": "Mohammed Siraj",
      "shortName": "Mohammed Siraj",
      "skillId": "2",
      "skillName": "Bowler"
    },
    {
      "id": "74837",
      "name": "Kaki Nitish Kumar Reddy",
      "shortName": "Nitish Kumar Reddy",
      "skillId": "3",
      "skillName": "All-Rounder"
    },
    {
      "id": "65702",
      "name": "Muralikrishna Prasidh Krishna",
      "shortName": "Prasidh Krishna",
      "skillId": "2",
      "skillName": "Bowler"
    },
    {
      "id": "66953",
      "name": "Ramandeep Singh",
      "shortName": "Ramandeep Singh",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "71288",
      "name": "Ravi Bishnoi",
      "shortName": "Ravi Bishnoi",
      "skillId": "2",
      "skillName": "Bowler"
    },
    {
      "id": "4555",
      "name": "Ravichandran Ashwin",
      "shortName": "Ravichandran Ashwin",
      "skillId": "3",
      "skillName": "All-Rounder"
    },
    {
      "id": "3850",
      "name": "Ravindrasinh Anirudhsinh Jadeja",
      "shortName": "Ravindra Jadeja",
      "skillId": "3",
      "skillName": "All-Rounder"
    },
    {
      "id": "64727",
      "name": "Rinku Khanchand Singh",
      "shortName": "Rinku Singh",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "65756",
      "name": "Rishabh Rajendra Pant",
      "shortName": "Rishabh Pant",
      "skillId": "4",
      "skillName": "Wicket-Keeper",
      "isKeeper": "true"
    },
    {
      "id": "3852",
      "name": "Rohit Gurunath Sharma",
      "shortName": "Rohit Sharma",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "69500",
      "name": "Bhardwaj Sai Sudharsan",
      "shortName": "Sai Sudharsan",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "61837",
      "name": "Sanju Viswanath Samson",
      "shortName": "Sanju Samson",
      "skillId": "4",
      "skillName": "Wicket-Keeper"
    },
    {
      "id": "63345",
      "name": "Shardul Narendra Thakur",
      "shortName": "Shardul Thakur",
      "skillId": "3",
      "skillName": "All-Rounder"
    },
    {
      "id": "66044",
      "name": "Shivam Dube",
      "shortName": "Shivam Dube",
      "skillId": "3",
      "skillName": "All-Rounder"
    },
    {
      "id": "63961",
      "name": "Shreyas Santosh Iyer",
      "shortName": "Shreyas Iyer",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "66818",
      "name": "Shubman Singh Gill",
      "shortName": "Shubman Gill",
      "skillId": "1",
      "skillName": "Batsman",
      "isCaptain": "true"
    },
    {
      "id": "11803",
      "name": "Suryakumar Ashok Yadav",
      "shortName": "Suryakumar Yadav",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "70761",
      "name": "Namboori Thakur Tilak Varma",
      "shortName": "Tilak Varma",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "67469",
      "name": "Varun Chakaravarthy Vinod",
      "shortName": "Varun Chakaravarthy",
      "skillId": "2",
      "skillName": "Bowler"
    },
    {
      "id": "3993",
      "name": "Virat Kohli",
      "shortName": "Virat Kohli",
      "skillId": "1",
      "skillName": "Batsman"
    },
    {
      "id": "65859",
      "name": "Washington Sundar",
      "shortName": "Washington Sundar",
      "skillId": "3",
      "skillName": "All-Rounder"
    },
    {
      "id": "69238",
      "name": "Yashasvi Bhupendra Kumar Jaiswal",
      "shortName": "Yashasvi Jaiswal",
      "skillId": "1",
      "skillName": "Batsman"
    }
  ],
  "trophyDetails": [
    {
      "parentId": "2",
      "parentName": "ICC Cricket World Cup",
      "noOfTimesWon": "2",
      "year": " 1983, 2011"
    },
    {
      "parentId": "3",
      "parentName": "ICC Champions Trophy",
      "noOfTimesWon": "2",
      "year": " 2013, 2025"
    },
    {
      "parentId": "15",
      "parentName": "ICC World Twenty20",
      "noOfTimesWon": "2",
      "year": " 2007, 2024"
    }
  ]
}

Team Recent

get

Endpoint Description

This endpoint retrieves the recent match details for a specified cricket team. It provides comprehensive information about the team's performance across different formats of the game, including One Day Internationals (ODI), Twenty20 (T20), and Test matches. This data can be useful for fans, analysts, and teams to assess recent performances and trends.

Request

  • Method: GET

  • URL: https://apiv3.sportsapi360.com/cricket/api/v2/team/:teamId/recent

  • Path Parameters:

    • teamId (string): The unique identifier of the cricket team whose information is being requested.

Expected Response

The response will return a JSON object structured as follows:

  • odi: An object containing the recent ODI match details.

    • winLost: An array indicating the win/loss status for the matches.

    • scoreCard: An array of scorecard objects for each ODI match, which includes:

      • win: Indicates if the team won the match.

      • matchName: The name of the match.

      • matchNumber: The match number in the series.

      • startDate: The date when the match started.

      • matchStatus: The current status of the match (e.g., ongoing, completed).

      • winningTeamID: The ID of the team that won the match.

      • isLiveCriclyticsAvailable: A boolean indicating if live Criclytics data is available for the match.

      • matchType: The type of match (e.g., ODI).

      • venue: The venue where the match was held.

      • matchResult: The final result of the match.

      • matchID: The unique identifier for the match.

      • matchScore: An array containing details about the teams and their scores, including:

        • teamShortName: The short name of the team.

        • teamID: The unique identifier for the team.

        • teamFullName: The full name of the team.

        • teamScore: An array of objects providing score details for each inning, which includes:

          • inning: The inning number.

          • inningNumber: The specific number of the inning.

          • battingTeam: The name of the batting team.

          • runsScored: The total runs scored in that inning.

          • wickets: The number of wickets lost.

          • overs: The total overs faced.

          • runRate: The run rate achieved.

          • battingSide: The side that was batting.

          • battingTeamShortName: The short name of the batting team.

          • declared: A boolean indicating if the inning was declared.

          • folowOn: A boolean indicating if the follow-on rule was applied.

  • t20: Similar structure as the ODI section, but for T20 matches.

  • test: Similar structure as the ODI section, but for Test matches.

Notes

  • Ensure that the teamId provided in the request is valid to receive accurate match details.

  • The response includes detailed score information for each match, which can be useful for analyzing team performance over recent games.

  • This endpoint is particularly useful for sports analysts and fans looking to track the performance of their favorite teams over time.

Authorizations
Path parameters
teamIdstringRequired
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
200
OK
application/json
Responseobject
get
GET /cricket/api/v2/team/{teamId}/recent HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "odi": {
    "winLost": [
      "W",
      "W",
      "W",
      "W",
      "W"
    ],
    "scoreCard": [
      {
        "win": "W",
        "matchName": "IND VS NZ,Final",
        "matchNumber": "Final",
        "startDate": "1741530600000",
        "matchStatus": "completed",
        "winningTeamID": "4",
        "isLiveCriclyticsAvailable": true,
        "matchType": "ODI",
        "venue": " Dubai",
        "matchResult": "IND Won By 4 wickets",
        "matchID": "255197",
        "matchScore": [
          {
            "teamShortName": "NZ",
            "teamID": "5",
            "teamFullName": "New Zealand",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "New Zealand",
                "runsScored": "251",
                "wickets": "7",
                "overs": "50.0",
                "runRate": "5.02",
                "battingSide": "away",
                "teamID": "5",
                "battingTeamShortName": "NZ",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "India",
                "runsScored": "254",
                "wickets": "6",
                "overs": "49.0",
                "runRate": "5.18",
                "battingSide": "home",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "W",
        "matchName": "IND VS AUS,1st Semi-Final",
        "matchNumber": "1st Semi-Final",
        "startDate": "1741098600000",
        "matchStatus": "completed",
        "winningTeamID": "4",
        "isLiveCriclyticsAvailable": true,
        "matchType": "ODI",
        "venue": " Dubai",
        "matchResult": "IND Won By 4 wickets",
        "matchID": "255195",
        "matchScore": [
          {
            "teamShortName": "AUS",
            "teamID": "1",
            "teamFullName": "Australia",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "Australia",
                "runsScored": "264",
                "wickets": "10",
                "overs": "49.3",
                "runRate": "5.33",
                "battingSide": "away",
                "teamID": "1",
                "battingTeamShortName": "AUS",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "India",
                "runsScored": "267",
                "wickets": "6",
                "overs": "48.1",
                "runRate": "5.54",
                "battingSide": "home",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "W",
        "matchName": "NZ VS IND,Match 12",
        "matchNumber": "Match 12",
        "startDate": "1740925800000",
        "matchStatus": "completed",
        "winningTeamID": "4",
        "isLiveCriclyticsAvailable": true,
        "matchType": "ODI",
        "venue": " Dubai",
        "matchResult": "IND Won By 44 runs",
        "matchID": "255194",
        "matchScore": [
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "India",
                "runsScored": "249",
                "wickets": "9",
                "overs": "50.0",
                "runRate": "4.98",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "NZ",
            "teamID": "5",
            "teamFullName": "New Zealand",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "New Zealand",
                "runsScored": "205",
                "wickets": "10",
                "overs": "45.3",
                "runRate": "4.51",
                "battingSide": "home",
                "teamID": "5",
                "battingTeamShortName": "NZ",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "W",
        "matchName": "PAK VS IND,Match 5",
        "matchNumber": "Match 5",
        "startDate": "1740321000000",
        "matchStatus": "completed",
        "winningTeamID": "4",
        "isLiveCriclyticsAvailable": true,
        "matchType": "ODI",
        "venue": " Dubai",
        "matchResult": "IND Won By 6 wickets",
        "matchID": "255187",
        "matchScore": [
          {
            "teamShortName": "PAK",
            "teamID": "6",
            "teamFullName": "Pakistan",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "Pakistan",
                "runsScored": "241",
                "wickets": "10",
                "overs": "49.4",
                "runRate": "4.85",
                "battingSide": "home",
                "teamID": "6",
                "battingTeamShortName": "PAK",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "India",
                "runsScored": "244",
                "wickets": "4",
                "overs": "42.3",
                "runRate": "5.74",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "W",
        "matchName": "BAN VS IND,Match 2",
        "matchNumber": "Match 2",
        "startDate": "1740061800000",
        "matchStatus": "completed",
        "winningTeamID": "4",
        "isLiveCriclyticsAvailable": true,
        "matchType": "ODI",
        "venue": " Dubai",
        "matchResult": "IND Won By 6 wickets",
        "matchID": "255184",
        "matchScore": [
          {
            "teamShortName": "BAN",
            "teamID": "2",
            "teamFullName": "Bangladesh",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "Bangladesh",
                "runsScored": "228",
                "wickets": "10",
                "overs": "49.4",
                "runRate": "4.59",
                "battingSide": "home",
                "teamID": "2",
                "battingTeamShortName": "BAN",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "India",
                "runsScored": "231",
                "wickets": "4",
                "overs": "46.3",
                "runRate": "4.97",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      }
    ]
  },
  "t20": {
    "winLost": [
      "W",
      "W",
      "L",
      "W",
      "W"
    ],
    "scoreCard": [
      {
        "win": "W",
        "matchName": "IND VS ENG,5th T20I",
        "matchNumber": "5th T20I",
        "startDate": "1738522800000",
        "matchStatus": "completed",
        "winningTeamID": "4",
        "isLiveCriclyticsAvailable": true,
        "matchType": "T20",
        "venue": " Mumbai",
        "matchResult": "IND Won By 150 runs",
        "matchID": "247155",
        "matchScore": [
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "India",
                "runsScored": "247",
                "wickets": "9",
                "overs": "20.0",
                "runRate": "12.35",
                "battingSide": "home",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "ENG",
            "teamID": "3",
            "teamFullName": "England",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "England",
                "runsScored": "97",
                "wickets": "10",
                "overs": "10.3",
                "runRate": "9.24",
                "battingSide": "away",
                "teamID": "3",
                "battingTeamShortName": "ENG",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "W",
        "matchName": "IND VS ENG,4th T20I",
        "matchNumber": "4th T20I",
        "startDate": "1738350000000",
        "matchStatus": "completed",
        "winningTeamID": "4",
        "isLiveCriclyticsAvailable": true,
        "matchType": "T20",
        "venue": " Pune",
        "matchResult": "IND Won By 15 runs",
        "matchID": "247154",
        "matchScore": [
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "India",
                "runsScored": "181",
                "wickets": "9",
                "overs": "20.0",
                "runRate": "9.05",
                "battingSide": "home",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "ENG",
            "teamID": "3",
            "teamFullName": "England",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "England",
                "runsScored": "166",
                "wickets": "10",
                "overs": "19.4",
                "runRate": "8.44",
                "battingSide": "away",
                "teamID": "3",
                "battingTeamShortName": "ENG",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "L",
        "matchName": "IND VS ENG,3rd T20I",
        "matchNumber": "3rd T20I",
        "startDate": "1738090800000",
        "matchStatus": "completed",
        "winningTeamID": "3",
        "isLiveCriclyticsAvailable": true,
        "matchType": "T20",
        "venue": " Rajkot",
        "matchResult": "ENG Won By 26 runs",
        "matchID": "247153",
        "matchScore": [
          {
            "teamShortName": "ENG",
            "teamID": "3",
            "teamFullName": "England",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "England",
                "runsScored": "171",
                "wickets": "9",
                "overs": "20.0",
                "runRate": "8.55",
                "battingSide": "away",
                "teamID": "3",
                "battingTeamShortName": "ENG",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "India",
                "runsScored": "145",
                "wickets": "9",
                "overs": "20.0",
                "runRate": "7.25",
                "battingSide": "home",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "W",
        "matchName": "IND VS ENG,2nd T20I",
        "matchNumber": "2nd T20I",
        "startDate": "1737831600000",
        "matchStatus": "completed",
        "winningTeamID": "4",
        "isLiveCriclyticsAvailable": true,
        "matchType": "T20",
        "venue": " Chennai",
        "matchResult": "IND Won By 2 wickets",
        "matchID": "247152",
        "matchScore": [
          {
            "teamShortName": "ENG",
            "teamID": "3",
            "teamFullName": "England",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "England",
                "runsScored": "165",
                "wickets": "9",
                "overs": "20.0",
                "runRate": "8.25",
                "battingSide": "away",
                "teamID": "3",
                "battingTeamShortName": "ENG",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "India",
                "runsScored": "166",
                "wickets": "8",
                "overs": "19.2",
                "runRate": "8.59",
                "battingSide": "home",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "W",
        "matchName": "IND VS ENG,1st T20I",
        "matchNumber": "1st T20I",
        "startDate": "1737572400000",
        "matchStatus": "completed",
        "winningTeamID": "4",
        "isLiveCriclyticsAvailable": true,
        "matchType": "T20",
        "venue": " Kolkata",
        "matchResult": "IND Won By 7 wickets",
        "matchID": "247151",
        "matchScore": [
          {
            "teamShortName": "ENG",
            "teamID": "3",
            "teamFullName": "England",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "England",
                "runsScored": "132",
                "wickets": "10",
                "overs": "20.0",
                "runRate": "6.60",
                "battingSide": "away",
                "teamID": "3",
                "battingTeamShortName": "ENG",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "India",
                "runsScored": "133",
                "wickets": "3",
                "overs": "12.5",
                "runRate": "10.36",
                "battingSide": "home",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      }
    ]
  },
  "test": {
    "winLost": [
      "L",
      "L",
      "D",
      "L",
      "W"
    ],
    "scoreCard": [
      {
        "win": "L",
        "matchName": "AUS VS IND,5th Test",
        "matchNumber": "5th Test",
        "startDate": "1735880400000",
        "matchStatus": "completed",
        "winningTeamID": "1",
        "isLiveCriclyticsAvailable": true,
        "matchType": "Test",
        "venue": " Sydney",
        "matchdate": null,
        "matchResult": "AUS Won By 6 wickets",
        "matchID": "243096",
        "matchScore": [
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "India",
                "runsScored": "185",
                "wickets": "10",
                "overs": "72.2",
                "runRate": "2.56",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              },
              {
                "inning": 3,
                "inningNumber": "Third",
                "battingTeam": "India",
                "runsScored": "157",
                "wickets": "10",
                "overs": "39.5",
                "runRate": "3.94",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "AUS",
            "teamID": "1",
            "teamFullName": "Australia",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "Australia",
                "runsScored": "181",
                "wickets": "10",
                "overs": "51.0",
                "runRate": "3.55",
                "battingSide": "home",
                "teamID": "1",
                "battingTeamShortName": "AUS",
                "declared": false,
                "folowOn": false
              },
              {
                "inning": 4,
                "inningNumber": "Fourth",
                "battingTeam": "Australia",
                "runsScored": "162",
                "wickets": "4",
                "overs": "27.0",
                "runRate": "6.00",
                "battingSide": "home",
                "teamID": "1",
                "battingTeamShortName": "AUS",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "L",
        "matchName": "AUS VS IND,4th Test",
        "matchNumber": "4th Test",
        "startDate": "1735189200000",
        "matchStatus": "completed",
        "winningTeamID": "1",
        "isLiveCriclyticsAvailable": true,
        "matchType": "Test",
        "venue": " Melbourne",
        "matchdate": null,
        "matchResult": "AUS Won By 184 runs",
        "matchID": "243095",
        "matchScore": [
          {
            "teamShortName": "AUS",
            "teamID": "1",
            "teamFullName": "Australia",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "Australia",
                "runsScored": "474",
                "wickets": "10",
                "overs": "122.4",
                "runRate": "3.86",
                "battingSide": "home",
                "teamID": "1",
                "battingTeamShortName": "AUS",
                "declared": false,
                "folowOn": false
              },
              {
                "inning": 3,
                "inningNumber": "Third",
                "battingTeam": "Australia",
                "runsScored": "234",
                "wickets": "10",
                "overs": "83.4",
                "runRate": "2.80",
                "battingSide": "home",
                "teamID": "1",
                "battingTeamShortName": "AUS",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "India",
                "runsScored": "369",
                "wickets": "10",
                "overs": "119.3",
                "runRate": "3.09",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              },
              {
                "inning": 4,
                "inningNumber": "Fourth",
                "battingTeam": "India",
                "runsScored": "155",
                "wickets": "10",
                "overs": "79.1",
                "runRate": "1.96",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "D",
        "matchName": "AUS VS IND,3rd Test",
        "matchNumber": "3rd Test",
        "startDate": "1734155400000",
        "matchStatus": "completed",
        "winningTeamID": "",
        "isLiveCriclyticsAvailable": true,
        "matchType": "Test",
        "venue": " Brisbane",
        "matchdate": null,
        "matchResult": "Australia drew with India",
        "matchID": "243093",
        "matchScore": [
          {
            "teamShortName": "AUS",
            "teamID": "1",
            "teamFullName": "Australia",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "Australia",
                "runsScored": "445",
                "wickets": "10",
                "overs": "117.1",
                "runRate": "3.80",
                "battingSide": "home",
                "teamID": "1",
                "battingTeamShortName": "AUS",
                "declared": false,
                "folowOn": false
              },
              {
                "inning": 3,
                "inningNumber": "Third",
                "battingTeam": "Australia",
                "runsScored": "89",
                "wickets": "7",
                "overs": "18.0",
                "runRate": "4.94",
                "battingSide": "home",
                "teamID": "1",
                "battingTeamShortName": "AUS",
                "declared": true,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "India",
                "runsScored": "260",
                "wickets": "10",
                "overs": "78.5",
                "runRate": "3.30",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              },
              {
                "inning": 4,
                "inningNumber": "Fourth",
                "battingTeam": "India",
                "runsScored": "8",
                "wickets": "0",
                "overs": "2.1",
                "runRate": "3.69",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "L",
        "matchName": "AUS VS IND,2nd Test",
        "matchNumber": "2nd Test",
        "startDate": "1733477400000",
        "matchStatus": "completed",
        "winningTeamID": "1",
        "isLiveCriclyticsAvailable": true,
        "matchType": "Test",
        "venue": " Adelaide",
        "matchdate": null,
        "matchResult": "AUS Won By 10 wickets",
        "matchID": "243092",
        "matchScore": [
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "India",
                "runsScored": "180",
                "wickets": "10",
                "overs": "44.1",
                "runRate": "4.08",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              },
              {
                "inning": 3,
                "inningNumber": "Third",
                "battingTeam": "India",
                "runsScored": "175",
                "wickets": "10",
                "overs": "36.5",
                "runRate": "4.75",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "AUS",
            "teamID": "1",
            "teamFullName": "Australia",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "Australia",
                "runsScored": "337",
                "wickets": "10",
                "overs": "87.3",
                "runRate": "3.85",
                "battingSide": "home",
                "teamID": "1",
                "battingTeamShortName": "AUS",
                "declared": false,
                "folowOn": false
              },
              {
                "inning": 4,
                "inningNumber": "Fourth",
                "battingTeam": "Australia",
                "runsScored": "19",
                "wickets": "0",
                "overs": "3.2",
                "runRate": "5.70",
                "battingSide": "home",
                "teamID": "1",
                "battingTeamShortName": "AUS",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      },
      {
        "win": "W",
        "matchName": "PM-XI VS IND,Tour Match",
        "matchNumber": "Tour Match",
        "startDate": "1732957800000",
        "matchStatus": "completed",
        "winningTeamID": "4",
        "isLiveCriclyticsAvailable": true,
        "matchType": "Test",
        "venue": " Canberra",
        "matchdate": null,
        "matchResult": "IND Won By 6 wickets",
        "matchID": "249973",
        "matchScore": [
          {
            "teamShortName": "PM-XI",
            "teamID": "1551",
            "teamFullName": "Prime Ministers XI",
            "teamScore": [
              {
                "inning": 1,
                "inningNumber": "First",
                "battingTeam": "Prime Ministers XI",
                "runsScored": "240",
                "wickets": "10",
                "overs": "43.2",
                "runRate": "5.54",
                "battingSide": "home",
                "teamID": "1551",
                "battingTeamShortName": "PM-XI",
                "declared": false,
                "folowOn": false
              }
            ]
          },
          {
            "teamShortName": "IND",
            "teamID": "4",
            "teamFullName": "India",
            "teamScore": [
              {
                "inning": 2,
                "inningNumber": "Second",
                "battingTeam": "India",
                "runsScored": "257",
                "wickets": "5",
                "overs": "46.0",
                "runRate": "5.59",
                "battingSide": "away",
                "teamID": "4",
                "battingTeamShortName": "IND",
                "declared": false,
                "folowOn": false
              }
            ]
          }
        ]
      }
    ]
  }
}

Team Schedule Matches

get

Get Recent Matches for a Cricket Team

This endpoint retrieves the recent match details for a specific cricket team identified by the teamId parameter.

Request

  • Method: GET

  • URL: https://apiv3.sportsapi360.com/cricket/api/v2/team/:teamId/schedule

Path Parameters

  • teamId (string): The unique identifier for the cricket team whose recent matches you want to fetch.

Response

The response will be a JSON array containing objects with the following fields:

  • matchID (string): The unique identifier for the match.

  • matchDateTimeIST (string): The date and time of the match in IST.

  • matchStatus (string): The current status of the match (e.g., scheduled, completed).

  • compType (string): The type of competition (e.g., league, tournament).

  • awayTeamID (string): The unique identifier for the away team.

  • homeTeamName (string): The name of the home team.

  • homeTeamID (string): The unique identifier for the home team.

  • awayTeamName (string): The name of the away team.

Notes

  • Ensure that the teamId provided is valid to receive accurate match details.

  • The response may contain multiple match objects, depending on the number of recent matches played by the team.

Authorizations
Path parameters
teamIdstringRequired
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
200
OK
application/json
Responseobject
get
GET /cricket/api/v2/team/{teamId}/schedule HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
200

OK

[
  {
    "matchID": "260413",
    "matchDateTimeIST": "1748809800000",
    "matchStatus": "completed",
    "compType": "T20",
    "awayTeamID": "2",
    "homeTeamName": "Pakistan",
    "homeTeamID": "6",
    "awayTeamName": "Bangladesh"
  },
  {
    "matchID": "260415",
    "matchDateTimeIST": "1748980800000",
    "matchStatus": "cancelled",
    "compType": "T20",
    "awayTeamID": "2",
    "homeTeamName": "Pakistan",
    "homeTeamID": "6",
    "awayTeamName": "Bangladesh"
  },
  {
    "matchID": "260414",
    "matchDateTimeIST": "1748808000000",
    "matchStatus": "cancelled",
    "compType": "T20",
    "awayTeamID": "2",
    "homeTeamName": "Pakistan",
    "homeTeamID": "6",
    "awayTeamName": "Bangladesh"
  },
  {
    "matchID": "260596",
    "matchDateTimeIST": "1750154400000",
    "matchStatus": "upcoming",
    "compType": "Test",
    "awayTeamID": "2",
    "homeTeamName": "Sri Lanka",
    "homeTeamID": "8",
    "awayTeamName": "Bangladesh"
  },
  {
    "matchID": "260597",
    "matchDateTimeIST": "1750845600000",
    "matchStatus": "upcoming",
    "compType": "Test",
    "awayTeamID": "2",
    "homeTeamName": "Sri Lanka",
    "homeTeamID": "8",
    "awayTeamName": "Bangladesh"
  },
  {
    "matchID": "260600",
    "matchDateTimeIST": "1751466600000",
    "matchStatus": "upcoming",
    "compType": "ODI",
    "awayTeamID": "2",
    "homeTeamName": "Sri Lanka",
    "homeTeamID": "8",
    "awayTeamName": "Bangladesh"
  },
  {
    "matchID": "260603",
    "matchDateTimeIST": "1751725800000",
    "matchStatus": "upcoming",
    "compType": "ODI",
    "awayTeamID": "2",
    "homeTeamName": "Sri Lanka",
    "homeTeamID": "8",
    "awayTeamName": "Bangladesh"
  },
  {
    "matchID": "260605",
    "matchDateTimeIST": "1751985000000",
    "matchStatus": "upcoming",
    "compType": "ODI",
    "awayTeamID": "2",
    "homeTeamName": "Sri Lanka",
    "homeTeamID": "8",
    "awayTeamName": "Bangladesh"
  },
  {
    "matchID": "260607",
    "matchDateTimeIST": "1752174000000",
    "matchStatus": "upcoming",
    "compType": "T20",
    "awayTeamID": "2",
    "homeTeamName": "Sri Lanka",
    "homeTeamID": "8",
    "awayTeamName": "Bangladesh"
  },
  {
    "matchID": "260609",
    "matchDateTimeIST": "1752692400000",
    "matchStatus": "upcoming",
    "compType": "T20",
    "awayTeamID": "2",
    "homeTeamName": "Sri Lanka",
    "homeTeamID": "8",
    "awayTeamName": "Bangladesh"
  },
  {
    "matchID": "260608",
    "matchDateTimeIST": "1752433200000",
    "matchStatus": "upcoming",
    "compType": "T20",
    "awayTeamID": "2",
    "homeTeamName": "Sri Lanka",
    "homeTeamID": "8",
    "awayTeamName": "Bangladesh"
  }
]

Team Stats

get

API Endpoint: Get Team Statistics

Request Method

GET

Endpoint

https://apiv3.sportsapi360.com/cricket/api/v2/team/:teamId/stats

Parameters

  • teamId (path parameter): The unique identifier for the cricket team whose statistics are being requested.

Expected Response Format

The response will return a JSON object containing various statistics for the specified cricket team, structured as follows:

  • image: A string representing the team's image URL (if available).

  • teamID: A string representing the unique identifier for the team.

  • teamName: A string representing the full name of the team.

  • teamShortName: A string representing the abbreviated name of the team.

  • odi: An object containing One Day International statistics:

    • matchesWon: Number of matches won.

    • matchesLost: Number of matches lost.

    • matchesPlayed: Total matches played.

    • matchesTied: Number of matches tied.

    • winPercentage: Win percentage.

    • mostRuns: An object detailing the player with the most runs, including:

      • playerName: Name of the player.

      • playerID: Unique identifier for the player.

      • matchesPlayed: Matches played by the player.

      • runs: Total runs scored by the player.

      • average: Batting average of the player.

    • mostWickets: An object detailing the player with the most wickets, including:

      • playerName: Name of the player.

      • playerID: Unique identifier for the player.

      • matchesPlayed: Matches played by the player.

      • wicket: Total wickets taken by the player.

      • economy: Economy rate of the player.

    • bestScore: An object detailing the player's best score, including:

      • playerName: Name of the player.

      • playerID: Unique identifier for the player.

      • matchesPlayed: Matches played by the player.

      • runs: Runs scored in the best innings.

      • average: Batting average of the player.

    • bestFigures: An object detailing the player's best bowling figures, including:

      • playerName: Name of the player.

      • playerID: Unique identifier for the player.

      • matchesPlayed: Matches played by the player.

      • runs: Runs conceded in the best bowling performance.

      • average: Bowling average of the player.

  • test: An object containing Test match statistics with the same structure as odi.

  • t20: An object containing T20 match statistics with the same structure as odi.

This endpoint provides a comprehensive overview of a cricket team's performance across different formats of the game.

Authorizations
Path parameters
teamIdstringRequired
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
200
OK
application/json
Responseobject
get
GET /cricket/api/v2/team/{teamId}/stats HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "image": "https://static-image.sportsapi360.com/cricket/logo/team/4",
  "teamID": "4",
  "teamName": "India",
  "teamShortName": "IND",
  "odi": {
    "matchesWon": "567",
    "matchesLost": "445",
    "matchesPlayed": "1066",
    "matchesTied": "10",
    "winPercentage": "53.19",
    "mostRuns": {
      "playerName": "Sachin Tendulkar",
      "playerID": "2962",
      "matchesPlayed": "463",
      "runs": "18426",
      "average": "44.83"
    },
    "mostWickets": {
      "playerName": "Anil Kumble",
      "playerID": "1767",
      "matchesPlayed": "269",
      "wicket": "334",
      "economy": "4.29"
    },
    "bestScore": {
      "playerName": "Rohit Sharma",
      "playerID": "3852",
      "matchesPlayed": "",
      "runs": "264",
      "average": ""
    },
    "bestFigures": {
      "playerName": "Mohammad Shami",
      "playerID": "28994",
      "matchesPlayed": "",
      "runs": "7/57",
      "average": ""
    }
  },
  "test": {
    "matchesWon": "181",
    "matchesLost": "184",
    "matchesTied": "1",
    "matchesPlayed": "589",
    "winPercentage": "30.73",
    "mostRuns": {
      "playerName": "Sachin Tendulkar",
      "playerID": "2962",
      "matchesPlayed": "200",
      "runs": "15921",
      "average": "53.78"
    },
    "mostWickets": {
      "playerName": "Anil Kumble",
      "playerID": "1767",
      "matchesPlayed": "132",
      "wicket": "619",
      "economy": "2.69"
    },
    "bestScore": {
      "playerName": "Virender Sehwag",
      "playerID": "270",
      "matchesPlayed": "",
      "runs": "319",
      "average": ""
    },
    "bestFigures": {
      "playerName": "Anil Kumble",
      "playerID": "1767",
      "matchesPlayed": "",
      "runs": "10/74",
      "average": ""
    }
  },
  "t20": {
    "matchesWon": "165",
    "matchesLost": "71",
    "matchesTied": "6",
    "matchesPlayed": "247",
    "winPercentage": "66.8",
    "mostRuns": {
      "playerName": "Rohit Sharma",
      "playerID": "3852",
      "matchesPlayed": "159",
      "runs": "4231",
      "average": "32.05"
    },
    "mostWickets": {
      "playerName": "Arshdeep Singh",
      "playerID": "67905",
      "matchesPlayed": "63",
      "wicket": "99",
      "economy": "8.29"
    },
    "bestScore": {
      "playerName": "Abhishek Sharma",
      "playerID": "66799",
      "matchesPlayed": "",
      "runs": "135",
      "average": ""
    },
    "bestFigures": {
      "playerName": "Deepak Chahar",
      "playerID": "59547",
      "matchesPlayed": "",
      "runs": "6/7",
      "average": ""
    }
  }
}

Team Squads

get

Get Team Squads

This endpoint retrieves the squad details for a specific cricket team identified by the teamId. It provides information on the players in three formats: One Day Internationals (ODI), Test matches, and Twenty20 (T20) formats.

Request

Method: GET Endpoint: https://apiv3.sportsapi360.com/cricket/api/v2/team/:teamId/squads

Path Parameters

  • teamId (string): The unique identifier for the cricket team whose squad details are being requested.

Response Fields

  • odiSquad: An array of players representing the ODI squad, where each player has:

    • playerID: Unique identifier for the player.

    • playerName: Name of the player.

    • playerImage: URL to the player's image.

  • testSquad: An array of players representing the Test squad, with the same structure as odiSquad.

  • t20Squad: An array of players representing the T20 squad, also with the same structure as odiSquad.

This endpoint is useful for obtaining the current squad composition for a team across different formats of the game.

Authorizations
Path parameters
teamIdstringRequired
Header parameters
x-api-keystringOptionalExample: {API_KEY}
Responses
200
OK
application/json
Responseobject
get
GET /cricket/api/v2/team/{teamId}/squads HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
200

OK

{
  "odiSquad": [
    {
      "playerName": "Rohit Sharma",
      "playerID": "3852",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/3852.png"
    },
    {
      "playerName": "Shreyas Iyer",
      "playerID": "63961",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/63961.png"
    },
    {
      "playerName": "Shubman Gill",
      "playerID": "66818",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/66818.png"
    },
    {
      "playerName": "Virat Kohli",
      "playerID": "3993",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/3993.png"
    },
    {
      "playerName": "Axar Patel",
      "playerID": "62576",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/62576.png"
    },
    {
      "playerName": "Hardik Pandya",
      "playerID": "63751",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/63751.png"
    },
    {
      "playerName": "Ravindra Jadeja",
      "playerID": "3850",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/3850.png"
    },
    {
      "playerName": "Washington Sundar",
      "playerID": "65859",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/65859.png"
    },
    {
      "playerName": "KL Rahul",
      "playerID": "60122",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/60122.png"
    },
    {
      "playerName": "Rishabh Pant",
      "playerID": "65756",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/65756.png"
    },
    {
      "playerName": "Arshdeep Singh",
      "playerID": "67905",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/67905.png"
    },
    {
      "playerName": "Harshit Rana",
      "playerID": "93526",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/93526.png"
    },
    {
      "playerName": "Kuldeep Yadav",
      "playerID": "63187",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/63187.png"
    },
    {
      "playerName": "Mohammad Shami",
      "playerID": "28994",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/28994.png"
    },
    {
      "playerName": "Varun Chakaravarthy",
      "playerID": "67469",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/67469.png"
    }
  ],
  "testSquad": [
    {
      "playerID": "64450",
      "playerName": "Abhimanyu Easwaran",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/64450.png"
    },
    {
      "playerID": "62297",
      "playerName": "Karun Nair",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/62297.png"
    },
    {
      "playerID": "60122",
      "playerName": "KL Rahul",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/60122.png"
    },
    {
      "playerID": "69500",
      "playerName": "Sai Sudharsan",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/69500.png"
    },
    {
      "playerID": "66818",
      "playerName": "Shubman Gill",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/66818.png"
    },
    {
      "playerID": "69238",
      "playerName": "Yashasvi Jaiswal",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/69238.png"
    },
    {
      "playerID": "74837",
      "playerName": "Nitish Kumar Reddy",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/74837.png"
    },
    {
      "playerID": "3850",
      "playerName": "Ravindra Jadeja",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/3850.png"
    },
    {
      "playerID": "63345",
      "playerName": "Shardul Thakur",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/63345.png"
    },
    {
      "playerID": "65859",
      "playerName": "Washington Sundar",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/65859.png"
    },
    {
      "playerID": "71370",
      "playerName": "Dhruv Jurel",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/71370.png"
    },
    {
      "playerID": "65756",
      "playerName": "Rishabh Pant",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/65756.png"
    },
    {
      "playerID": "71447",
      "playerName": "Akash Deep",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/71447.png"
    },
    {
      "playerID": "67905",
      "playerName": "Arshdeep Singh",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/67905.png"
    },
    {
      "playerID": "63755",
      "playerName": "Jasprit Bumrah",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/63755.png"
    },
    {
      "playerID": "63187",
      "playerName": "Kuldeep Yadav",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/63187.png"
    },
    {
      "playerID": "65799",
      "playerName": "Mohammed Siraj",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/65799.png"
    },
    {
      "playerID": "65702",
      "playerName": "Prasidh Krishna",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/65702.png"
    }
  ],
  "t20Squad": [
    {
      "playerID": "64727",
      "playerName": "Rinku Singh",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/64727.png"
    },
    {
      "playerID": "11803",
      "playerName": "Suryakumar Yadav",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/11803.png"
    },
    {
      "playerID": "70761",
      "playerName": "Tilak Varma",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/70761.png"
    },
    {
      "playerID": "66799",
      "playerName": "Abhishek Sharma",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/66799.png"
    },
    {
      "playerID": "62576",
      "playerName": "Axar Patel",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/62576.png"
    },
    {
      "playerID": "63751",
      "playerName": "Hardik Pandya",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/63751.png"
    },
    {
      "playerID": "66953",
      "playerName": "Ramandeep Singh",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/66953.png"
    },
    {
      "playerID": "66044",
      "playerName": "Shivam Dube",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/66044.png"
    },
    {
      "playerID": "65859",
      "playerName": "Washington Sundar",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/65859.png"
    },
    {
      "playerID": "71370",
      "playerName": "Dhruv Jurel",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/71370.png"
    },
    {
      "playerID": "61837",
      "playerName": "Sanju Samson",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/61837.png"
    },
    {
      "playerID": "67905",
      "playerName": "Arshdeep Singh",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/67905.png"
    },
    {
      "playerID": "93526",
      "playerName": "Harshit Rana",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/93526.png"
    },
    {
      "playerID": "28994",
      "playerName": "Mohammed Shami",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/28994.png"
    },
    {
      "playerID": "71288",
      "playerName": "Ravi Bishnoi",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/71288.png"
    },
    {
      "playerID": "67469",
      "playerName": "Varun Chakravarthy",
      "playerImage": "https://static-image.sportsapi360.com/cricket/logo/player/67469.png"
    }
  ]
}