Docs
Coverage MatrixDocumentationChange LogLog InContact Us
Docs

Change Log

Find all updates to the Cricket v2 API and its documentation

City IDs in Venue Objects

🗓️ Release Date 06/01/2026

We've added a city_id unique identifier to all venue objects across our General Sport Media APIs. The new field is included alongside the existing city_name field and is available in all feeds that contain venue information.

This is a non-breaking enhancement to existing responses.

"city_name": "Liverpool",
"city_id": "sr:city:31",

Benefit

Use a city's unique identifier for entity linking, data enrichment, and cross-feed correlation wherever venue information is available.

☑️ Sample Requests:

Soccer - Competitor Profile

curl --request GET \
     --url https://api.sportradar.com/soccer/trial/v4/en/competitors/sr:competitor:44/profile.json \
     --header 'accept: application/json' \
     --header 'x-api-key: YOUR_API_KEY'

⚙️ Return Samples

<venue id="sr:venue:8117" name="Dodger Stadium" capacity="56000" city_name="Los Angeles, CA" city_id="sr:city:963" country_name="USA" map_coordinates="34.0745409, -118.2408881" country_code="USA" timezone="America/Los_Angeles"/>
"venue": {
    "id": "sr:venue:8117",
    "name": "Dodger Stadium",
    "capacity": 56000,
    "city_name": "Los Angeles, CA",
    "city_id": "sr:city:963",
    "country_name": "USA",
    "map_coordinates": "34.0745409, -118.2408881",
    "country_code": "USA",
    "timezone": "America/Los_Angeles"
},


Tournament Type for the_hundred

Release DateFeeds AffectedBenefit
8/26/2025All Tournament, Match, and Schedule endpointsWe've added the_hundred as a valid enum value within tournament.type
<tournament id="sr:tournament:31277" name="The Hundred" type="the_hundred" gender="men">
      <sport id="sr:sport:21" name="Cricket"/>
      <category id="sr:category:89" name="England" country_code="ENG"/>
      <current_season id="sr:season:128427" name="The Hundred 2025" start_date="2025-08-05" end_date="2025-08-31" year="2025"/>
</tournament>
<tournament id="sr:tournament:34382" name="The Hundred, Women" type="the_hundred" gender="women">
      <sport id="sr:sport:21" name="Cricket"/>
      <category id="sr:category:89" name="England" country_code="ENG"/>
      <current_season id="sr:season:128425" name="The Hundred, Women 2025" start_date="2025-08-05" end_date="2025-08-31" year="2025"/>

Overs & Runs in Standings

Release DateFeeds AffectedBenefit
08/12/2025Tournament StandingsWe've added Overs For, Overs Against, Runs For, and Runs Against for teams in our Cricket Tournament Standings endpoint.
  • team_standing.overs_against - Number of overs against for a team in the season standing group
  • team_standing.overs_for - Number of overs for a team in the season standing group
  • team_standing.runs_against - Number of runs against for a team in the season standing group
  • team_standing.runs_for - Number of runs for a team in the season standing group
{
    "generated_at": "2025-08-12T15:59:42+00:00",
    "tournament": {
        "id": "sr:tournament:34382",
        "name": "The Hundred, Women",
        "gender": "women",
        "sport": {
            "id": "sr:sport:21",
            "name": "Cricket"
        },
        "category": {
            "id": "sr:category:89",
            "name": "England",
            "country_code": "ENG"
        },
        "current_season": {
            "id": "sr:season:128425",
            "name": "The Hundred, Women 2025",
            "start_date": "2025-08-05",
            "end_date": "2025-08-31",
            "year": "2025"
        }
    },
    "standings": [
        {
            "type": "total",
            "groups": [
                {
                    "id": "sr:league:91309",
                    "name": "The Hundred, Women 2025",
                    "live": false,
                    "team_standings": [
                        {
                            "rank": 1,
                            "played": 3,
                            "win": 3,
                            "loss": 0,
                            "draw": 0,
                            "net_run_rate": 0.397,
                            "no_result": 0,
                            "runs_for": 424,
                            "runs_against": 403,
                            "overs_for": 59,
                            "overs_against": 60,
                            "team": {
                                "id": "sr:competitor:795784",
                                "name": "London Spirit",
                                "country": "England",
                                "country_code": "ENG",
                                "abbreviation": "LON",
                                "gender": "female"
                            },
                            "points": 12,
                            "change": 0
                        },
                        {
                            "rank": 2,
                            "played": 2,
                            "win": 2,
                            "loss": 0,
                            "draw": 0,
                            "net_run_rate": 1.992,
                            "no_result": 0,
                            "runs_for": 270,
                            "runs_against": 222,
                            "overs_for": 35,
                            "overs_against": 40,
                            "team": {
                                "id": "sr:competitor:795790",
                                "name": "Northern Superchargers",
                                "country": "England",
                                "country_code": "ENG",
                                "abbreviation": "NOR",
                                "gender": "female"
                            },
                            "points": 8,
                            "change": 0
                        },
                        {
                            "rank": 3,
                            "played": 2,
                            "win": 2,
                            "loss": 0,
                            "draw": 0,
                            "net_run_rate": 0.742,
                            "no_result": 0,
                            "runs_for": 235,
                            "runs_against": 223,
                            "overs_for": 37,
                            "overs_against": 40,
                            "team": {
                                "id": "sr:competitor:795788",
                                "name": "Southern Brave",
                                "country": "England",
                                "country_code": "ENG",
                                "abbreviation": "SOU",
                                "gender": "female"
                            },
                            "points": 8,
                            "change": 0
                        },
                        {
                            "rank": 4,
                            "played": 2,
                            "win": 1,
                            "loss": 1,
                            "draw": 0,
                            "net_run_rate": -0.1,
                            "no_result": 0,
                            "runs_for": 276,
                            "runs_against": 276,
                            "overs_for": 40,
                            "overs_against": 40,
                            "team": {
                                "id": "sr:competitor:795782",
                                "name": "Birmingham Phoenix",
                                "country": "England",
                                "country_code": "ENG",
                                "abbreviation": "BIR",
                                "gender": "female"
                            },
                            "points": 4,
                            "change": 0
                        },
                        {
                            "rank": 5,
                            "played": 3,
                            "win": 1,
                            "loss": 2,
                            "draw": 0,
                            "net_run_rate": -0.286,
                            "no_result": 0,
                            "runs_for": 356,
                            "runs_against": 357,
                            "overs_for": 60,
                            "overs_against": 57,
                            "team": {
                                "id": "sr:competitor:795780",
                                "name": "Manchester Originals",
                                "country": "England",
                                "country_code": "ENG",
                                "abbreviation": "MAN",
                                "gender": "female"
                            },
                            "points": 4,
                            "change": 0
                        },
                        {
                            "rank": 6,
                            "played": 2,
                            "win": 0,
                            "loss": 2,
                            "draw": 0,
                            "net_run_rate": -0.475,
                            "no_result": 0,
                            "runs_for": 296,
                            "runs_against": 315,
                            "overs_for": 40,
                            "overs_against": 40,
                            "team": {
                                "id": "sr:competitor:795778",
                                "name": "Oval Invincibles",
                                "country": "England",
                                "country_code": "ENG",
                                "abbreviation": "OVA",
                                "gender": "female"
                            },
                            "points": 0,
                            "change": 0
                        },
                        {
                            "rank": 7,
                            "played": 2,
                            "win": 0,
                            "loss": 2,
                            "draw": 0,
                            "net_run_rate": -1.112,
                            "no_result": 0,
                            "runs_for": 265,
                            "runs_against": 277,
                            "overs_for": 40,
                            "overs_against": 35,
                            "team": {
                                "id": "sr:competitor:795786",
                                "name": "Trent Rockets",
                                "country": "England",
                                "country_code": "ENG",
                                "abbreviation": "TRE",
                                "gender": "female"
                            },
                            "points": 0,
                            "change": 0
                        },
                        {
                            "rank": 8,
                            "played": 2,
                            "win": 0,
                            "loss": 2,
                            "draw": 0,
                            "net_run_rate": -1.225,
                            "no_result": 0,
                            "runs_for": 216,
                            "runs_against": 265,
                            "overs_for": 40,
                            "overs_against": 40,
                            "team": {
                                "id": "sr:competitor:795794",
                                "name": "Welsh Fire",
                                "country": "England",
                                "country_code": "ENG",
                                "abbreviation": "WEL",
                                "gender": "female"
                            },
                            "points": 0,
                            "change": 0
                        }
                    ]
                }
            ],
            "round": 1
        }
    ]
}
<?xml version="1.0" encoding="UTF-8"?>
<tournament_standings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated_at="2025-08-12T14:28:10+00:00" xmlns="http://schemas.sportradar.com/sportsapi/cricket/v2" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/cricket/v2 https://schemas.sportradar.com/sportsapi/cricket/v2/schemas/tournament_standings.xsd">
    <tournament id="sr:tournament:34382" name="The Hundred, Women" gender="women">
        <sport id="sr:sport:21" name="Cricket"/>
        <category id="sr:category:89" name="England" country_code="ENG"/>
        <current_season id="sr:season:128425" name="The Hundred, Women 2025" start_date="2025-08-05" end_date="2025-08-31" year="2025"/>
    </tournament>
    <standings>
        <standing type="total" round="1">
            <groups>
                <group id="sr:league:91309" name="The Hundred, Women 2025" live="false">
                    <team_standings>
                        <team_standing rank="1" played="3" win="3" loss="0" draw="0" net_run_rate="0.397" no_result="0" runs_for="424" runs_against="403" overs_for="59" overs_against="60" points="12" change="0">
                            <team id="sr:competitor:795784" name="London Spirit" country="England" country_code="ENG" abbreviation="LON" gender="female"/>
                        </team_standing>
                        <team_standing rank="2" played="2" win="2" loss="0" draw="0" net_run_rate="1.992" no_result="0" runs_for="270" runs_against="222" overs_for="35" overs_against="40" points="8" change="0">
                            <team id="sr:competitor:795790" name="Northern Superchargers" country="England" country_code="ENG" abbreviation="NOR" gender="female"/>
                        </team_standing>
                        <team_standing rank="3" played="2" win="2" loss="0" draw="0" net_run_rate="0.742" no_result="0" runs_for="235" runs_against="223" overs_for="37" overs_against="40" points="8" change="0">
                            <team id="sr:competitor:795788" name="Southern Brave" country="England" country_code="ENG" abbreviation="SOU" gender="female"/>
                        </team_standing>
                        <team_standing rank="4" played="2" win="1" loss="1" draw="0" net_run_rate="-0.1" no_result="0" runs_for="276" runs_against="276" overs_for="40" overs_against="40" points="4" change="0">
                            <team id="sr:competitor:795782" name="Birmingham Phoenix" country="England" country_code="ENG" abbreviation="BIR" gender="female"/>
                        </team_standing>
                        <team_standing rank="5" played="3" win="1" loss="2" draw="0" net_run_rate="-0.286" no_result="0" runs_for="356" runs_against="357" overs_for="60" overs_against="57" points="4" change="0">
                            <team id="sr:competitor:795780" name="Manchester Originals" country="England" country_code="ENG" abbreviation="MAN" gender="female"/>
                        </team_standing>
                        <team_standing rank="6" played="2" win="0" loss="2" draw="0" net_run_rate="-0.475" no_result="0" runs_for="296" runs_against="315" overs_for="40" overs_against="40" points="0" change="0">
                            <team id="sr:competitor:795778" name="Oval Invincibles" country="England" country_code="ENG" abbreviation="OVA" gender="female"/>
                        </team_standing>
                        <team_standing rank="7" played="2" win="0" loss="2" draw="0" net_run_rate="-1.112" no_result="0" runs_for="265" runs_against="277" overs_for="40" overs_against="35" points="0" change="0">
                            <team id="sr:competitor:795786" name="Trent Rockets" country="England" country_code="ENG" abbreviation="TRE" gender="female"/>
                        </team_standing>
                        <team_standing rank="8" played="2" win="0" loss="2" draw="0" net_run_rate="-1.225" no_result="0" runs_for="216" runs_against="265" overs_for="40" overs_against="40" points="0" change="0">
                            <team id="sr:competitor:795794" name="Welsh Fire" country="England" country_code="ENG" abbreviation="WEL" gender="female"/>
                        </team_standing>
                    </team_standings>
                </group>
            </groups>
        </standing>
    </standings>
</tournament_standings>


Match Results Descriptions

Release DateFeeds AffectedBenefit
08/06/2025

Daily Results

Match Summary

Match Timeline

Match Timeline Delta

Team Results

Team vs Team

Tournament Results

We added a result description for each cricket match in our Cricket API . This text description succinctly summarizes each result, without the need to parse any other values on your end.

Use the new match_result_text attribute (within sport_event_status) to access the result description.
  • Ex. Oval Invincibles won by 6 wickets or London Spirit won by 17 runs
"sport_event_status": {
              "match_status": "ended",
              "status": "closed",
              "display_score": "373/5",
              "winner_id": "sr:competitor:107205",
              "toss_won_by": "sr:competitor:107205",
              "toss_decision": "bowl",
              "current_inning": 4,
              "display_overs": 81.6,
              "match_result_text": "England won by 5 wickets",
              "period_scores": [
                  {
                      "home_score": 0,
                      "away_score": 471,
                      "type": "inning",
                      "number": 1,
                      "display_overs": 113,
                      "away_wickets": 10,
                      "display_score": "471/10"
                    },
                  {
                      "home_score": 465,
                      "away_score": 0,
                      "type": "inning",
                      "number": 2,
                      "display_overs": 100.4,
                      "home_wickets": 10,
                      "display_score": "465/10"
                    },
                  {
                      "home_score": 0,
                      "away_score": 364,
                      "type": "inning",
                      "number": 3,
                      "display_overs": 96,
                      "away_wickets": 10,
                      "display_score": "364/10"
                    },
                  {
                      "home_score": 373,
                      "away_score": 0,
                      "type": "inning",
                      "number": 4,
                      "display_overs": 82,
                      "home_wickets": 5,
                      "display_score": "373/5"
                    }
                ]
            }
},
<result>
	<sport_event id="sr:match:57874301" scheduled="2025-08-05T13:45:00+00:00" start_time_tbd="false" status="closed">
		<tournament_round type="group" number="1"/>
		<season id="sr:season:128425" name="The Hundred, Women 2025" start_date="2025-08-05" end_date="2025-08-31" year="2025"/>
	</sport_event>
	<sport_event_status match_status="ended" status="closed" display_score="159/4" winner_id="sr:competitor:795784" toss_won_by="sr:competitor:795778" toss_decision="bowl" current_inning="2" display_overs="19.5" match_result_text="London Spirit won by 17 runs">
		<period_scores>
			<period_score home_score="176" away_score="0" type="inning" number="1" home_wickets="5" display_score="176/5"/>
			<period_score home_score="0" away_score="159" type="inning" number="2" away_wickets="4" display_score="159/4"/>
		</period_scores>
	</sport_event_status>
</result>
<result>
	<sport_event id="sr:match:62188230" scheduled="2025-08-05T15:15:00+00:00" start_time_tbd="false" status="closed">
		<tournament_round type="group" number="1"/>
		<season id="sr:season:132884" name="T10 ECS England 2025, Tournament 2" start_date="2025-07-28" end_date="2025-08-08" year="2025"/>
	</sport_event>
	<sport_event_status match_status="not_started" status="closed"/>
</result>
<result>
	<sport_event id="sr:match:62188232" scheduled="2025-08-05T17:15:00+00:00" start_time_tbd="false" status="closed">
		<tournament_round type="group" number="1"/>
		<season id="sr:season:132884" name="T10 ECS England 2025, Tournament 2" start_date="2025-07-28" end_date="2025-08-08" year="2025"/>
	</sport_event>
	<sport_event_status match_status="not_started" status="closed"/>
</result>
<result>
	<sport_event id="sr:match:57874217" scheduled="2025-08-05T17:30:00+00:00" start_time_tbd="false" status="closed">
		<tournament_round type="group" number="1"/>
		<season id="sr:season:128427" name="The Hundred 2025" start_date="2025-08-05" end_date="2025-08-31" year="2025"/>
	</sport_event>
	<sport_event_status match_status="ended" status="closed" display_score="81/4" winner_id="sr:competitor:653901" toss_won_by="sr:competitor:653895" toss_decision="bat" current_inning="2" display_overs="13.4" required_run_rate="0" match_result_text="Oval Invincibles won by 6 wickets">
		<period_scores>
			<period_score home_score="80" away_score="0" type="inning" number="1" home_wickets="10" display_score="80/10"/>
			<period_score home_score="0" away_score="81" type="inning" number="2" away_wickets="4" display_score="81/4"/>
		</period_scores>
	</sport_event_status>
</result>


Venue State

Release DateFeeds AffectedBenefit
09/06/2024

Daily Live Schedule

Daily Results

Daily Schedule

Match Lineups

Match Summary

Match Timeline

Match Timeline Delta

Team Results

Team Schedule

Team vs Team

Tournament Results

Tournament Schedule

Added states to venues where applicable.

ex. state="TX" (Texas)

<sport_event id="sr:match:48876457" scheduled="2024-04-13T15:00:00+00:00" start_time_tbd="false" status="closed">
	<tournament_round type="group" number="1"/>
	<season id="sr:season:116943" name="T20 Series USA vs Canada 2024" start_date="2024-04-07" end_date="2024-04-14" year="2024"/>
	<tournament id="sr:tournament:42487" name="T20 Series USA vs Canada" type="t20i" gender="men">
		<sport id="sr:sport:21" name="Cricket"/>
		<category id="sr:category:105" name="International"/>
	</tournament>
	<competitors>
		<team id="sr:competitor:215842" name="USA" country="USA" country_code="USA" abbreviation="USA" qualifier="home" gender="male"/>
		<team id="sr:competitor:142694" name="Canada" country="Canada" country_code="CAN" abbreviation="CAN" qualifier="away" gender="male"/>
	</competitors>
	<venue id="sr:venue:63681" name="Prairie View Cricket Complex" city_name="Prairie View" country_name="USA" map_coordinates="30.086723, -96.004477" country_code="USA" timezone="America/Chicago" state="TX"/>
</sport_event>
{
  "id": "sr:match:48876457",
  "tournament_round": {
    "type": "group",
    "number": 1
  },
  "season": {
    "id": "sr:season:116943",
    "name": "T20 Series USA vs Canada 2024",
    "start_date": "2024-04-07",
    "end_date": "2024-04-14",
    "year": "2024"
  },
  "scheduled": "2024-04-13T15:00:00+00:00",
  "start_time_tbd": false,
  "tournament": {
    "id": "sr:tournament:42487",
    "name": "T20 Series USA vs Canada",
    "type": "t20i",
    "gender": "men",
    "sport": {
      "id": "sr:sport:21",
      "name": "Cricket"
    },
    "category": {
      "id": "sr:category:105",
      "name": "International"
    }
  },
  "status": "closed",
  "competitors": [
    {
      "id": "sr:competitor:215842",
      "name": "USA",
      "country": "USA",
      "country_code": "USA",
      "abbreviation": "USA",
      "qualifier": "home",
      "gender": "male"
    },
    {
      "id": "sr:competitor:142694",
      "name": "Canada",
      "country": "Canada",
      "country_code": "CAN",
      "abbreviation": "CAN",
      "qualifier": "away",
      "gender": "male"
    }
  ],
  "venue": {
    "id": "sr:venue:63681",
    "name": "Prairie View Cricket Complex",
    "city_name": "Prairie View",
    "country_name": "USA",
    "map_coordinates": "30.086723, -96.004477",
    "country_code": "USA",
    "timezone": "America/Chicago",
    "state": "TX"
  }
}


Display Overs per Period

Release DateFeeds AffectedBenefit
07/02/2024

Daily Results

Match Summary

Match Timeline

Team Results

Team vs Team

Tournament Results

We have added display_overs into period_scores for matches.

This will ensure you can retrieve the amount of overs a team batted for within all periods.

<sport_event_status match_status="ended" status="closed" display_score="137/2" winner_id="sr:competitor:242120" toss_won_by="sr:competitor:242120" toss_decision="bowl" current_inning="2" display_overs="28.3" target="102" remaining_overs="-0.3" run_rate="4.81" allotted_overs="50">
  <period_scores>
    <period_score home_score="230" away_score="0" type="inning" number="1" allotted_overs="50" 
                  display_overs="49.2" home_wickets="10" display_score="230/10"/>
    <period_score home_score="0" away_score="137" type="inning" number="2" allotted_overs="50" 
                  display_overs="28.3" away_wickets="2" display_score="137/2"/>
  </period_scores>
</sport_event_status>


Player Info

Release DateFeeds AffectedBenefit
04/10/2024Tournament SquadsAdded the following player data points to the Tournament Squads endpoint:
  • Date of Birth
  • Nationality
  • Role/Position
<tournament_team_squads xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated_at="2024-04-10T10:17:14+00:00" xmlns="http://schemas.sportradar.com/sportsapi/cricket/v2" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/cricket/v2 https://schemas.sportradar.com/sportsapi/cricket/v2/schemas/tournament_team_squads.xsd">
    <team id="sr:competitor:152318" name="Royal Challengers Bengaluru" country="India" country_code="IND" abbreviation="RCB" gender="male"/>
    <manager id="sr:player:647880" name="Bangar, Sanjay" date_of_birth="1972-10-11" nationality="India" country_code="IND"/>
    <players>
        <player id="sr:player:638248" name="Singh, Swapnil" date_of_birth="1991-01-22" country_code="IND" nationality="India" type="all_rounder"/>
        <player id="sr:player:643154" name="Kohli, Virat" date_of_birth="1988-11-05" country_code="IND" nationality="India" type="batsman"/>
        <player id="sr:player:655834" name="Karthik, Dinesh" date_of_birth="1985-06-01" country_code="IND" nationality="India" type="wicket_keeper"/>
        <player id="sr:player:656636" name="Sharma, Karn" date_of_birth="1987-10-23" country_code="IND" nationality="India" type="bowler"/>
        <player id="sr:player:663378" name="Maxwell, Glenn" date_of_birth="1988-10-14" country_code="AUS" nationality="Australia" type="all_rounder"/>
        <player id="sr:player:699754" name="du Plessis, Faf" date_of_birth="1984-07-13" country_code="ZAF" nationality="South africa" type="batsman"/>
        <player id="sr:player:703432" name="Topley, Reece" date_of_birth="1994-02-21" country_code="ENG" nationality="England" type="bowler"/>
        <player id="sr:player:713202" name="Ferguson, Lockie" date_of_birth="1991-06-13" country_code="NZL" nationality="New zealand" type="bowler"/>
        <player id="sr:player:728962" name="Curran, Tom" date_of_birth="1995-03-12" country_code="ENG" nationality="England" type="all_rounder"/>
        <player id="sr:player:741580" name="Joseph, Alzarri" date_of_birth="1996-11-20" country_code="ATG" nationality="Antigua and barbuda" type="bowler"/>
        <player id="sr:player:748522" name="Kumar, Vyshak" date_of_birth="1997-01-31" country_code="IND" nationality="India" type="bowler"/>
        <player id="sr:player:980915" name="Lomror, Mahipal" date_of_birth="1999-11-16" country_code="IND" nationality="India" type="all_rounder"/>
        <player id="sr:player:1097578" name="Jacks, Will" date_of_birth="1998-11-21" country_code="ENG" nationality="England" type="batsman"/>
        <player id="sr:player:1104247" name="Siraj, Mohammed" date_of_birth="1994-03-13" country_code="IND" nationality="India" type="bowler"/>
        <player id="sr:player:1279018" name="Bhandage, Manoj" date_of_birth="1998-10-05" country_code="IND" nationality="India" type="all_rounder"/>
        <player id="sr:player:1283622" name="Dagar, Mayank" date_of_birth="1996-11-11" country_code="IND" nationality="India" type="all_rounder"/>
        <player id="sr:player:1322738" name="Patidar, Rajat" date_of_birth="1993-06-01" country_code="IND" nationality="India" type="batsman"/>
        <player id="sr:player:1325934" name="Rawat, Anuj" date_of_birth="1999-10-17" country_code="IND" nationality="India" type="wicket_keeper"/>
        <player id="sr:player:1374295" name="Green, Cameron" date_of_birth="1999-06-03" country_code="AUS" nationality="Australia" type="all_rounder"/>
        <player id="sr:player:1602994" name="Prabhudessai, Suyash" date_of_birth="1997-12-06" country_code="IND" nationality="India" type="batsman"/>
        <player id="sr:player:1603338" name="Dayal, Yash" date_of_birth="1997-12-13" country_code="IND" nationality="India" type="bowler"/>
        <player id="sr:player:1717659" name="Deep, Akash" date_of_birth="1996-12-15" country_code="IND" nationality="India" type="bowler"/>
        <player id="sr:player:2250811" name="Chauhan, Saurav Dilipsingh" date_of_birth="2000-05-27" country_code="IND" nationality="India" type="batsman"/>
        <player id="sr:player:2467757" name="Kumar, Rajan" date_of_birth="1996-07-08" country_code="IND" nationality="India" type="bowler"/>
        <player id="sr:player:2530447" name="Sharma, Himanshu" date_of_birth="1998-06-06" country_code="IND" nationality="India" type="bowler"/>
    </players>
</tournament_team_squads>
{
    "generated_at": "2024-04-10T14:28:46+00:00",
    "team": {
        "id": "sr:competitor:152318",
        "name": "Royal Challengers Bengaluru",
        "country": "India",
        "country_code": "IND",
        "abbreviation": "RCB",
        "gender": "male"
    },
    "manager": {
        "id": "sr:player:647880",
        "name": "Bangar, Sanjay",
        "date_of_birth": "1972-10-11",
        "nationality": "India",
        "country_code": "IND"
    },
    "players": [
        {
            "id": "sr:player:638248",
            "name": "Singh, Swapnil",
            "date_of_birth": "1991-01-22",
            "country_code": "IND",
            "nationality": "India",
            "type": "all_rounder"
        },
        {
            "id": "sr:player:643154",
            "name": "Kohli, Virat",
            "date_of_birth": "1988-11-05",
            "country_code": "IND",
            "nationality": "India",
            "type": "batsman"
        },
        {
            "id": "sr:player:655834",
            "name": "Karthik, Dinesh",
            "date_of_birth": "1985-06-01",
            "country_code": "IND",
            "nationality": "India",
            "type": "wicket_keeper"
        },
        {
            "id": "sr:player:656636",
            "name": "Sharma, Karn",
            "date_of_birth": "1987-10-23",
            "country_code": "IND",
            "nationality": "India",
            "type": "bowler"
        },
        {
            "id": "sr:player:663378",
            "name": "Maxwell, Glenn",
            "date_of_birth": "1988-10-14",
            "country_code": "AUS",
            "nationality": "Australia",
            "type": "all_rounder"
        },
        {
            "id": "sr:player:699754",
            "name": "du Plessis, Faf",
            "date_of_birth": "1984-07-13",
            "country_code": "ZAF",
            "nationality": "South africa",
            "type": "batsman"
        },
        {
            "id": "sr:player:703432",
            "name": "Topley, Reece",
            "date_of_birth": "1994-02-21",
            "country_code": "ENG",
            "nationality": "England",
            "type": "bowler"
        },
        {
            "id": "sr:player:713202",
            "name": "Ferguson, Lockie",
            "date_of_birth": "1991-06-13",
            "country_code": "NZL",
            "nationality": "New zealand",
            "type": "bowler"
        },
        {
            "id": "sr:player:728962",
            "name": "Curran, Tom",
            "date_of_birth": "1995-03-12",
            "country_code": "ENG",
            "nationality": "England",
            "type": "all_rounder"
        },
        {
            "id": "sr:player:741580",
            "name": "Joseph, Alzarri",
            "date_of_birth": "1996-11-20",
            "country_code": "ATG",
            "nationality": "Antigua and barbuda",
            "type": "bowler"
        },
        {
            "id": "sr:player:748522",
            "name": "Kumar, Vyshak",
            "date_of_birth": "1997-01-31",
            "country_code": "IND",
            "nationality": "India",
            "type": "bowler"
        },
        {
            "id": "sr:player:980915",
            "name": "Lomror, Mahipal",
            "date_of_birth": "1999-11-16",
            "country_code": "IND",
            "nationality": "India",
            "type": "all_rounder"
        },
        {
            "id": "sr:player:1097578",
            "name": "Jacks, Will",
            "date_of_birth": "1998-11-21",
            "country_code": "ENG",
            "nationality": "England",
            "type": "batsman"
        },
        {
            "id": "sr:player:1104247",
            "name": "Siraj, Mohammed",
            "date_of_birth": "1994-03-13",
            "country_code": "IND",
            "nationality": "India",
            "type": "bowler"
        },
        {
            "id": "sr:player:1279018",
            "name": "Bhandage, Manoj",
            "date_of_birth": "1998-10-05",
            "country_code": "IND",
            "nationality": "India",
            "type": "all_rounder"
        },
        {
            "id": "sr:player:1283622",
            "name": "Dagar, Mayank",
            "date_of_birth": "1996-11-11",
            "country_code": "IND",
            "nationality": "India",
            "type": "all_rounder"
        },
        {
            "id": "sr:player:1322738",
            "name": "Patidar, Rajat",
            "date_of_birth": "1993-06-01",
            "country_code": "IND",
            "nationality": "India",
            "type": "batsman"
        },
        {
            "id": "sr:player:1325934",
            "name": "Rawat, Anuj",
            "date_of_birth": "1999-10-17",
            "country_code": "IND",
            "nationality": "India",
            "type": "wicket_keeper"
        },
        {
            "id": "sr:player:1374295",
            "name": "Green, Cameron",
            "date_of_birth": "1999-06-03",
            "country_code": "AUS",
            "nationality": "Australia",
            "type": "all_rounder"
        },
        {
            "id": "sr:player:1602994",
            "name": "Prabhudessai, Suyash",
            "date_of_birth": "1997-12-06",
            "country_code": "IND",
            "nationality": "India",
            "type": "batsman"
        },
        {
            "id": "sr:player:1603338",
            "name": "Dayal, Yash",
            "date_of_birth": "1997-12-13",
            "country_code": "IND",
            "nationality": "India",
            "type": "bowler"
        },
        {
            "id": "sr:player:1717659",
            "name": "Deep, Akash",
            "date_of_birth": "1996-12-15",
            "country_code": "IND",
            "nationality": "India",
            "type": "bowler"
        },
        {
            "id": "sr:player:2250811",
            "name": "Chauhan, Saurav Dilipsingh",
            "date_of_birth": "2000-05-27",
            "country_code": "IND",
            "nationality": "India",
            "type": "batsman"
        },
        {
            "id": "sr:player:2467757",
            "name": "Kumar, Rajan",
            "date_of_birth": "1996-07-08",
            "country_code": "IND",
            "nationality": "India",
            "type": "bowler"
        },
        {
            "id": "sr:player:2530447",
            "name": "Sharma, Himanshu",
            "date_of_birth": "1998-06-06",
            "country_code": "IND",
            "nationality": "India",
            "type": "bowler"
        }
    ]
}


Tournament Squads Endpoint

Release DateFeeds AffectedBenefit
11/13/2023Tournament Squads

Added a Tournament Squads endpoint.

This endpoint provides squad lineups for a given tournament or season.



Allotted Overs

Release DateFeeds AffectedBenefit
10/30/2023Match Summary Match Timeline Match Timeline DeltaAdded the number of allotted overs for a match at the period (period_score.allotted_overs) and match (sport_event_status.allotted_overs) level.
<sport_event_status match_status="ended" status="closed" display_score="286/10" winner_id="sr:competitor:142690" toss_won_by="sr:competitor:142690" toss_decision="bat" current_inning="2" display_overs="49.4" required_run_rate="201" run_rate="5.76" allotted_overs="50">
    <period_scores>
        <period_score home_score="0" away_score="352" type="inning" number="1" allotted_overs="50" away_wickets="7" display_score="352/7"/>
        <period_score home_score="286" away_score="0" type="inning" number="2" allotted_overs="50" home_wickets="10" display_score="286/10"/>
    </period_scores>
</sport_event_status>
"sport_event_status": {
    "match_status": "ended",
    "status": "closed",
    "display_score": "286/10",
    "winner_id": "sr:competitor:142690",
    "toss_won_by": "sr:competitor:142690",
    "toss_decision": "bat",
    "current_inning": 2,
    "display_overs": 49.4,
    "required_run_rate": 201,
    "run_rate": 5.76,
    "allotted_overs": 50,
    "period_scores": [
        {
            "home_score": 0,
            "away_score": 352,
            "type": "inning",
            "number": 1,
            "allotted_overs": 50,
            "away_wickets": 7,
            "display_score": "352/7"
        },
        {
            "home_score": 286,
            "away_score": 0,
            "type": "inning",
            "number": 2,
            "allotted_overs": 50,
            "home_wickets": 10,
            "display_score": "286/10"
        }
    ]
},


Tournament Leaders Endpoint

Release DateFeeds AffectedBenefit
10/30/2023Tournament Leaders

Added a Tournament Leaders endpoint.

This endpoint provides leaders in a given tournament or season for a variety of stats including top runs, top average, top wickets, top bowling average, top economy, and top catches.


Required Run Rate

Release DateFeeds AffectedBenefit
10/18/2023Daily Results Match Summary Match Timeline Match Timeline Delta Team Results Team vs Team Tournament ResultsAdded required run rate (sport_event_status.required_run_rate) to match statistics.
<result>
    <sport_event id="sr:match:44023764" scheduled="2023-10-17T03:30:00+00:00" start_time_tbd="false">
        <tournament_round type="group" number="1"/>
        <season id="sr:season:111084" name="Syed Mushtaq Ali Trophy 2023" start_date="2023-10-16" end_date="2023-11-06" year="2023"/>
    </sport_event>
    <sport_event_status match_status="ended" status="closed" display_score="160/2" winner_id="sr:competitor:393218" toss_won_by="sr:competitor:393230" toss_decision="bat" current_inning="2" display_overs="18.3" required_run_rate="0">
        <period_scores>
            <period_score home_score="0" away_score="159" type="inning" number="1" away_wickets="8" display_score="159/8"/>
            <period_score home_score="160" away_score="0" type="inning" number="2" home_wickets="2" display_score="160/2"/>
        </period_scores>
    </sport_event_status>
</result>
    "results": [
        {
            "sport_event": {
                "id": "sr:match:44023764",
                "tournament_round": {
                    "type": "group",
                    "number": 1
                },
                "season": {
                    "id": "sr:season:111084",
                    "name": "Syed Mushtaq Ali Trophy 2023",
                    "start_date": "2023-10-16",
                    "end_date": "2023-11-06",
                    "year": "2023"
                },
                "scheduled": "2023-10-17T03:30:00+00:00",
                "start_time_tbd": false
            },
            "sport_event_status": {
                "match_status": "ended",
                "status": "closed",
                "display_score": "160/2",
                "toss_won_by": "sr:competitor:393230",
                "toss_decision": "bat",
                "current_inning": 2,
                "winner_id": "sr:competitor:393218",
                "display_overs": 18.3,
                "required_run_rate": 0,
                "period_scores": [
                    {
                        "home_score": 0,
                        "away_score": 159,
                        "type": "inning",
                        "number": 1,
                        "away_wickets": 8,
                        "display_score": "159/8"
                    },
                    {
                        "home_score": 160,
                        "away_score": 0,
                        "type": "inning",
                        "number": 2,
                        "home_wickets": 2,
                        "display_score": "160/2"
                    }
                ]
            }
        },

Match Timeline Delta Endpoint

Release DateFeeds AffectedBenefit
10/06/2023Match Timeline Delta

Added the Match Timeline Delta endpoint for parity with the Cricket Legacy v2 API.

During a live match, the timeline delta provides all the same data as the match timeline feed, but in 5-minute increments.


UPGRADE - New Data Source

Release DateBenefit
09/28/2023

We have upgraded our data source that powers the Cricket v2 API. Following this upgrade, the data within our Cricket v2 API is official for ICC, ECB and Caribbean Premier League.

Our Cricket Content Strategy document details which competitions will be covered by our official data.

The new dataset will also include each of the below features:
  • Custom-designed for cricket with multi-mode capability to ensure the lowest latency in the market.

  • Unique fielding data points exclusive to Sportradar

  • Ball tracking for shot and delivery, type coding and AI-powered automated text commentary.

  • Automated system monitoring platform redundancy to ensure reliable, uninterrupted service.While we mapped out our new data to our existing attributes, there are some attributes that we will not be replacing. Details of this can be found in the Cricket Data Points Mapping document.Additionally, commentary will now be computer generated. Please see some examples below from a single over:

  • Back of a length from Boult, pitching outside off stump. Gaikwad moves onto the back foot and punches a drive on the off side for a single run. Quality work in the field by Neesham prevents a certain boundary.

  • FOUR! Full, on a good line. Du Plessis gets on the front foot and drives straight down the ground for four runs.

  • OUT! Caught. Boult drops one in short, pitching outside off. Du Plessis moves onto the back foot and edges and is caught by Pandya.

  • On a good length, outside off stump once again. Ali gets forward and plays a defensive stroke through the off side. The throw by de Kock is terrific. Mumbai Indians appeal for a run-out, and it’s referred to the third umpire for review. The replay shows the batter made it in safely.

  • SIX! Dropped in short by Boult, pitching outside leg and angling across. Ali rocks back, and hooks for a half dozen runs behind square.

  • Pitching on a good line and length. Ali moves onto the back foot and is hit on the pads while attempting to play a defensive stroke. Mumbai Indians appeal for LBW, however, umpire Ananthapadmanabhan gives Ali not out. Mumbai Indians call for a review. DRS comes back as an umpire’s call, and Ali is not out.


Neutral Site Support

Release DateFeeds Affected Benefit
06/30/2022 Match Summary
Match Timeline
New attribute displays whether a match is played at a neutral venue or not.

Zero-Based Period Scores

Release DateFeeds Affected Benefit
05/23/2022 Match Summary
Match Timeline
Updated the match endpoints to display zero-based period scores as soon as a match begins, and prior to the first run.

Live Coverage Indicator

Release DateFeeds Affected Benefit
06/04/2019 Match Timeline Added live coverage data point and coverage level. Updated the Coverage Information to better describe match coverage.

Tournament Squads Endpoint

Release DateFeeds Affected Benefit
10/04/2018 Tournament Squads Added Tournament Squads feed.

Substitutes and Dismissals

Release DateFeeds Affected Benefit
09/18/2018 Match Timeline Added is\_substitute\_fielder to the dismissal\_details element in the Match Timeline feed.

Standings Update

Release DateFeeds Affected Benefit
08/16/2018 Tournament Standings Added team\_standing – change and team\_standing – current\_outcome to the standings feeds.

Retired (Hurt) to Player Batting

Release DateFeeds Affected Benefit
11/13/2017 Match Summary
Match Timeline
Added data point for retired\_hurt under player batting statistics.

Captain and Wicket-Keeper Designation

Release DateFeeds Affected Benefit
04/21/2017 Match Lineups Added is\_captain and is\_wicketkeeper data points for players.

API Release

Release DateFeeds Affected Benefit
04/10/2017 All Initial release of Cricket v2.