Release Log
Coverage MatrixDocumentationChange LogLog InContact Us
Release Log

Cricket API - Match Result Descriptions

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

☑️ Sample Requests:

  • Daily Results - https://api.sportradar.com/cricket-t2/en/schedules/{date}/results.json
  • Tournament Results - https://api.sportradar.com/cricket-t2/en/tournaments/sr:tournament:23847/results.json

🔢 Versions


🔁 Endpoints Affected

  • Daily Results, Match Summary, Match Timeline, Team Results, Team vs Team, Tournament Results

⚙️ Return Sample

"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>