Find all updates to the Soccer Extended v4 API and its documentation
Overtime Score Behavior Update
🗓️ Release Date 06/09/2026
We've updated the behavior of overtime scoring in our Soccer APIs.
Going forward, the home_overtime_score and away_overtime_score attributes under sport_event_status will represent the goals scored by each team during overtime (extra time) only.
Previously, these attributes reflected the final match score after overtime had concluded, rather than the goals scored during the overtime period(s).
This change is particularly relevant for competitions that can be decided after extra time, including upcoming FIFA World Cup matches.
⭐ Benefit
Use the overtime score attributes to determine how many goals each team scored during extra time without needing to calculate the values from period scores.
⚠️ Action Recommended
Review any integrations, reports, or UI displays that consume home_overtime_score and away_overtime_score.
If your implementation currently uses these fields as the final match score, update your logic to use home_score and away_score instead. Going forward, the overtime score fields will only contain goals scored during overtime periods.
☑️ Sample Request:
Sport Event Timeline
curl --request GET \
--url https://api.sportradar.com/soccer-extended/trial/v4/en/sport_events/{sport_event_id}/timeline.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
- Soccer v4 API
- Soccer Extended v4 API
🔁 Endpoints Affected
Sport Event Endpoints
- Sport Event Summary
- Sport Event Timeline
- Sport Event Extended Summary
- Sport Event Extended Timeline
- Sport Event Lineups
- League Timeline
Live Endpoints
- Live Schedules
- Live Summaries
- Live Timelines
- Live Timelines Delta
Push Feeds
- Push Events
- Push Statistics
Competitor Endpoints
- Competitor Schedules
- Competitor Summaries
- Competitor vs Competitor
Player Endpoints
- Player Schedules
- Player Summaries
Daily Endpoints
- Daily Schedules
- Daily Summaries
Season Endpoints
- Season Lineups
- Season Schedules
- Season Summaries
Probabilities
- Live Probabilities
- Season Probabilities
- Sport Event Probabilities
- Timeline Probabilities
⚙️ Return Samples
Previous Behavior Example
In the previous behavior, the overtime score attributes mirrored the final match score after overtime had concluded.
<sport_event_status status="closed" match_status="ended" home_score="3" away_score="3" home_normaltime_score="2" away_normaltime_score="2" home_overtime_score="3" away_overtime_score="3" winner_id="sr:competitor:4819">New Behavior Example
In the new behavior, the overtime score attributes reflect only the goals scored during overtime.
<sport_event_status status="closed" match_status="aet" home_score="2" away_score="1" home_normaltime_score="1" away_normaltime_score="1" home_overtime_score="1" away_overtime_score="0" winner_id="sr:competitor:2561">Late Substitution Events
🗓️ Release Date 06/02/2026
We've added a boolean late attribute to substitution events in all Soccer API Timeline endpoints. This flag indicates when a substitution was delayed because the player being replaced did not leave the field within the required time limit under the new substitution procedure introduced for the 2026 FIFA World Cup.
⭐ Benefit
Reference the event.late flag on substitution events to identify delayed substitutions. When late="true", the player being replaced did not leave the field within the required time limit, resulting in the incoming substitute being temporarily prevented from entering the field. During this delay, the team briefly plays with one fewer player until the substitution is completed.
☑️ Sample Request:
Sport Event Timeline
curl --request GET \
--url https://api.sportradar.com/soccer-extended/trial/v4/en/sport_events/{sport_event_id}/timeline.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
Soccer
- Live Timelines
- Live Timelines Delta
- Sport Event Timeline
- Push Events
Soccer Extended
- Live Timelines
- Live Timelines Delta
- Sport Event Extended Timeline
- Sport Event Timeline
- Push Events
⚙️ Return Sample
<event id="3002309890" type="substitution" time="2026-05-21T19:46:21+00:00" match_time="53" match_clock="52:30" competitor="home" period="2" period_type="regular_period" late="true">Removal of VAR Decision Field
🗓️ Release Date 06/01/2026
We've removed the decision data point from VAR review events across the Soccer and Soccer Extended APIs.
VAR review events will continue to be delivered, but the decision attribute is no longer included in the response payload.
Although the decision field has been removed, the outcome of a VAR review can still be determined using the description value on the VAR events.
The following description values may be provided:
goal/no_goalpenalty/no_penaltyred_card/no_red_cardcorner/no_cornermistaken_identity/no_mistaken_identity
☑️ Sample Request:
Sport Event Timeline (Match 70076100)
curl --request GET \
--url https://api.sportradar.com/soccer-extended/trial/v4/en/sport_events/sr:sport_event:70076100/timeline.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
The following endpoints are affected in both Soccer and Soccer Extended:
- Live Timelines
- Live Timelines Delta
- Sport Event Timeline
- Push Events
⚙️ Return Sample
A VAR review sequence continues to be represented by two timeline events:
video_assistant_referee— Indicates a VAR review has started.video_assistant_referee_over— Indicates the VAR review has concluded.
The decision field, previously available under event.decision, has been removed.
<event id="3000032774" type="video_assistant_referee" time="2026-04-29T01:07:33+00:00" match_time="50" match_clock="49:14" competitor="away" period="2" period_type="regular_period" description="penalty"/>
<event id="3000032882" type="video_assistant_referee_over" time="2026-04-29T01:09:38+00:00" match_time="52" match_clock="51:19" competitor="away" period="2" period_type="regular_period" description="penalty"/>{
"id": 3000032774,
"type": "video_assistant_referee",
"time": "2026-04-29T01:07:33+00:00",
"match_time": 50,
"match_clock": "49:14",
"competitor": "away",
"period": 2,
"period_type": "regular_period",
"description": "penalty"
},
{
"id": 3000032882,
"type": "video_assistant_referee_over",
"time": "2026-04-29T01:09:38+00:00",
"match_time": 52,
"match_clock": "51:19",
"competitor": "away",
"period": 2,
"period_type": "regular_period",
"description": "penalty"
},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"
},New VAR Event Descriptions and Player Node
🗓️ Release Date 05/26/2026
Four new description values have been added to the Soccer Timeline endpoints for Video Assistant Referee events.
Additionally, VAR timeline events will now have the ability to include an associated player name and Id.
Added description values:
cornerno_cornermistaken_identityno_mistaken_identity
⭐ Benefit
The new corner and mistaken_identity description values provide greater context into the outcome of a VAR review, enabling developers to surface more detailed decision data in their applications. The addition of the player node further enriches timeline events by associating specific players with VAR incidents.
Learn more in our VAR Review Process guide, or locate valid enums in our Soccer FAQ.
☑️ Sample Request:
Sport Event Timeline
curl --request GET \
--url https://api.sportradar.com/soccer-extended/trial/v4/en/sport_events/{sport_event_id}/timeline.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
Soccer
- Live Timelines
- Live Timelines Delta
- Sport Event Timeline
- Push Events
Soccer Extended
- Live Timelines
- Live Timelines Delta
- Sport Event Extended Timeline
- Sport Event Timeline
- Push Events
⚙️ Return Sample
<event id="4587691" type="video_assistant_referee" time="2025-08-25T20:21:57+00:00" match_time="61" match_clock="60:40" competitor="away" period="2" period_type="regular_period" description="red_card">
<players>
<player id="sr:player:560128" name="Joelinton" competitor_id="sr:competitor:39"/>
</players>
</event>
<event id="4587738" type="video_assistant_referee_over" time="2025-08-25T20:22:39+00:00" match_time="62" match_clock="61:22" competitor="away" period="2" period_type="regular_period" description="no_red_card" decision="cancelled">
<players>
<player id="sr:player:560128" name="Joelinton" competitor_id="sr:competitor:39"/>
</players>
</event><event id="4587691" type="video_assistant_referee" time="2025-08-25T20:21:57+00:00" match_time="61" match_clock="60:40" competitor="away" period="2" period_type="regular_period" description="corner"/>
<event id="4587738" type="video_assistant_referee_over" time="2025-08-25T20:22:39+00:00" match_time="62" match_clock="61:22" competitor="away" period="2" period_type="regular_period" description="no_corner" decision="cancelled"/><event id="4587691" type="video_assistant_referee" time="2025-08-25T20:21:57+00:00" match_time="61" match_clock="60:40" competitor="away" period="2" period_type="regular_period" description="mistaken_identity"/>
<event id="4587738" type="video_assistant_referee_over" time="2025-08-25T20:22:39+00:00" match_time="62" match_clock="61:22" competitor="away" period="2" period_type="regular_period" description="no_mistaken_identity" decision="cancelled"/>VAR Decisions
🗓️ Release Date 05/21/2026
We’ve added the decision data point for VAR review events across Soccer and Soccer Extended API Timeline endpoints. Previously available only in the Soccer Extended Timeline endpoint, decision now appears on video_assistant_referee_over events and indicates the outcome of the VAR review.
Possible values:pending, cancelled, upheld, overturned
⭐ Benefit
The decision data point gives you a complete picture of each VAR review — from the initial review trigger to the final outcome — so you can surface accurate, detailed VAR event data in your platform.
Learn more in our VAR Review Process guide.
☑️ Sample Request:
Sport Event Timeline (Match 70076100)
curl --request GET \
--url https://api.sportradar.com/soccer-extended/trial/v4/en/sport_events/sr:sport_event:70076100/timeline.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
Soccer
- Live Timelines
- Live Timelines Delta
- Sport Event Timeline
- Push Events
Soccer Extended
- Live Timelines
- Live Timelines Delta
- Sport Event Timeline
- Push Events
⚙️ Return Sample
A VAR sequence consists of two events: a video_assistant_referee event when the review is initiated, and a video_assistant_referee_over event when the review concludes. The decision field appears only on the closing video_assistant_referee_over event. Other timeline events may appear between the two VAR events.
<!-- VAR review initiated -->
<event id="3000032774" type="video_assistant_referee" time="2026-04-29T01:07:33+00:00" match_time="50" match_clock="49:14" competitor="away" period="2" period_type="regular_period" description="penalty"/>
<!-- Unrelated timeline event occurring during the review -->
<event id="3000032899" type="dribble" time="2026-04-29T01:10:21+00:00" match_time="52" match_clock="51:17" competitor="away" x="8" y="72" period="2" period_type="regular_period" outcome="successful">
<players>
<player id="sr:player:2150446" name="Veliz, Alejo" competitor_id="sr:competitor:3217"/>
</players>
</event>
<!-- VAR review concluded — decision returned here -->
<event id="3000032882" type="video_assistant_referee_over" time="2026-04-29T01:09:38+00:00" match_time="52" match_clock="51:19" competitor="away" period="2" period_type="regular_period" description="penalty" decision="upheld"/>// VAR review initiated
{
"id": 3000032774,
"type": "video_assistant_referee",
"time": "2026-04-29T01:07:33+00:00",
"match_time": 50,
"match_clock": "49:14",
"competitor": "away",
"period": 2,
"period_type": "regular_period",
"description": "penalty"
},
// Unrelated timeline event occurring during the review
{
"id": 3000032899,
"type": "dribble",
"time": "2026-04-29T01:10:21+00:00",
"match_time": 52,
"match_clock": "51:17",
"competitor": "away",
"x": 8,
"y": 72,
"period": 2,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2150446",
"name": "Veliz, Alejo",
"competitor_id": "sr:competitor:3217"
}
],
"outcome": "successful"
},
// VAR review concluded — decision returned here
{
"id": 3000032882,
"type": "video_assistant_referee_over",
"time": "2026-04-29T01:09:38+00:00",
"match_time": 52,
"match_clock": "51:19",
"competitor": "away",
"period": 2,
"period_type": "regular_period",
"description": "penalty",
"decision": "upheld"
}Team Own Goals
🗓️ Release Date 05/21/2026
We’ve added own_goals to the team statistics object in the Extended Summary endpoint of our Soccer Extended API. This data point is returned at both the match level and for each individual period, giving you a complete breakdown of own goals throughout the match.
⭐ Benefit
With Extended access, you can now track how many own goals a team conceded at both the overall match and individual period level. This makes it easier to identify exactly when in a match an own goal occurred, and attribute it accurately when building match summaries or statistical displays.
☑️ Sample Request:
Sport Event Extended Summary (Match 61624670)
curl --request GET \
--url https://api.sportradar.com/soccer-extended/trial/v4/en/sport_events/sr:sport_event:61624670/extended_summary.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
⚙️ Return Sample
<competitor id="sr:competitor:2828" name="Valencia CF" abbreviation="VCF" qualifier="away">
<statistics assists="4" ball_possession="45" cards_given="1" chances_created="11" clean_sheet="false" clearances="30" corner_kicks="2" crosses_claimed="0" crosses_excluding_corners="5" crosses_successful="3" crosses_successful_excluding_corners="1" crosses_total="7" crosses_unsuccessful="4" defensive_blocks="0" diving_saves="2" dribbles="8" dribbles_completed="6" dribbles_successful_percentage="75" dribbles_unsuccessful="2" fouls="11" fouls_suffered_final_third="3" free_kicks="13" free_kicks_scored="0" goal_kicks="6" goals="4" goals_conceded="3" goals_counter_attack="1" goals_excluding_penalties="4" goals_expected="1.647" goals_expected_created="1.535" goals_from_header="1" goals_inside_box="4" goals_left_footed="2" goals_lower_center="1" goals_lower_left="1" goals_lower_right="1" goals_open_play="3" goals_outside_box="0" goals_right_footed="1" goals_set_piece="1" goals_top_center="0" goals_top_left="0" goals_top_right="1" injuries="1" interceptions="2" interceptions_defensive_third="1" interceptions_final_third="0" interceptions_inside_box="0" interceptions_middle_third="1" interceptions_opposition_half="0" interceptions_own_half="2" long_passes_successful="11" long_passes_total="54" long_passes_unsuccessful="43" loss_of_possession="24" offsides="3" own_goals="1" passes_backward_successful="150" passes_center="124" passes_forward_successful="155" passes_in_final_third="77" passes_in_final_third_successful="77" passes_into_box="4" passes_left="83" passes_opponent_half="105" passes_opponent_half_successful="105" passes_own_half="153" passes_own_half_successful="153" passes_right="109" passes_successful="317" passes_successful_percentage="80.25" passes_total="395" passes_unsuccessful="78" penalties_conceded="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" penalties_scored="0" possessions_regained_in_defensive_third="2" possessions_regained_in_final_third="6" possessions_regained_in_middle_third="4" possessions_regained_in_opponent_half="8" possessions_regained_in_own_half="4" red_cards="1" saves_inside_box="0" saves_lower_center="0" saves_lower_left="0" saves_lower_right="0" saves_outside_box="0" saves_percentage="0" saves_top_center="0" saves_top_left="0" saves_top_right="0" shootout_penalties_faced="0" shootout_penalties_missed="0" shootout_penalties_saved="0" shootout_penalties_scored="0" shots_blocked="2" shots_center="3" shots_counter_attack="3" shots_direct_free_kicks="0" shots_excluding_blocks="11" shots_faced="6" shots_headed="0" shots_headed_off_target="0" shots_headed_on_target="0" shots_headed_woodwork="0" shots_hit_woodwork="0" shots_inside_box="0" shots_inside_box_center="0" shots_inside_box_left="0" shots_inside_box_on_target="0" shots_inside_box_right="0" shots_left="1" shots_left_footed="5" shots_left_footed_off_target="2" shots_left_footed_on_target="2" shots_missed_high="2" shots_missed_left="1" shots_missed_right="2" shots_off_target="5" shots_off_target_inside_box="0" shots_off_target_outside_box="0" shots_on_target="6" shots_on_target_lower_center="3" shots_on_target_lower_left="1" shots_on_target_lower_right="1" shots_on_target_percentage="46.15" shots_on_target_top_center="0" shots_on_target_top_left="0" shots_on_target_top_right="1" shots_open_play="11" shots_outside_box="0" shots_outside_box_center="0" shots_outside_box_left="0" shots_outside_box_on_target="0" shots_outside_box_right="0" shots_right="2" shots_right_footed="6" shots_right_footed_off_target="3" shots_right_footed_on_target="2" shots_saved="0" shots_set_piece="2" shots_total="13" substitutions="5" tackles_defensive_third_successful="1" tackles_final_third_successful="6" tackles_middle_third_successful="3" tackles_opponent_half="8" tackles_opponent_half_successful="8" tackles_own_half="3" tackles_own_half_successful="2" tackles_successful="10" tackles_total="11" tackles_unsuccessful="1" throw_ins="18" was_fouled="13" yellow_cards="0" yellow_red_cards="0"/>{
"id": "sr:competitor:2828",
"name": "Valencia CF",
"abbreviation": "VCF",
"qualifier": "away",
"statistics": {
"assists": 4,
"ball_possession": 45,
"cards_given": 1,
"chances_created": 11,
"clean_sheet": false,
"clearances": 30,
"corner_kicks": 2,
"crosses_claimed": 0,
"crosses_excluding_corners": 5,
"crosses_successful": 3,
"crosses_successful_excluding_corners": 1,
"crosses_total": 7,
"crosses_unsuccessful": 4,
"defensive_blocks": 0,
"diving_saves": 2,
"dribbles": 8,
"dribbles_completed": 6,
"dribbles_successful_percentage": 75,
"dribbles_unsuccessful": 2,
"fouls": 11,
"fouls_suffered_final_third": 3,
"free_kicks": 13,
"free_kicks_scored": 0,
"goal_kicks": 6,
"goals": 4,
"goals_conceded": 3,
"goals_counter_attack": 1,
"goals_excluding_penalties": 4,
"goals_expected": 1.647,
"goals_expected_created": 1.5350000000000001,
"goals_from_header": 1,
"goals_inside_box": 4,
"goals_left_footed": 2,
"goals_lower_center": 1,
"goals_lower_left": 1,
"goals_lower_right": 1,
"goals_open_play": 3,
"goals_outside_box": 0,
"goals_right_footed": 1,
"goals_set_piece": 1,
"goals_top_center": 0,
"goals_top_left": 0,
"goals_top_right": 1,
"injuries": 1,
"interceptions": 2,
"interceptions_defensive_third": 1,
"interceptions_final_third": 0,
"interceptions_inside_box": 0,
"interceptions_middle_third": 1,
"interceptions_opposition_half": 0,
"interceptions_own_half": 2,
"long_passes_successful": 11,
"long_passes_total": 54,
"long_passes_unsuccessful": 43,
"loss_of_possession": 24,
"offsides": 3,
"own_goals": 1,
"passes_backward_successful": 150,
"passes_center": 124,
"passes_forward_successful": 155,
"passes_in_final_third": 77,
"passes_in_final_third_successful": 77,
"passes_into_box": 4,
"passes_left": 83,
"passes_opponent_half": 105,
"passes_opponent_half_successful": 105,
"passes_own_half": 153,
"passes_own_half_successful": 153,
"passes_right": 109,
"passes_successful": 317,
"passes_successful_percentage": 80.25,
"passes_total": 395,
"passes_unsuccessful": 78,
"penalties_conceded": 0,
"penalties_faced": 0,
"penalties_missed": 0,
"penalties_saved": 0,
"penalties_scored": 0,
"possessions_regained_in_defensive_third": 2,
"possessions_regained_in_final_third": 6,
"possessions_regained_in_middle_third": 4,
"possessions_regained_in_opponent_half": 8,
"possessions_regained_in_own_half": 4,
"red_cards": 1,
"saves_inside_box": 0,
"saves_lower_center": 0,
"saves_lower_left": 0,
"saves_lower_right": 0,
"saves_outside_box": 0,
"saves_percentage": 0,
"saves_top_center": 0,
"saves_top_left": 0,
"saves_top_right": 0,
"shootout_penalties_faced": 0,
"shootout_penalties_missed": 0,
"shootout_penalties_saved": 0,
"shootout_penalties_scored": 0,
"shots_blocked": 2,
"shots_center": 3,
"shots_counter_attack": 3,
"shots_direct_free_kicks": 0,
"shots_excluding_blocks": 11,
"shots_faced": 6,
"shots_headed": 0,
"shots_headed_off_target": 0,
"shots_headed_on_target": 0,
"shots_headed_woodwork": 0,
"shots_hit_woodwork": 0,
"shots_inside_box": 0,
"shots_inside_box_center": 0,
"shots_inside_box_left": 0,
"shots_inside_box_on_target": 0,
"shots_inside_box_right": 0,
"shots_left": 1,
"shots_left_footed": 5,
"shots_left_footed_off_target": 2,
"shots_left_footed_on_target": 2,
"shots_missed_high": 2,
"shots_missed_left": 1,
"shots_missed_right": 2,
"shots_off_target": 5,
"shots_off_target_inside_box": 0,
"shots_off_target_outside_box": 0,
"shots_on_target": 6,
"shots_on_target_lower_center": 3,
"shots_on_target_lower_left": 1,
"shots_on_target_lower_right": 1,
"shots_on_target_percentage": 46.15,
"shots_on_target_top_center": 0,
"shots_on_target_top_left": 0,
"shots_on_target_top_right": 1,
"shots_open_play": 11,
"shots_outside_box": 0,
"shots_outside_box_center": 0,
"shots_outside_box_left": 0,
"shots_outside_box_on_target": 0,
"shots_outside_box_right": 0,
"shots_right": 2,
"shots_right_footed": 6,
"shots_right_footed_off_target": 3,
"shots_right_footed_on_target": 2,
"shots_saved": 0,
"shots_set_piece": 2,
"shots_total": 13,
"substitutions": 5,
"tackles_defensive_third_successful": 1,
"tackles_final_third_successful": 6,
"tackles_middle_third_successful": 3,
"tackles_opponent_half": 8,
"tackles_opponent_half_successful": 8,
"tackles_own_half": 3,
"tackles_own_half_successful": 2,
"tackles_successful": 10,
"tackles_total": 11,
"tackles_unsuccessful": 1,
"throw_ins": 18,
"was_fouled": 13,
"yellow_cards": 0,
"yellow_red_cards": 0
},Live Third-Place Rankings for World Cup
🗓️ Release Date 05/12/2026
We’ve expanded Soccer live standings support to include ranking of the best third-placed teams across all groups.
This behavior now applies to the Standings endpoint:
- Standard group standings will continue to update dynamically during live matches.
current_outcomedata can now indicate qualification status for teams currently occupying a best third-place position.- A new live standings table will display all teams currently placed 3rd in their respective groups and rank them against one another.
This additional table is separate from the official tournament groups and is generated dynamically during live play. Teams will move into and out of the rankings as match results change.
⭐ Benefit
This update allows users to:
- Track which third-placed teams are currently advancing in the World Cup
- View the live ranking order of all third-place teams
- Monitor qualification changes in real time during simultaneous group-stage matches
The behavior mirrors existing live standings functionality, with rankings continuously recalculated throughout active matches.
☑️ Sample Request:
Season Standings (World Cup)
curl --request GET \
--url https://api.sportradar.com/soccer/trial/v4/en/seasons/sr:season:101177/standings.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
- Season Standings
⚙️ Return Sample
<season_standing tie_break_rule="In the event that two (or more) teams finish with an equal number of points, the following rules break the tie: 1. Head-to-head games between the teams concerned 1a. Points total 1b. Goal difference 1c. Goals scored 2. Overall goal difference 3. Overall number of goals scored 4. Disciplinary points 5. Higher position in FIFA World Ranking" type="best_third" points_win="3" points_draw="1" points_loss="0" round="1">
<groups>
<group id="sr:league:106218" name="Best third" live="false">
<stage order="1" type="league" phase="best third" start_date="2026-06-11" end_date="2026-06-25" year="2026"/>
<standings>
<standing rank="1" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" current_outcome="Playoffs" change="0">
<competitor id="sr:competitor:4766" name="IR Iran" country="Iran" country_code="IRN" abbreviation="IRI" gender="male"/>
</standing>
<standing rank="2" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" current_outcome="Playoffs" change="0">
<competitor id="sr:competitor:4718" name="Austria" country="Austria" country_code="AUT" abbreviation="AUT" gender="male"/>
</standing>
<standing rank="3" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" current_outcome="Playoffs" change="0">
<competitor id="sr:competitor:4735" name="Korea Republic" country="Republic of Korea" country_code="KOR" abbreviation="KOR" gender="male"/>
</standing>
<standing rank="4" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" current_outcome="Playoffs" change="0">
<competitor id="sr:competitor:4741" name="Australia" country="Australia" country_code="AUS" abbreviation="AUS" gender="male"/>
</standing>
<standing rank="5" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" current_outcome="Playoffs" change="0">
<competitor id="sr:competitor:4768" name="Ivory Coast" country="Cote d’Ivoire" country_code="CIV" abbreviation="CIV" gender="male"/>
</standing>
<standing rank="6" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" current_outcome="Playoffs" change="0">
<competitor id="sr:competitor:4688" name="Sweden" country="Sweden" country_code="SWE" abbreviation="SWE" gender="male"/>
</standing>
<standing rank="7" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" current_outcome="Playoffs" change="0">
<competitor id="sr:competitor:4723" name="Uzbekistan" country="Uzbekistan" country_code="UZB" abbreviation="UZB" gender="male"/>
</standing>
<standing rank="8" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" current_outcome="Playoffs" change="0">
<competitor id="sr:competitor:4792" name="Qatar" country="Qatar" country_code="QAT" abbreviation="QAT" gender="male"/>
</standing>
<standing rank="9" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" change="0">
<competitor id="sr:competitor:4767" name="Iraq" country="Iraq" country_code="IRQ" abbreviation="IRQ" gender="male"/>
</standing>
<standing rank="10" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" change="0">
<competitor id="sr:competitor:4834" name="Saudi Arabia" country="Saudi Arabia" country_code="SAU" abbreviation="KSA" gender="male"/>
</standing>
<standing rank="11" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" change="0">
<competitor id="sr:competitor:4764" name="Ghana" country="Ghana" country_code="GHA" abbreviation="GHA" gender="male"/>
</standing>
<standing rank="12" played="0" win="0" loss="0" draw="0" goals_for="0" goals_against="0" goals_diff="0" points="0" change="0">
<competitor id="sr:competitor:7229" name="Haiti" country="Haiti" country_code="HTI" abbreviation="HTI" gender="male"/>
</standing>
</standings>
</group>
</groups>
</season_standing>{
"tie_break_rule": "In the event that two (or more) teams finish with an equal number of points, the following rules break the tie:\r\n1. Head-to-head games between the teams concerned\r\n1a. Points total\r\n1b. Goal difference\r\n1c. Goals scored\r\n2. Overall goal difference\r\n3. Overall number of goals scored\r\n4. Disciplinary points\r\n5. Higher position in FIFA World Ranking",
"type": "best_third",
"groups": [
{
"stage": {
"order": 1,
"type": "league",
"phase": "best third",
"start_date": "2026-06-11",
"end_date": "2026-06-25",
"year": "2026"
},
"id": "sr:league:106218",
"name": "Best third",
"live": false,
"standings": [
{
"rank": 1,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4766",
"name": "IR Iran",
"country": "Iran",
"country_code": "IRN",
"abbreviation": "IRI",
"gender": "male"
},
"points": 0,
"current_outcome": "Playoffs",
"change": 0
},
{
"rank": 2,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4718",
"name": "Austria",
"country": "Austria",
"country_code": "AUT",
"abbreviation": "AUT",
"gender": "male"
},
"points": 0,
"current_outcome": "Playoffs",
"change": 0
},
{
"rank": 3,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4735",
"name": "Korea Republic",
"country": "Republic of Korea",
"country_code": "KOR",
"abbreviation": "KOR",
"gender": "male"
},
"points": 0,
"current_outcome": "Playoffs",
"change": 0
},
{
"rank": 4,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4741",
"name": "Australia",
"country": "Australia",
"country_code": "AUS",
"abbreviation": "AUS",
"gender": "male"
},
"points": 0,
"current_outcome": "Playoffs",
"change": 0
},
{
"rank": 5,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4768",
"name": "Ivory Coast",
"country": "Cote d’Ivoire",
"country_code": "CIV",
"abbreviation": "CIV",
"gender": "male"
},
"points": 0,
"current_outcome": "Playoffs",
"change": 0
},
{
"rank": 6,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4688",
"name": "Sweden",
"country": "Sweden",
"country_code": "SWE",
"abbreviation": "SWE",
"gender": "male"
},
"points": 0,
"current_outcome": "Playoffs",
"change": 0
},
{
"rank": 7,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4723",
"name": "Uzbekistan",
"country": "Uzbekistan",
"country_code": "UZB",
"abbreviation": "UZB",
"gender": "male"
},
"points": 0,
"current_outcome": "Playoffs",
"change": 0
},
{
"rank": 8,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4792",
"name": "Qatar",
"country": "Qatar",
"country_code": "QAT",
"abbreviation": "QAT",
"gender": "male"
},
"points": 0,
"current_outcome": "Playoffs",
"change": 0
},
{
"rank": 9,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4767",
"name": "Iraq",
"country": "Iraq",
"country_code": "IRQ",
"abbreviation": "IRQ",
"gender": "male"
},
"points": 0,
"change": 0
},
{
"rank": 10,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4834",
"name": "Saudi Arabia",
"country": "Saudi Arabia",
"country_code": "SAU",
"abbreviation": "KSA",
"gender": "male"
},
"points": 0,
"change": 0
},
{
"rank": 11,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:4764",
"name": "Ghana",
"country": "Ghana",
"country_code": "GHA",
"abbreviation": "GHA",
"gender": "male"
},
"points": 0,
"change": 0
},
{
"rank": 12,
"played": 0,
"win": 0,
"loss": 0,
"draw": 0,
"goals_for": 0,
"goals_against": 0,
"goals_diff": 0,
"competitor": {
"id": "sr:competitor:7229",
"name": "Haiti",
"country": "Haiti",
"country_code": "HTI",
"abbreviation": "HTI",
"gender": "male"
},
"points": 0,
"change": 0
}
]
}
],
"points_win": 3,
"points_draw": 1,
"points_loss": 0,
"round": 1
}Start Date Confirmed Flag
🗓️ Release Date 05/06/2026
We've added a date_confirmed attribute to our Soccer APIs.
This indicates whether the scheduled date of a sport event is confirmed, even if the start time remains unconfirmed.
When date_confirmed = true and start_time_confirmed = false, the event is guaranteed to occur on the specified date, but the exact start time is still TBD.
⭐ Benefit
Definitively indicate when an upcoming match is scheduled for a specific date, when the start time on that date is not yet known.
<!-- Date confirmed, start time not yet confirmed -->
<sport_event id="sr:sport_event:68156836"
start_time="2026-05-10T00:00:00+00:00"
start_time_confirmed="false"
date_confirmed="true">☑️ Sample Request:
Season Summaries
curl --request GET \
--url https://api.sportradar.com/soccer/trial/v4/en/seasons/sr:season:130281/summaries.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
Competitor:
- Schedules
- Summaries
- vs Competitor
Daily:
- Schedules
- Summaries
Season:
- Schedules
- Summaries
- Lineups
- Links
- Probabilities
Sport Event:
- Summary
- Timeline
- Lineups
- League Timeline
- Momentum (Extended)
- Extended Summary (Extended)
- Extended Timeline (Extended)
Live:
- Schedules
- Summaries
Player:
- Player Schedules
- Player Summaries
Probabilities Package:
- Live Probabilities
- Sport Event Probabilities
- Timeline Probabilities
⚙️ Return Sample
<sport_event id="sr:sport_event:68156836" start_time="2026-05-07T00:00:00+00:00" start_time_confirmed="true" date_confirmed="true">
<sport_event_context>
<sport id="sr:sport:1" name="Soccer"/>
<category id="sr:category:26" name="USA" country_code="USA"/>
<competition id="sr:competition:36479" name="MLS Next Pro" gender="men"/>
<season id="sr:season:139090" name="MLS Next Pro 2026" start_date="2026-02-28" end_date="2026-11-09" year="2026" competition_id="sr:competition:36479"/>
<stage order="1" type="league" phase="regular season" start_date="2026-02-28" end_date="2026-09-20" year="2026"/>
<round/>
<groups>
<group id="sr:league:104598" name="MLS Next Pro 2026"/>
<group id="sr:league:104602" name="MLS Next Pro 2026, Western Conference" group_name="Western"/>
</groups>
</sport_event_context>
<coverage type="sport_event">
<sport_event_properties lineups="false" formations="false" venue="true" extended_play_by_play="false" extended_player_stats="false" extended_team_stats="false" ballspotting="false" commentary="false" fun_facts="false" goal_scorers="false" goal_scorers_live="false" scores="post" game_clock="false" deeper_play_by_play="false" deeper_player_stats="false" deeper_team_stats="false" basic_play_by_play="false" basic_player_stats="false" basic_team_stats="false"/>
</coverage>
<competitors>
<competitor id="sr:competitor:239006" name="Sporting Kansas City II" country="USA" country_code="USA" abbreviation="SKC" qualifier="home" gender="male"/>
<competitor id="sr:competitor:153490" name="Ventura County FC" country="USA" country_code="USA" abbreviation="VEN" qualifier="away" gender="male"/>
</competitors>
<venue id="sr:venue:82567" name="Swope Park" capacity="8000" city_name="Kansas City, MO" country_name="USA" map_coordinates="39.007813, -94.5348" country_code="USA" timezone="America/Chicago"/>
<sport_event_conditions>
<ground neutral="false"/>
</sport_event_conditions>
</sport_event>{
"sport_event": {
"id": "sr:sport_event:70075098",
"start_time": "2026-05-07T00:00:00+00:00",
"start_time_confirmed": true,
"date_confirmed": true,
"sport_event_context": {
"sport": {
"id": "sr:sport:1",
"name": "Soccer"
},
"category": {
"id": "sr:category:393",
"name": "International Clubs"
},
"competition": {
"id": "sr:competition:480",
"name": "CONMEBOL Sudamericana",
"gender": "men"
},
"season": {
"id": "sr:season:138028",
"name": "CONMEBOL Sudamericana 2026",
"start_date": "2026-03-03",
"end_date": "2026-11-22",
"year": "2026",
"competition_id": "sr:competition:480"
},
"stage": {
"order": 2,
"type": "league",
"phase": "regular season",
"start_date": "2026-04-07",
"end_date": "2026-05-29",
"year": "2026"
},
"round": {
"number": 4
},
"groups": [
{
"id": "sr:league:105850",
"name": "CONMEBOL Sudamericana 2026, Group A",
"group_name": "A"
}
]
},
"coverage": {
"type": "sport_event",
"sport_event_properties": {
"lineups": true,
"formations": true,
"venue": true,
"extended_play_by_play": true,
"extended_player_stats": true,
"extended_team_stats": true,
"lineups_availability": "pre",
"ballspotting": true,
"commentary": true,
"fun_facts": true,
"goal_scorers": true,
"goal_scorers_live": true,
"scores": "live",
"game_clock": true,
"deeper_play_by_play": true,
"deeper_player_stats": true,
"deeper_team_stats": true,
"basic_play_by_play": true,
"basic_player_stats": true,
"basic_team_stats": true
}
},
"competitors": [
{
"id": "sr:competitor:6001",
"name": "CSD Macara",
"country": "Ecuador",
"country_code": "ECU",
"abbreviation": "MAC",
"qualifier": "home",
"gender": "male"
},
{
"id": "sr:competitor:7628",
"name": "CA Tigre",
"country": "Argentina",
"country_code": "ARG",
"abbreviation": "TIG",
"qualifier": "away",
"gender": "male"
}
],
"venue": {
"id": "sr:venue:2966",
"name": "Estadio Bellavista",
"capacity": 20000,
"city_name": "Ambato",
"country_name": "Ecuador",
"map_coordinates": "-1.244694, -78.623174",
"country_code": "ECU",
"timezone": "America/Guayaquil"
},
"sport_event_conditions": {
"referees": [
{
"id": "sr:referee:1705647",
"name": "Zanovelli da Silva, Paulo Cesar",
"nationality": "Brazil",
"country_code": "BRA",
"type": "main_referee"
}
],
"ground": {
"neutral": false
}
}
},
"sport_event_status": {
"status": "not_started",
"match_status": "not_started"
}
},Soccer Simulations
🗓️ Release Date 05/04/2026
We've added Soccer APIs to our Simulations offering!
⭐ What You Can Do
- Retrieve available recordings and supported feeds
- Replay matches on demand, on your own schedule
- Test integrations using both REST and Push feeds
New recordings will continue to be added as matches are played.
☑️ Sample Request:
Sport Event Summary
curl --location 'https://playback.sportradar.com/replay/soccer/{recording_id}?feed=summary&contentType=json&sessionId={session_id}'🔢 Versions
🔁 Endpoints Supported
Sport Event
- Lineups
- Summary
- Timeline
- Extended Summary
- Extended Timeline
Season
- Standings
- Links
- Summaries
- Leaders
- Missing Players
- Info
- Competitors
Push
- Events
- Statistics
'Seasons Disabled' Endpoint
🗓️ Release Date 04/28/2026
We've added a Seasons Disabled endpoint to each of our Soccer APIs, providing a list of currently disabled seasons, including future seasons that have not yet been enabled.
Season details and availability are subject to change prior to enablement.
⭐ Benefit
Leverage this endpoint to obtain IDs for upcoming competitions, enabling you to prepare your product for live games.
For example, pull this feed now to obtain details for this fall's Premier League:
<season id="sr:season:140756" name="Premier League 26/27" start_date="2026-08-22" end_date="2027-05-30" year="26/27" competition_id="sr:competition:17" disabled="true" />☑️ Sample Request:
Seasons Disabled
curl --request GET \
--url https://api.sportradar.com/soccer/trial/v4/en/seasons_disabled.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
⚙️ Return Sample
<season id="sr:season:140786" name="UEFA Champions League 26/27" start_date="2026-07-07" end_date="2027-06-05" year="26/27" competition_id="sr:competition:7" disabled="true"/>
<season id="sr:season:140756" name="Premier League 26/27" start_date="2026-08-22" end_date="2027-05-30" year="26/27" competition_id="sr:competition:17" disabled="true"/>
<season id="sr:season:140810" name="Championship 26/27" start_date="2026-08-14" end_date="2027-05-29" year="26/27" competition_id="sr:competition:18" disabled="true"/>
<season id="sr:season:140816" name="EFL Cup 26/27" start_date="2026-08-14" end_date="2027-02-28" year="26/27" competition_id="sr:competition:21" disabled="true"/>
<season id="sr:season:140782" name="Serie A 26/27" start_date="2026-08-21" end_date="2027-05-30" year="26/27" competition_id="sr:competition:23" disabled="true"/>"seasons_disabled": [
{
"id": "sr:season:140786",
"name": "UEFA Champions League 26/27",
"start_date": "2026-07-07",
"end_date": "2027-06-05",
"year": "26/27",
"competition_id": "sr:competition:7",
"disabled": true
},
{
"id": "sr:season:140756",
"name": "Premier League 26/27",
"start_date": "2026-08-22",
"end_date": "2027-05-30",
"year": "26/27",
"competition_id": "sr:competition:17",
"disabled": true
},
{
"id": "sr:season:140810",
"name": "Championship 26/27",
"start_date": "2026-08-14",
"end_date": "2027-05-29",
"year": "26/27",
"competition_id": "sr:competition:18",
"disabled": true
},
{
"id": "sr:season:140816",
"name": "EFL Cup 26/27",
"start_date": "2026-08-14",
"end_date": "2027-02-28",
"year": "26/27",
"competition_id": "sr:competition:21",
"disabled": true
},
{
"id": "sr:season:140782",
"name": "Serie A 26/27",
"start_date": "2026-08-21",
"end_date": "2027-05-30",
"year": "26/27",
"competition_id": "sr:competition:23",
"disabled": true
},Infrastructure Update
🗓️ Release Date 04/28/2026
We are upgrading our event infrastructure to improve consistency and quality.
No breaking changes are expected, however there is potential for some changes in behaviour. Our support team is on hand if you experience any issues.
🔢 Versions
Hydration Break Events
🗓️ Release Date 04/13/2026
We’ve added support for hydration breaks in each of our Soccer APIs.
Use these two new event types in our Soccer Timeline endpoints to determine the start and end of each hydration break.
water_break_startwater_break_end
⭐ Benefit
Integrate these event types to ensure your soccer product is compatible with the new hydration breaks for the World Cup, and other international competitions.
☑️ Sample Request:
- Sport Event Timeline -
https://api.sportradar.com/soccer/trial/v4/en/sport_events/{sport_event_id}/timeline.json
🔢 Versions
🔁 Endpoints Affected
- Live Timelines
- Live Timelines Delta
- Sport Event Timeline
- Push Events
Note: events are not included in Sport Event Extended Timeline
⚙️ Return Sample
<event id="19599009" type="water_break_start" time="2026-03-12T00:52:43+00:00" match_time="23" match_clock="22:36" period="1" period_type="regular_period"/>
<event id="19599010" type="water_break_end" time="2026-03-12T00:54:48+00:00" match_time="25" match_clock="24:41" period="1" period_type="regular_period"/>FIFA Rankings
🗓️ Release Date 04/23/2026
We’ve added an endpoint for retrieving FIFA Rankings!
All men's national teams are included to get you ready for this year's World Cup.
⭐ Benefit
Use this Soccer Extended API endpoint to retrieve a comprehensive global snapshot of all men's national team rankings.
Display each national team's ranking in preparation for the World Cup. When matchups are released, include rankings to give your users an at-a-glance preview of the relative strength of each team.
☑️ Sample Request:
- FIFA Rankings -
https://api.sportradar.com/soccer-extended/trial/v4/en/fifa_rankings.json
🔢 Versions
🔁 Endpoints Affected
⚙️ Return Sample
<ranking gender="men">
<competitor_rankings>
<competitor_ranking rank="1" movement="0" points="1877.2" previous_points="1877.2" last_updated="2026-03-22 15:20:25">
<competitor id="sr:competitor:4698" name="Spain" country="Spain" country_code="ESP" abbreviation="ESP" gender="male"/>
</competitor_ranking>
<competitor_ranking rank="2" movement="0" points="1873.3" previous_points="1873.3" last_updated="2026-03-22 15:20:25">
<competitor id="sr:competitor:4819" name="Argentina" country="Argentina" country_code="ARG" abbreviation="ARG" gender="male"/>
</competitor_ranking>
<competitor_ranking rank="3" movement="0" points="1870" previous_points="1870" last_updated="2026-03-22 15:20:25">
<competitor id="sr:competitor:4481" name="France" country="France" country_code="FRA" abbreviation="FRA" gender="male"/>
</competitor_ranking>
<competitor_ranking rank="4" movement="0" points="1834.1" previous_points="1834.1" last_updated="2026-03-22 15:20:25">
<competitor id="sr:competitor:4713" name="England" country="England" country_code="ENG" abbreviation="ENG" gender="male"/>
</competitor_ranking>
<competitor_ranking rank="5" movement="0" points="1760.5" previous_points="1760.5" last_updated="2026-03-22 15:20:25">
<competitor id="sr:competitor:4748" name="Brazil" country="Brazil" country_code="BRA" abbreviation="BRA" gender="male"/>
</competitor_ranking>
<competitor_ranking rank="6" movement="0" points="1760.4" previous_points="1760.4" last_updated="2026-03-22 15:20:25">
<competitor id="sr:competitor:4704" name="Portugal" country="Portugal" country_code="PRT" abbreviation="POR" gender="male"/>
</competitor_ranking>
<competitor_ranking rank="7" movement="0" points="1756.3" previous_points="1756.3" last_updated="2026-03-22 15:20:25">
<competitor id="sr:competitor:4705" name="Netherlands" country="Netherlands" country_code="NLD" abbreviation="NED" gender="male"/>
</competitor_ranking>{
"generated_at": "2026-03-23T14:59:12+00:00",
"rankings": [
{
"gender": "men",
"competitor_rankings": [
{
"rank": 1,
"movement": 0,
"points": 1877.2,
"competitor": {
"id": "sr:competitor:4698",
"name": "Spain",
"country": "Spain",
"country_code": "ESP",
"abbreviation": "ESP",
"gender": "male"
},
"previous_points": 1877.2,
"last_updated": "2026-03-22 15:20:25"
},
{
"rank": 2,
"movement": 0,
"points": 1873.3,
"competitor": {
"id": "sr:competitor:4819",
"name": "Argentina",
"country": "Argentina",
"country_code": "ARG",
"abbreviation": "ARG",
"gender": "male"
},
"previous_points": 1873.3,
"last_updated": "2026-03-22 15:20:25"
},
{
"rank": 3,
"movement": 0,
"points": 1870,
"competitor": {
"id": "sr:competitor:4481",
"name": "France",
"country": "France",
"country_code": "FRA",
"abbreviation": "FRA",
"gender": "male"
},
"previous_points": 1870,
"last_updated": "2026-03-22 15:20:25"
},
{
"rank": 4,
"movement": 0,
"points": 1834.1,
"competitor": {
"id": "sr:competitor:4713",
"name": "England",
"country": "England",
"country_code": "ENG",
"abbreviation": "ENG",
"gender": "male"
},
"previous_points": 1834.1,
"last_updated": "2026-03-22 15:20:25"
},
{
"rank": 5,
"movement": 0,
"points": 1760.5,
"competitor": {
"id": "sr:competitor:4748",
"name": "Brazil",
"country": "Brazil",
"country_code": "BRA",
"abbreviation": "BRA",
"gender": "male"
},
"previous_points": 1760.5,
"last_updated": "2026-03-22 15:20:25"
},
{
"rank": 6,
"movement": 0,
"points": 1760.4,
"competitor": {
"id": "sr:competitor:4704",
"name": "Portugal",
"country": "Portugal",
"country_code": "PRT",
"abbreviation": "POR",
"gender": "male"
},
"previous_points": 1760.4,
"last_updated": "2026-03-22 15:20:25"
},
{
"rank": 7,
"movement": 0,
"points": 1756.3,
"competitor": {
"id": "sr:competitor:4705",
"name": "Netherlands",
"country": "Netherlands",
"country_code": "NLD",
"abbreviation": "NED",
"gender": "male"
},
"previous_points": 1756.3,
"last_updated": "2026-03-22 15:20:25"
},
{
"rank": 8,
"movement": 0,
"points": 1730.7,
"competitor": {
"id": "sr:competitor:4717",
"name": "Belgium",
"country": "Belgium",
"country_code": "BEL",
"abbreviation": "BEL",
"gender": "male"
},
"previous_points": 1730.7,
"last_updated": "2026-03-22 15:20:25"
},
{
"rank": 9,
"movement": 0,
"points": 1724.2,
"competitor": {
"id": "sr:competitor:4711",
"name": "Germany",
"country": "Germany",
"country_code": "DEU",
"abbreviation": "GER",
"gender": "male"
},
"previous_points": 1724.2,
"last_updated": "2026-03-22 15:20:25"
},Match Captains
🗓️ Release Date 03/12/2026
We’ve added support for team captains at the match level for our Soccer APIs.
Use the captain flag within the Sport Event Lineups or Season Lineups to identify which player led the team for a specific match.
Match captain is available for select upper-tier leagues. It populates when lineups.confirmed moves to true.
⭐ Benefit
Previously, our Soccer APIs only supported team-level captains via the Competitor Profile. Now, you can provide a more accurate match-day experience by identifying the specific captain for every game. This is particularly useful for matches where the permanent Club Captain is not in the starting lineup.
☑️ Sample Request:
- Sport Event Lineups -
https://api.sportradar.com/soccer/trial/v4/en/sport_events/{sport_event_id}/lineups.json - Season Lineups -
https://api.sportradar.com/soccer/trial/v4/en/seasons/{season_id}/lineups.json
🔢 Versions
🔁 Endpoints Affected
- Season Lineups
- Sport Event Lineups
⚙️ Return Sample
<player id="sr:player:100389" name="De Roon, Marten" type="midfielder" date_of_birth="1991-03-29" nationality="Netherlands" country_code="NLD" height="186" weight="76" jersey_number="15" preferred_foot="right" place_of_birth="Zwijndrecht" starter="true" captain="true" played="true" order="7" position="central_midfielder"/>{
"id": "sr:player:770677",
"name": "Zakaria, Denis",
"type": "midfielder",
"date_of_birth": "1996-11-20",
"nationality": "Switzerland",
"country_code": "CHE",
"height": 189,
"weight": 81,
"jersey_number": 6,
"preferred_foot": "right",
"place_of_birth": "Genf",
"starter": true,
"captain": true,
"played": true,
"order": 7,
"position": "central_midfielder"
}, Bundesliga 2 Data
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 3/11/2026 | Seasonal Competitor Extended Statistics Sport Events Extended Summary Sport Event Extended Timeline | We’ve added a handful of data points specific to Bundesliga 2 (
|
<event id="14858851" type="pass" time="2026-01-25T14:11:25+00:00" match_time="83" match_clock="82:52" competitor="away" x="87" y="61" period="2" period_type="regular_period" destination_x="60" destination_y="44" outcome="complete" direction="forward" passing_range="long" trajectory="high">
<players>
<player id="sr:player:754082" name="Chernev, Atanas" type="passer" competitor_id="sr:competitor:2675"/>
<player id="sr:player:820932" name="Prtajin, Ivan" type="receiver"/>
</players>
</event>
<event id="14858858" type="pass" time="2026-01-25T14:11:27+00:00" match_time="83" match_clock="82:54" competitor="away" x="60" y="44" period="2" period_type="regular_period" destination_x="64" destination_y="52" outcome="complete" direction="diagonal" passing_range="medium" trajectory="flat">
<players>
<player id="sr:player:820932" name="Prtajin, Ivan" type="passer" competitor_id="sr:competitor:2675"/>
<player id="sr:player:1015767" name="Hanslik, Daniel" type="receiver"/>
</players>
</event>
<event id="14858866" type="pass" time="2026-01-25T14:11:30+00:00" match_time="83" match_clock="82:56" competitor="away" x="64" y="52" period="2" period_type="regular_period" destination_x="15" destination_y="40" outcome="complete" direction="diagonal" passing_range="medium" trajectory="flat">
<players>
<player id="sr:player:1015767" name="Hanslik, Daniel" type="passer" competitor_id="sr:competitor:2675"/>
<player id="sr:player:820932" name="Prtajin, Ivan" type="receiver"/>
</players>
</event>Shots Saved & Possible Goal
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 3/6/2026 | Sport Event Extended Timeline | We’ve added Each of these event types were available in the Soccer API, and the Sport Event Timeline endpoint within the Extended API. This update brings each to the Extended Timeline going forward. |
<event id="2240791380" type="possible_goal" time="2026-01-12T17:32:10+00:00" match_time="1" match_clock="0:59" competitor="home" period="1" period_type="regular_period"/>
<event id="2240793158" type="corner_kick" time="2026-01-12T17:34:33+00:00" match_time="4" match_clock="3:27" competitor="away" x="0" y="0" period="1" period_type="regular_period">
<commentaries>
<commentary text="Corner awarded to Al-Khaleej."/>
</commentaries>
</event>{
"id": 2094471358,
"type": "shot_on_target",
"time": "2025-07-17T00:47:17+00:00",
"match_time": 8,
"match_clock": "7:04",
"competitor": "away",
"players":
[
{
"id": "sr:player:2917011",
"name": "Johnson, Tate"
}
],
"x": 8,
"y": 65,
"period": 1,
"period_type": "regular_period",
"commentaries":
[
{
"text": "In Houston, TX Vancouver drive forward through Tate Johnson. His shot is on target but it's saved."
}
]
},
{
"id": 2094471362,
"type": "shot_saved",
"time": "2025-07-17T00:47:17+00:00",
"match_time": 8,
"match_clock": "7:04",
"competitor": "home",
"period": 1,
"period_type": "regular_period"
},
{
"id": 2094471534,
"type": "goal_kick",
"time": "2025-07-17T00:47:45+00:00",
"match_time": 8,
"match_clock": "7:33",
"competitor": "home",
"x": 5,
"y": 50,
"period": 1,
"period_type": "regular_period",
"commentaries":
[
{
"text": "Goal kick for Houston at Shell Energy Stadium."
}
]
},
{
"id": 2094471694,
"type": "goal_kick",
"time": "2025-07-17T00:48:14+00:00",
"match_time": 9,
"match_clock": "8:01",
"competitor": "home",
"x": 5,
"y": 50,
"period": 1,
"period_type": "regular_period",
"commentaries":
[
{
"text": "It's a goal kick for the home team in Houston, TX."
}
]
},
{
"id": 2094471830,
"type": "free_kick",
"time": "2025-07-17T00:48:43+00:00",
"match_time": 9,
"match_clock": "8:30",
"competitor": "home",
"x": 32,
"y": 22,
"period": 1,
"period_type": "regular_period",
"commentaries":
[
{
"text": "Rubiel Vazquez signals a free kick to Houston in their own half."
}
]
},Extended Summary Stats Removal
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 1/21/2026 | Sport Event Extended Statistics | The following statistics have been removed from the Sport Event Extended Summary endpoint. Match Stats (Team): Match Stats (Player): |
Sport Event Momentum Endpoint
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 1/15/2026 | Sport Event Momentum | We’ve added a Momentum endpoint in the Soccer Extended API. Request the Sport Event Momentum endpoint for a minute-by-minute timeline of momentum values for each team in a given match.Each minute of a supported match includes a value from Use Leverage this new RESTful endpoint to learn the momentum flows between competitors or to create a timeline story of momentum flow for a match. |
<sport_event_momentum xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated_at="2026-01-15T18:33:35+00:00" xmlns="http://schemas.sportradar.com/sportsapi/soccer-extended/v4" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/soccer-extended/v4 https://schemas.sportradar.com/sportsapi/soccer-extended/v4/schemas/sport_event_momentum.xsd">
<sport_event id="sr:sport_event:64321031" start_time="2026-01-15T17:30:00+00:00" start_time_confirmed="true">
<sport_event_context>
<sport id="sr:sport:1" name="Soccer"/>
<category id="sr:category:31" name="Italy" country_code="ITA"/>
<competition id="sr:competition:23" name="Serie A" gender="men"/>
<season id="sr:season:130971" name="Serie A 25/26" start_date="2025-08-23" end_date="2026-05-25" year="25/26" competition_id="sr:competition:23"/>
<stage order="1" type="league" phase="regular season" start_date="2025-08-23" end_date="2026-05-25" year="25/26"/>
<round number="16"/>
<groups>
<group id="sr:league:94759" name="Serie A 25/26"/>
</groups>
</sport_event_context>
<coverage type="sport_event">
<sport_event_properties lineups="true" formations="true" venue="true" extended_play_by_play="true" extended_player_stats="true" extended_team_stats="true" lineups_availability="pre" ballspotting="true" commentary="true" fun_facts="true" goal_scorers="true" goal_scorers_live="true" scores="live" game_clock="true" deeper_play_by_play="true" deeper_player_stats="true" deeper_team_stats="true" basic_play_by_play="true" basic_player_stats="true" basic_team_stats="true"/>
</coverage>
<competitors>
<competitor id="sr:competitor:2701" name="Hellas Verona" country="Italy" country_code="ITA" abbreviation="VER" qualifier="home" gender="male"/>
<competitor id="sr:competitor:2685" name="Bologna FC" country="Italy" country_code="ITA" abbreviation="BFC" qualifier="away" gender="male"/>
</competitors>
<venue id="sr:venue:687" name="Stadio Marcantonio Bentegodi" capacity="39211" city_name="Verona" country_name="Italy" map_coordinates="45.435356, 10.968647" country_code="ITA" timezone="Europe/Rome"/>
<channels>
<channel name="Fox Deportes" url="https://www.foxsports.com/presspass/latest-news/weekly-schedule/" country="United States" country_code="USA"/>
<channel name="Paramount+" url="https://worldsoccertalk.com/serie-a-tv-schedule/" country="United States" country_code="USA"/>
<channel name="CBS Sports Network" country="United States" country_code="USA"/>
<channel name="Fubo TV" url="https://www.livesoccertv.com/channels/fubo-tv/" country="United States" country_code="USA"/>
</channels>
<sport_event_conditions>
<referees>
<referee id="sr:referee:130916" name="Mariani, Maurizio" nationality="Italy" country_code="ITA" type="main_referee"/>
<referee id="sr:referee:130917" name="Bindoni, Daniele" nationality="Italy" country_code="ITA" type="first_assistant_referee"/>
<referee id="sr:referee:1006803" name="Alassio, Stefano" nationality="Italy" country_code="ITA" type="second_assistant_referee"/>
<referee id="sr:referee:126984" name="Massa, Davide" nationality="Italy" country_code="ITA" type="fourth_official"/>
<referee id="sr:referee:895410" name="Camplone, Giacomo" nationality="Italy" country_code="ITA" type="video_assistant_referee"/>
</referees>
<weather pitch_conditions="good" overall_conditions="medium"/>
<ground neutral="false"/>
<lineups confirmed="true"/>
</sport_event_conditions>
</sport_event>
<momentums>
<momentum match_time="1" value="21" competitor="away"/>
<momentum match_time="2" value="24" competitor="away"/>
<momentum match_time="3" value="20" competitor="away"/>
<momentum match_time="4" value="-12" competitor="home"/>
<momentum match_time="5" value="-41" competitor="home"/>
<momentum match_time="6" value="14" competitor="away"/>
<momentum match_time="7" value="30" competitor="away"/>
<momentum match_time="8" value="3" competitor="away"/>
<momentum match_time="9" value="3" competitor="away"/>
<momentum match_time="10" value="-17" competitor="home"/>
<momentum match_time="11" value="13" competitor="away"/>
<momentum match_time="12" value="28" competitor="away"/>
<momentum match_time="13" value="24" competitor="away"/>
<momentum match_time="14" value="-50" competitor="home"/>
<momentum match_time="15" value="-15" competitor="home"/>
<momentum match_time="16" value="-29" competitor="home"/>
<momentum match_time="17" value="20" competitor="away"/>
<momentum match_time="18" value="18" competitor="away"/>
<momentum match_time="19" value="38" competitor="away"/>
<momentum match_time="20" value="-15" competitor="home"/>
<momentum match_time="21" value="50" competitor="away"/>
<momentum match_time="22" value="50" competitor="away"/>
<momentum match_time="23" value="22" competitor="away"/>
<momentum match_time="24" value="16" competitor="away"/>
<momentum match_time="25" value="-1" competitor="home"/>
<momentum match_time="26" value="27" competitor="away"/>
<momentum match_time="27" value="-24" competitor="home"/>
<momentum match_time="28" value="13" competitor="away"/>
<momentum match_time="29" value="0"/>
<momentum match_time="30" value="-8" competitor="home"/>
<momentum match_time="31" value="13" competitor="away"/>
<momentum match_time="32" value="41" competitor="away"/>
<momentum match_time="33" value="-11" competitor="home"/>
<momentum match_time="34" value="-30" competitor="home"/>
<momentum match_time="35" value="-45" competitor="home"/>
<momentum match_time="36" value="-39" competitor="home"/>
<momentum match_time="37" value="10" competitor="away"/>
<momentum match_time="38" value="4" competitor="away"/>
<momentum match_time="39" value="49" competitor="away"/>
<momentum match_time="40" value="-21" competitor="home"/>
<momentum match_time="41" value="-2" competitor="home"/>
<momentum match_time="42" value="-5" competitor="home"/>
<momentum match_time="43" value="13" competitor="away"/>
<momentum match_time="44" value="50" competitor="away"/>
<momentum match_time="45" value="5" competitor="away"/>
<momentum match_time="45" stoppage_time="1" value="24" competitor="away"/>
<momentum match_time="45" stoppage_time="2" value="16" competitor="away"/>
</momentums>
<timeline/>
</sport_event_momentum> "competitors": [
{
"id": "sr:competitor:1951",
"name": "Queretaro FC",
"country": "Mexico",
"country_code": "MEX",
"abbreviation": "QUE",
"qualifier": "home",
"gender": "male"
},
{
"id": "sr:competitor:36525",
"name": "Club Tijuana de Caliente",
"country": "Mexico",
"country_code": "MEX",
"abbreviation": "TIJ",
"qualifier": "away",
"gender": "male"
}
],
"venue": {
"id": "sr:venue:2048",
"name": "Estadio La Corregidora",
"capacity": 34130,
"city_name": "Santiago de Queretaro",
"country_name": "Mexico",
"map_coordinates": "20.577551, -100.366341",
"country_code": "MEX",
"timezone": "America/Mexico_City"
},
"channels": [
{
"name": "ViX+",
"country": "United States",
"country_code": "USA"
}
],
"sport_event_conditions": {
"referees": [
{
"id": "sr:referee:2029469",
"name": "Hernandez Andrade, Karen",
"nationality": "Mexico",
"country_code": "MEX",
"type": "main_referee"
}
],
"weather": {
"pitch_conditions": "good",
"overall_conditions": "medium"
},
"ground": {
"neutral": false
},
"lineups": {
"confirmed": true
}
}
},
"momentums": [
{
"match_time": 1,
"value": -23,
"competitor": "home"
},
{
"match_time": 2,
"value": -22,
"competitor": "home"
},
{
"match_time": 3,
"value": 6,
"competitor": "away"
},
{
"match_time": 4,
"value": -37,
"competitor": "home"
},
{
"match_time": 5,
"value": 20,
"competitor": "away"
},
{
"match_time": 6,
"value": 22,
"competitor": "away"
},Insight Relevancy Score
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 1/15/2026 | Sport Event Insights | We've added a relevancy value to our insights in the Soccer Extended API. Use |
<insights>
<insight text="In their last 3 2. Bundesliga matches, Fortuna Dusseldorf have been awarded an average of 2.6 corners per match, while Greuther Furth have averaged 3.6 corners." type="prematch" relevancy="3.18608">
<related_ids>
<related_id id="sr:competitor:2588" name="Fortuna Dusseldorf"/>
<related_id id="sr:competitor:2551" name="Greuther Furth"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
<insight text="In the last 3 matches of 2. Bundesliga, Fortuna Dusseldorf scored 1 goals (average 0.3) while Greuther Furth scored 5 (average 1.6)" type="prematch" relevancy="3.54641">
<related_ids>
<related_id id="sr:competitor:2588" name="Fortuna Dusseldorf"/>
<related_id id="sr:competitor:2551" name="Greuther Furth"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
<insight text="Following their 2nd yellow card in the second half, Greuther Furth were not able to score a goal in the last 3 similar situations in the 2. Bundesliga." type="live">
<related_ids>
<related_id id="sr:competitor:2551" name="Greuther Furth"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
<insight text="Greuther Furth are trailing by a goal at halftime. They've only managed to either pull ahead or draw in 0 out of the last 3 away matches where they faced a similar deficit in the 2. Bundesliga." type="live" relevancy="0.648521">
<related_ids>
<related_id id="sr:competitor:2551" name="Greuther Furth"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
<insight text="In their last 5 2. Bundesliga matches, Fortuna Dusseldorf have received an average of 4 cards per match, while Greuther Furth have averaged 2.4 cards." type="prematch" relevancy="2.63548">
<related_ids>
<related_id id="sr:competitor:2588" name="Fortuna Dusseldorf"/>
<related_id id="sr:competitor:2551" name="Greuther Furth"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
<insight text="In their last 5 2. Bundesliga matches, Fortuna Dusseldorf have received an average of 1.6 cards in the first half per match, while Greuther Furth have averaged 0.8 cards." type="prematch" relevancy="2.7305">
<related_ids>
<related_id id="sr:competitor:2588" name="Fortuna Dusseldorf"/>
<related_id id="sr:competitor:2551" name="Greuther Furth"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
<insight text="Fortuna Dusseldorf are leading by a goal after 90+6 minutes of the match.In their last 4 similar situations in the 2. Bundesliga, they've won 4 times." type="live" relevancy="0.23239">
<related_ids>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
<related_id id="sr:competitor:2588" name="Fortuna Dusseldorf"/>
</related_ids>
</insight>
<insight text="Fortuna Dusseldorf have been one of the least effective teams in the 2. Bundesliga this season, averaging just 0.8 goals per match, which is below the league average of 1.4 goals per match." type="prematch" relevancy="1.95134">
<related_ids>
<related_id id="sr:competitor:2588" name="Fortuna Dusseldorf"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
<insight text="In the last {process} 10 matches of the 2. Bundesliga of the 2. Bundesliga, Fortuna Dusseldorf1.4 goals per match while Greuther Furth conceded on average 2.7 goals per match." type="prematch" relevancy="2.57459">
<related_ids>
<related_id id="sr:competitor:2588" name="Fortuna Dusseldorf"/>
<related_id id="sr:competitor:2551" name="Greuther Furth"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
<insight text="The chances of seeing a goal from Fortuna Dusseldorf in the first half are slim. They have only averaged 0.3 goals before halftime in the 2. Bundesliga matches this season." type="prematch" relevancy="1.56283">
<related_ids>
<related_id id="sr:competitor:2588" name="Fortuna Dusseldorf"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
<insight text="Greuther Furth have conceded a total of 42 goals, which is the most in the 2. Bundesliga this season." type="prematch" relevancy="5">
<related_ids>
<related_id id="sr:competitor:2551" name="Greuther Furth"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
<insight text="Draw seems to be a common result for Greuther Furth lately. They have drawn 2 out of their last 3 2. Bundesliga matches." type="prematch" relevancy="5">
<related_ids>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
<related_id id="sr:competitor:2551" name="Greuther Furth"/>
</related_ids>
</insight>
<insight text="Fortuna Dusseldorf struggle with scoring lately. They have averaged less than one goal per match in the last 5 2. Bundesliga matches." type="prematch" relevancy="2.65872">
<related_ids>
<related_id id="sr:competitor:2588" name="Fortuna Dusseldorf"/>
<related_id id="sr:tournament:44" name="2. Bundesliga"/>
</related_ids>
</insight>
</insights>Apertura / Clausura Season Structure Changes
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 12/22/2025 | All feeds with the season parameter | Starting with select competitions from the 2026 and 2026/27 seasons, Apertura and Clausura competitions will be represented as stages within a single season rather than separate seasons. This update improves consistency in season and competition structure. For full details, including affected competitions and integration considerations, refer to the Apertura / Clausura Season Structure FAQ. |
Extended Season Statistics
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 12/05/2025 | Seasonal Competitor Extended Statistics | We’ve added a new Soccer Extended endpoint that aggregates our 100+ extended statistics at the season level. Refer to our Reference documentation for detailed data point descriptions, or visit the Stats Summary page for a full breakdown of all Player and Team statistics. |
<competitor id="sr:competitor:35" name="Manchester United" country="England" country_code="ENG" abbreviation="MUN" gender="male">
<statistics assists="12" ball_possession="54.21" cards_given="19" chances_created="119" clean_sheets="1" clearances="498" corner_kicks="61" crosses_claimed="0" crosses_excluding_corners="256" crosses_successful="79" crosses_successful_excluding_corners="22" crosses_total="317" crosses_unsuccessful="238" defensive_blocks="33" diving_saves="0" dribbles="36" dribbles_completed="25" dribbles_successful_percentage="69.44" dribbles_unsuccessful="11" fouls="140" fouls_suffered_final_third="28" free_kicks="153" free_kicks_scored="0" goal_kicks="105" goals="22" goals_conceded="21" goals_counter_attack="0" goals_excluding_penalties="21" goals_expected="25.39" goals_expected_created="18.44" goals_from_header="5" goals_inside_box="18" goals_left_footed="3" goals_lower_center="1" goals_lower_left="2" goals_lower_right="7" goals_open_play="14" goals_outside_box="4" goals_right_footed="6" goals_set_piece="2" goals_top_center="0" goals_top_left="2" goals_top_right="1" injuries="7" interceptions="41" interceptions_defensive_third="12" interceptions_final_third="15" interceptions_inside_box="0" interceptions_middle_third="14" interceptions_opposition_half="22" interceptions_own_half="19" long_passes_successful="163" long_passes_total="478" long_passes_unsuccessful="315" loss_of_possession="328" matches_played="14" offsides="22" passes_backward_successful="1590" passes_center="1255" passes_forward_successful="2343" passes_in_final_third="1406" passes_in_final_third_successful="1383" passes_into_box="148" passes_left="1558" passes_opponent_half="1759" passes_opponent_half_successful="1735" passes_own_half="1669" passes_own_half_successful="1645" passes_right="1465" passes_successful="4684" passes_successful_percentage="83.55" passes_total="5606" passes_unsuccessful="922" penalties_conceded="1" penalties_faced="1" penalties_missed="2" penalties_saved="0" penalties_scored="1" possessions_regained_in_defensive_third="48" possessions_regained_in_final_third="47" possessions_regained_in_middle_third="56" possessions_regained_in_opponent_half="71" possessions_regained_in_own_half="80" red_cards="0" saves_inside_box="6" saves_lower_center="3" saves_lower_left="2" saves_lower_right="2" saves_outside_box="4" saves_top_center="1" saves_top_left="1" saves_top_right="1" shootout_penalties_faced="0" shootout_penalties_missed="0" shootout_penalties_saved="0" shootout_penalties_scored="0" shots_blocked="44" shots_center="15" shots_counter_attack="0" shots_direct_free_kicks="0" shots_excluding_blocks="144" shots_faced="141" shots_headed="22" shots_headed_off_target="13" shots_headed_on_target="9" shots_headed_woodwork="0" shots_hit_woodwork="5" shots_inside_box="83" shots_inside_box_center="9" shots_inside_box_left="11" shots_inside_box_on_target="35" shots_inside_box_on_target_percentage="52.24" shots_inside_box_right="15" shots_left="24" shots_left_footed="46" shots_left_footed_off_target="15" shots_left_footed_on_target="21" shots_missed_high="60" shots_missed_left="50" shots_missed_right="29" shots_off_target="75" shots_off_target_inside_box="32" shots_off_target_outside_box="24" shots_on_target="69" shots_on_target_lower_center="11" shots_on_target_lower_left="18" shots_on_target_lower_right="16" shots_on_target_percentage="38.26" shots_on_target_top_center="3" shots_on_target_top_left="5" shots_on_target_top_right="5" shots_open_play="121" shots_outside_box="64" shots_outside_box_center="5" shots_outside_box_left="9" shots_outside_box_on_target="21" shots_outside_box_on_target_percentage="46.67" shots_outside_box_right="6" shots_right="21" shots_right_footed="71" shots_right_footed_off_target="28" shots_right_footed_on_target="27" shots_saved="11" shots_set_piece="11" shots_total="188" substitutions="60" tackles_defensive_third_successful="36" tackles_final_third_successful="32" tackles_middle_third_successful="42" tackles_opponent_half="61" tackles_opponent_half_successful="49" tackles_own_half="70" tackles_own_half_successful="61" tackles_successful="110" tackles_total="131" tackles_unsuccessful="21" throw_ins="269" was_fouled="153" yellow_cards="19" yellow_red_cards="1"/> "players": [
{
"id": "sr:player:122951",
"name": "Casemiro",
"statistics": {
"assists": 1,
"braces": 0,
"cards_given": 5,
"chances_created": 5,
"clean_sheets": 1,
"clearances": 31,
"corner_kicks": 0,
"crosses_claimed": 0,
"crosses_excluding_corners": 7,
"crosses_successful": 0,
"crosses_successful_excluding_corners": 0,
"crosses_total": 7,
"crosses_unsuccessful": 7,
"defensive_blocks": 7,
"diving_saves": 0,
"dribbles": 1,
"dribbles_completed": 1,
"dribbles_successful_percentage": 100,
"dribbles_unsuccessful": 0,
"fouls_committed": 16,
"fouls_suffered_final_third": 2,
"four_goals_or_more": 0,
"free_kicks_scored": 0,
"goal_involvements": 4,
"goal_kicks": 0,
"goals_by_head": 2,
"goals_by_penalty": 0,
"goals_conceded": 9,
"goals_counter_attack": 0,
"goals_excluding_penalties": 3,
"goals_expected": 1.96,
"goals_expected_created": 0.71,
"goals_inside_box": 2,
"goals_left_footed": 0,
"goals_lower_center": 0,
"goals_lower_left": 0,
"goals_lower_right": 2,
"goals_open_play": 1,
"goals_outside_box": 1,
"goals_right_footed": 1,
"goals_scored": 3,
"goals_set_piece": 1,
"goals_top_center": 0,
"goals_top_left": 0,
"goals_top_right": 0,
"hat_tricks": 0,
"injuries": 2,
"interceptions": 5,
"interceptions_defensive_third": 2,
"interceptions_final_third": 1,
"interceptions_inside_box": 0,
"interceptions_middle_third": 2,
"interceptions_opposition_half": 3,
"interceptions_own_half": 2,
"involvements_in_shots_off_target": 7,
"involvements_in_shots_off_target_goals_expected": 0.74,
"involvements_in_shots_on_target": 9,
"involvements_in_shots_on_target_goals_expected": 1.4,
"long_passes_successful": 12,
"long_passes_total": 25,
"long_passes_unsuccessful": 13,
"loss_of_possession": 9,
"matches_played": 13,
"minutes_played": 858,
"offsides": 0,
"own_goals": 0,
"passes_backward_successful": 101,
"passes_center": 112,
"passes_forward_successful": 201,
"passes_in_final_third": 97,
"passes_in_final_third_successful": 96,
"passes_into_box": 10,
"passes_left": 101,
"passes_opponent_half": 128,
"passes_opponent_half_successful": 126,
"passes_own_half": 115,
"passes_own_half_successful": 111,
"passes_right": 115,
"passes_successful": 353,
"passes_successful_percentage": 84.45,
"passes_total": 418,
"passes_unsuccessful": 65,
"penalties_conceded": 0,
"penalties_missed": 0,
"possessions_regained_in_defensive_third": 6,
"possessions_regained_in_final_third": 2,
"possessions_regained_in_middle_third": 6,
"possessions_regained_in_opponent_half": 6,
"possessions_regained_in_own_half": 8,
"red_cards": 0,
"shootout_penalties_missed": 0,
"shootout_penalties_scored": 0,
"shots_blocked": 3,
"shots_center": 0,
"shots_counter_attack": 0,
"shots_direct_free_kicks": 0,
"shots_excluding_blocks": 14,
"shots_headed": 3,
"shots_headed_off_target": 1,
"shots_headed_on_target": 2,
"shots_headed_woodwork": 0,
"shots_hit_woodwork": 1,
"shots_inside_box": 5,
"shots_inside_box_center": 0,
"shots_inside_box_left": 1,
"shots_inside_box_on_target": 3,
"shots_inside_box_on_target_percentage": 60,
"shots_inside_box_right": 2,
"shots_left": 2,
"shots_left_footed": 1,
"shots_left_footed_off_target": 0,
"shots_left_footed_on_target": 1,
"shots_missed_high": 2,
"shots_missed_left": 2,
"shots_missed_right": 1,
"shots_off_target": 7,
"shots_off_target_inside_box": 2,
"shots_off_target_outside_box": 2,
"shots_on_target": 7,
"shots_on_target_lower_center": 0,
"shots_on_target_lower_left": 2,
"shots_on_target_lower_right": 3,
"shots_on_target_percentage": 36.11,
"shots_on_target_top_center": 0,
"shots_on_target_top_left": 0,
"shots_on_target_top_right": 0,
"shots_open_play": 8,
"shots_outside_box": 7,
"shots_outside_box_center": 0,
"shots_outside_box_left": 1,
"shots_outside_box_on_target": 2,
"shots_outside_box_on_target_percentage": 50,
"shots_outside_box_right": 1,
"shots_right": 3,
"shots_right_footed": 6,
"shots_right_footed_off_target": 3,
"shots_right_footed_on_target": 3,
"shots_set_piece": 1,
"shots_total": 17,
"substituted_in": 1,
"substituted_out": 8,
"tackles_defensive_third_successful": 4,
"tackles_final_third_successful": 1,
"tackles_middle_third_successful": 4,
"tackles_opponent_half": 4,
"tackles_opponent_half_successful": 3,
"tackles_own_half": 7,
"tackles_own_half_successful": 6,
"tackles_successful": 9,
"tackles_total": 11,
"tackles_unsuccessful": 2,
"throw_ins": 0,
"was_fouled": 8,
"yellow_cards": 5,
"yellow_red_cards": 1
}
},Statistic Recalculation
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 12/04/2025 | All Feeds | We have completed a comprehensive recalculation of advanced statistics across all Soccer Extended API competitions. This update enables us to create more aggregations and split statistics by period. 🔢 What is affected? All Soccer Extended competitions since August 1st, 2025 🔁 Who is affected? All customers consuming extended statistical data—particularly those relying on season totals, player advanced metrics, or analytics models. ☑️ Required action No action is required. All updated statistics are now available automatically through the existing endpoints. If you have cached or stored extended stats locally, we recommend refreshing your datasets to ensure alignment with the recalculated values. |
Insights Type
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 12/02/2025 | Sport Event Insights | We’ve added a type attribute to indicate whether an insight is live or prematch. |
<insight type="prematch" text="Draw seems to be a common result for Manchester United lately. They have drawn 2 out of their last 3 Premier League matches.">Team Captain
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 11/25/2025 | Competitor Profile Player Profile | We’ve added new captain indicators: use the This enhancement was made to both Soccer v4 and v4 Extended. |
<player id="sr:player:17651" name="Cazorla, Santi" type="midfielder" date_of_birth="1984-12-13" nationality="Spain" country_code="ESP" height="168" weight="65" preferred_foot="both" place_of_birth="Lugo de Llanera" country_of_birth="Spain" gender="male" captain="true"/><role type="team_captain" active="true" start_date="2025-11-18 00:00:00">
<competitor id="sr:competitor:2851" name="Real Oviedo" country="Spain" country_code="ESP" abbreviation="OVI" gender="male"/>
</role>Scoring Method
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 10/30/2025 | League Timeline Live Timelines Live Timelines Delta Sport Event Extended Timeline Sport Event Timeline Push Events | We've added a scoring method to Use the This data point was already available in the Soccer v4 API (non-Extended). |
"timeline": [
{
"id": 2180372420,
"type": "match_started",
"time": "2025-10-30T13:00:00+00:00"
},
{
"id": 2180372422,
"type": "period_start",
"time": "2025-10-30T13:00:00+00:00",
"period": 1,
"period_type": "regular_period",
"period_name": "regular_period"
},
{
"id": 2180378700,
"type": "score_change",
"time": "2025-10-30T13:09:41+00:00",
"match_time": 10,
"competitor": "away",
"players": [
{
"id": "sr:player:2296267",
"name": "Toure",
"type": "scorer"
}
],
"x": 11,
"y": 50,
"period": 1,
"period_type": "regular_period",
"home_score": 0,
"away_score": 1,
"method": "penalty"
},
{
"id": 2180401850,
"type": "score_change",
"time": "2025-10-30T13:47:08+00:00",
"match_time": 45,
"match_clock": "45:00",
"competitor": "home",
"players": [
{
"id": "sr:player:2051519",
"name": "Kruspzky, Facundo",
"type": "scorer"
}
],
"x": 92,
"y": 55,
"stoppage_time": 3,
"stoppage_time_clock": "2:08",
"period": 1,
"period_type": "regular_period",
"home_score": 1,
"away_score": 1,
"method": "own_goal"
},
{
"id": 2180404366,
"type": "period_score",
"time": "2025-10-30T13:50:15+00:00",
"period": 1,
"period_type": "regular_period"
},
{
"id": 2180404372,
"type": "break_start",
"time": "2025-10-30T13:50:15+00:00",
"period_type": "pause",
"break_name": "pause"
},
{
"id": 2180416098,
"type": "period_start",
"time": "2025-10-30T14:07:56+00:00",
"period": 2,
"period_type": "regular_period",
"period_name": "regular_period"
}
]
} <timeline>
<event id="2180372420" type="match_started" time="2025-10-30T13:00:00+00:00"/>
<event id="2180372422" type="period_start" time="2025-10-30T13:00:00+00:00" period="1" period_type="regular_period" period_name="regular_period"/>
<event id="2180378700" type="score_change" time="2025-10-30T13:09:41+00:00" match_time="10" competitor="away" x="11" y="50" period="1" period_type="regular_period" home_score="0" away_score="1" method="penalty">
<players>
<player id="sr:player:2296267" name="Toure" type="scorer"/>
</players>
</event>
<event id="2180401850" type="score_change" time="2025-10-30T13:47:08+00:00" match_time="45" match_clock="45:00" competitor="home" x="92" y="55" stoppage_time="3" stoppage_time_clock="2:08" period="1" period_type="regular_period" home_score="1" away_score="1" method="own_goal"/>
<event id="2180404366" type="period_score" time="2025-10-30T13:50:15+00:00" period="1" period_type="regular_period"/>
<event id="2180404372" type="break_start" time="2025-10-30T13:50:15+00:00" period_type="pause" break_name="pause"/>
</timeline>Alternative Competition Names
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 10/22/2025 | All endpoints with competition info | We've added alternative competition names to our Soccer APIs. Use the |
{
"id": "sr:competition:17",
"name": "Premier League",
"gender": "men",
"category": {
"id": "sr:category:1",
"name": "England",
"country_code": "ENG"
},
"alternative_name": "English Premier League"
},<competition id="sr:competition:17" name="Premier League" gender="men" alternative_name="English Premier League">
<category id="sr:category:1" name="England" country_code="ENG"/>
</competition>Player Loans
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 10/9/2025 | Competitor Profile Seasonal Competitor Players | We've updated the behavior of on-loan players in our Soccer APIs.Players on loan to other teams now appear in the Competitor Profile and Seasonal Competitor Players endpoints for their teams. They are identified using the following attributes:
|
{
"players": [
{
"id": "sr:player:143040",
"name": "Endo, Wataru",
"type": "midfielder",
"date_of_birth": "1993-02-09",
"nationality": "Japan",
"country_code": "JPN",
"height": 178,
"weight": 76,
"jersey_number": 3,
"preferred_foot": "right",
"place_of_birth": "Yokohama",
"country_of_birth": "Japan",
"gender": "male"
},
{
"id": "sr:player:151545",
"name": "Van Dijk, Virgil",
"type": "defender",
"date_of_birth": "1991-07-08",
"nationality": "Netherlands",
"country_code": "NLD",
"height": 195,
"weight": 92,
"jersey_number": 4,
"preferred_foot": "right",
"place_of_birth": "Breda",
"country_of_birth": "Netherlands",
"gender": "male"
},
{
"id": "sr:player:159665",
"name": "Salah, Mohamed",
"type": "forward",
"date_of_birth": "1992-06-15",
"nationality": "Egypt",
"country_code": "EGY",
"height": 175,
"weight": 71,
"jersey_number": 11,
"preferred_foot": "left",
"place_of_birth": "Basyoun, El Gharbia",
"country_of_birth": "Egypt",
"gender": "male"
},
{
"id": "sr:player:243609",
"name": "Alisson",
"type": "goalkeeper",
"date_of_birth": "1992-10-02",
"nationality": "Brazil",
"country_code": "BRA",
"height": 193,
"weight": 91,
"jersey_number": 1,
"preferred_foot": "right",
"place_of_birth": "Novo Hamburgo",
"country_of_birth": "Brazil",
"gender": "male"
},<player id="sr:player:143040" name="Endo, Wataru" type="midfielder" date_of_birth="1993-02-09" nationality="Japan" country_code="JPN" height="178" weight="76" jersey_number="3" preferred_foot="right" place_of_birth="Yokohama" country_of_birth="Japan" gender="male"/>
<player id="sr:player:151545" name="Van Dijk, Virgil" type="defender" date_of_birth="1991-07-08" nationality="Netherlands" country_code="NLD" height="195" weight="92" jersey_number="4" preferred_foot="right" place_of_birth="Breda" country_of_birth="Netherlands" gender="male"/>
<player id="sr:player:159665" name="Salah, Mohamed" type="forward" date_of_birth="1992-06-15" nationality="Egypt" country_code="EGY" height="175" weight="71" jersey_number="11" preferred_foot="left" place_of_birth="Basyoun, El Gharbia" country_of_birth="Egypt" gender="male"/>
<player id="sr:player:243609" name="Alisson" type="goalkeeper" date_of_birth="1992-10-02" nationality="Brazil" country_code="BRA" height="193" weight="91" jersey_number="1" preferred_foot="right" place_of_birth="Novo Hamburgo" country_of_birth="Brazil" gender="male"/>Player Birth Country - Competitor Profile Endpoint
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 10/7/2025 | Competitor Profile | We've added players' birth country (country_of_birth) in the Competitor Profile endpoint of our Soccer APIs. This was previously available only in the Player Profile endpoint. |
{
"players": [
{
"id": "sr:player:143040",
"name": "Endo, Wataru",
"type": "midfielder",
"date_of_birth": "1993-02-09",
"nationality": "Japan",
"country_code": "JPN",
"height": 178,
"weight": 76,
"jersey_number": 3,
"preferred_foot": "right",
"place_of_birth": "Yokohama",
"country_of_birth": "Japan",
"gender": "male"
},
{
"id": "sr:player:151545",
"name": "Van Dijk, Virgil",
"type": "defender",
"date_of_birth": "1991-07-08",
"nationality": "Netherlands",
"country_code": "NLD",
"height": 195,
"weight": 92,
"jersey_number": 4,
"preferred_foot": "right",
"place_of_birth": "Breda",
"country_of_birth": "Netherlands",
"gender": "male"
},
{
"id": "sr:player:159665",
"name": "Salah, Mohamed",
"type": "forward",
"date_of_birth": "1992-06-15",
"nationality": "Egypt",
"country_code": "EGY",
"height": 175,
"weight": 71,
"jersey_number": 11,
"preferred_foot": "left",
"place_of_birth": "Basyoun, El Gharbia",
"country_of_birth": "Egypt",
"gender": "male"
},
{
"id": "sr:player:243609",
"name": "Alisson",
"type": "goalkeeper",
"date_of_birth": "1992-10-02",
"nationality": "Brazil",
"country_code": "BRA",
"height": 193,
"weight": 91,
"jersey_number": 1,
"preferred_foot": "right",
"place_of_birth": "Novo Hamburgo",
"country_of_birth": "Brazil",
"gender": "male"
},<player id="sr:player:143040" name="Endo, Wataru" type="midfielder" date_of_birth="1993-02-09" nationality="Japan" country_code="JPN" height="178" weight="76" jersey_number="3" preferred_foot="right" place_of_birth="Yokohama" country_of_birth="Japan" gender="male"/>
<player id="sr:player:151545" name="Van Dijk, Virgil" type="defender" date_of_birth="1991-07-08" nationality="Netherlands" country_code="NLD" height="195" weight="92" jersey_number="4" preferred_foot="right" place_of_birth="Breda" country_of_birth="Netherlands" gender="male"/>
<player id="sr:player:159665" name="Salah, Mohamed" type="forward" date_of_birth="1992-06-15" nationality="Egypt" country_code="EGY" height="175" weight="71" jersey_number="11" preferred_foot="left" place_of_birth="Basyoun, El Gharbia" country_of_birth="Egypt" gender="male"/>
<player id="sr:player:243609" name="Alisson" type="goalkeeper" date_of_birth="1992-10-02" nationality="Brazil" country_code="BRA" height="193" weight="91" jersey_number="1" preferred_foot="right" place_of_birth="Novo Hamburgo" country_of_birth="Brazil" gender="male"/>Player Birth Country
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 9/10/2025 | Player Profile | We've added birth country (country_of_birth) for players in our Soccer APIs. Access a player's birth country in their Player Profile endpoint. |
"player": {
"id": "sr:player:750",
"name": "Cristiano Ronaldo",
"type": "forward",
"date_of_birth": "1985-02-05",
"nationality": "Portugal",
"country_code": "PRT",
"height": 185,
"weight": 80,
"jersey_number": 7,
"preferred_foot": "both",
"place_of_birth": "Funchal",
"country_of_birth": "Portugal",
"gender": "male"
},<player id="sr:player:750" name="Cristiano Ronaldo" type="forward" date_of_birth="1985-02-05" nationality="Portugal" country_code="PRT" height="185" weight="80" jersey_number="7" preferred_foot="both" place_of_birth="Funchal" country_of_birth="Portugal" gender="male"/>Insights Endpoint
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 8/11/2025 | Sport Event Insights | We've released a new Sport Event Insights endpoint to our Soccer Extended API. Leverage this endpoint for AI-generated pre-match and live insights, based on statistical information about a given match and its competing teams. |
{
"generated_at": "2025-08-11T15:11:46+00:00",
"insights": [
{
"related_ids": [
{
"id": "sr:competitor:3133",
"name": "Shimizu S-Pulse"
},
{
"id": "sr:tournament:196",
"name": "J.League"
}
],
"0": {
"text": "The match is still tied after the first half. In their last 4 away matches in the J.League when that happened, Shimizu S-Pulse have lost twice."
}
},
{
"related_ids": [
{
"id": "sr:competitor:3133",
"name": "Shimizu S-Pulse"
},
{
"id": "sr:tournament:196",
"name": "J.League"
}
],
"0": {
"text": "Following their 2nd yellow card in the second half, Shimizu S-Pulse were not able to score a goal in the last 3 similar situations in the J.League."
}
},
{
"related_ids": [
{
"id": "sr:competitor:3133",
"name": "Shimizu S-Pulse"
},
{
"id": "sr:tournament:196",
"name": "J.League"
}
],
"0": []
},
{
"related_ids": [
{
"id": "sr:competitor:3135",
"name": "Sanfrecce Hiroshima"
},
{
"id": "sr:tournament:196",
"name": "J.League"
}
],
"0": {
"text": "The match is still tied after the first half. In their last 9 home matches in the J.League when that happened, Sanfrecce Hiroshima have won 5 times."
}
},
{
"related_ids": [
{
"id": "sr:competitor:3135",
"name": "Sanfrecce Hiroshima"
},
{
"id": "sr:competitor:3133",
"name": "Shimizu S-Pulse"
},
{
"id": "sr:tournament:196",
"name": "J.League"
}
],
"0": {
"text": "We have no goals after first half between Sanfrecce Hiroshima and Shimizu S-Pulse! Well, both teams have shown they can score after half-time in the J.League, with Sanfrecce Hiroshima averaging 1.21 goals per match and Shimizu S-Pulse averaging 1.21 goals per match."
}
}
]
}<?xml version="1.0" encoding="UTF-8"?>
<sport_event_insights xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated_at="2025-08-11T14:14:11+00:00" xmlns="http://schemas.sportradar.com/sportsapi/soccer-extended/v4" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/soccer-extended/v4 https://schemas.sportradar.com/sportsapi/soccer-extended/v4/schemas/sport_event_insights.xsd">
<insights>
<insight text="The match is still tied after the first half. In their last 4 away matches in the J.League when that happened, Shimizu S-Pulse have lost twice.">
<related_ids>
<related_id id="sr:competitor:3133" name="Shimizu S-Pulse"/>
<related_id id="sr:tournament:196" name="J.League"/>
</related_ids>
</insight>
<insight text="Following their 2nd yellow card in the second half, Shimizu S-Pulse were not able to score a goal in the last 3 similar situations in the J.League.">
<related_ids>
<related_id id="sr:competitor:3133" name="Shimizu S-Pulse"/>
<related_id id="sr:tournament:196" name="J.League"/>
</related_ids>
</insight>
<insight>
<related_ids>
<related_id id="sr:competitor:3133" name="Shimizu S-Pulse"/>
<related_id id="sr:tournament:196" name="J.League"/>
</related_ids>
</insight>
<insight text="The match is still tied after the first half. In their last 9 home matches in the J.League when that happened, Sanfrecce Hiroshima have won 5 times.">
<related_ids>
<related_id id="sr:competitor:3135" name="Sanfrecce Hiroshima"/>
<related_id id="sr:tournament:196" name="J.League"/>
</related_ids>
</insight>
<insight text="We have no goals after first half between Sanfrecce Hiroshima and Shimizu S-Pulse! Well, both teams have shown they can score after half-time in the J.League, with Sanfrecce Hiroshima averaging 1.21 goals per match and Shimizu S-Pulse averaging 1.21 goals per match.">
<related_ids>
<related_id id="sr:competitor:3135" name="Sanfrecce Hiroshima"/>
<related_id id="sr:competitor:3133" name="Shimizu S-Pulse"/>
<related_id id="sr:tournament:196" name="J.League"/>
</related_ids>
</insight>
</insights>
</sport_event_insights>Enhanced Match Endpoints
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 7/21/2025 | We're excited to unveil the latest enhancements to our Soccer v4 Extended API , delivered via two new Extended match endpoints. What's New in Soccer v4 Extended API:
|
{
"generated_at": "2025-07-21T16:02:58+00:00",
"sport_event": {
"id": "sr:sport_event:56690913",
"start_time": "2025-07-16T23:30:00+00:00",
"start_time_confirmed": true,
"sport_event_context": {
"sport": {
"id": "sr:sport:1",
"name": "Soccer"
},
"category": {
"id": "sr:category:26",
"name": "USA",
"country_code": "USA"
},
"competition": {
"id": "sr:competition:242",
"name": "MLS",
"gender": "men"
},
"season": {
"id": "sr:season:127179",
"name": "MLS 2025",
"start_date": "2025-02-22",
"end_date": "2025-12-08",
"year": "2025",
"competition_id": "sr:competition:242"
},
"stage": {
"order": 1,
"type": "league",
"phase": "regular season",
"start_date": "2025-02-22",
"end_date": "2025-10-20",
"year": "2025"
},
"round": {},
"groups": [
{
"id": "sr:league:89897",
"name": "MLS 2025"
},
{
"id": "sr:league:89899",
"name": "MLS 2025, Eastern Conference",
"group_name": "Eastern Conference"
}
]
},
"coverage": {
"type": "sport_event",
"sport_event_properties": {
"lineups": true,
"formations": false,
"venue": true,
"extended_play_by_play": true,
"extended_player_stats": true,
"extended_team_stats": true,
"lineups_availability": "pre",
"ballspotting": true,
"commentary": true,
"fun_facts": true,
"goal_scorers": true,
"goal_scorers_live": true,
"scores": "live",
"game_clock": true,
"deeper_play_by_play": true,
"deeper_player_stats": true,
"deeper_team_stats": true,
"basic_play_by_play": true,
"basic_player_stats": true,
"basic_team_stats": true
}
},
"competitors": [
{
"id": "sr:competitor:39833",
"name": "Philadelphia Union",
"country": "USA",
"country_code": "USA",
"abbreviation": "PHI",
"qualifier": "home",
"gender": "male"
},
{
"id": "sr:competitor:22006",
"name": "CF Montreal",
"country": "Canada",
"country_code": "CAN",
"abbreviation": "MON",
"qualifier": "away",
"gender": "male"
}
],
"venue": {
"id": "sr:venue:2301",
"name": "Subaru Park",
"capacity": 18500,
"city_name": "Chester, PA",
"country_name": "USA",
"map_coordinates": "39.832794, -75.378479",
"country_code": "USA",
"timezone": "America/New_York"
},
"channels": [
{
"name": "Apple TV",
"country": "United States",
"country_code": "USA"
}
],
"sport_event_conditions": {
"referees": [
{
"id": "sr:referee:1560328",
"name": "Gonzales Jr, Guido",
"nationality": "USA",
"country_code": "USA",
"type": "main_referee"
},
{
"id": "sr:referee:1795382",
"name": "Heatherly, Walter",
"nationality": "USA",
"country_code": "USA",
"type": "first_assistant_referee"
},
{
"id": "sr:referee:932432",
"name": "Howard, Justin",
"nationality": "USA",
"country_code": "USA",
"type": "second_assistant_referee"
},
{
"id": "sr:referee:316018",
"name": "Bazakos, Fotis",
"nationality": "USA",
"country_code": "USA",
"type": "fourth_official"
},
{
"id": "sr:referee:316120",
"name": "Stoica, Sorin",
"nationality": "USA",
"country_code": "USA",
"type": "video_assistant_referee"
}
],
"attendance": {
"count": 16001
},
"weather": {
"pitch_conditions": "good",
"overall_conditions": "good"
},
"ground": {
"neutral": false
},
"lineups": {
"confirmed": true
}
}
},
"sport_event_status": {
"status": "closed",
"home_score": 2,
"away_score": 1,
"winner_id": "sr:competitor:39833",
"period_scores": [
{
"home_score": 1,
"away_score": 1,
"type": "regular_period",
"number": 1
},
{
"home_score": 1,
"away_score": 0,
"type": "regular_period",
"number": 2
}
],
"match_status": "ended",
"ball_locations": [
{
"order": 4,
"x": 74,
"y": 46,
"qualifier": "home"
},
{
"order": 3,
"x": 91,
"y": 54,
"qualifier": "home"
},
{
"order": 2,
"x": 91,
"y": 33,
"qualifier": "home"
},
{
"order": 1,
"x": 63,
"y": 19,
"qualifier": "home"
}
],
"match_situation": {
"status": "attack",
"qualifier": "home",
"updated_at": "2025-07-18T01:30:29+00:00"
}
},
"timeline": [
{
"id": 2582755,
"type": "match_started",
"time": "2025-07-16T23:40:08+00:00",
"period": 1,
"period_type": "regular_period"
},
{
"id": 2582756,
"type": "period_start",
"time": "2025-07-16T23:40:08+00:00",
"period": 1,
"period_type": "regular_period",
"period_name": "regular_period"
},
{
"id": 2582785,
"type": "pass",
"time": "2025-07-16T23:40:44+00:00",
"competitor": "home",
"x": 58,
"y": 63,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:992939",
"name": "Baribo, Tai",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:150582",
"name": "Glesnes, Jakob",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 73,
"destination_y": 59,
"outcome": "complete"
},
{
"id": 2582791,
"type": "pass",
"time": "2025-07-16T23:40:44+00:00",
"match_time": 1,
"match_clock": "00:04",
"competitor": "home",
"x": 73,
"y": 59,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:150582",
"name": "Glesnes, Jakob",
"type": "passer",
"competitor_id": "sr:competitor:39833"
}
],
"action_type": "long",
"outcome": "incomplete"
},
{
"id": 2582804,
"type": "pass",
"time": "2025-07-16T23:40:56+00:00",
"match_time": 1,
"match_clock": "00:13",
"competitor": "home",
"x": 22,
"y": 33,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:1546081",
"name": "Jean-Jacques, Danley",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:1766637",
"name": "Harriel, Nathan",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 12,
"destination_y": 8,
"outcome": "complete"
},
{
"id": 2582813,
"type": "pass",
"time": "2025-07-16T23:41:02+00:00",
"match_time": 1,
"match_clock": "00:17",
"competitor": "home",
"x": 12,
"y": 8,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:1766637",
"name": "Harriel, Nathan",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:2138948",
"name": "Sullivan, Quinn",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 25,
"destination_y": 5,
"outcome": "complete"
},
{
"id": 2582819,
"type": "pass",
"time": "2025-07-16T23:41:06+00:00",
"match_time": 1,
"match_clock": "00:23",
"competitor": "home",
"x": 25,
"y": 5,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2138948",
"name": "Sullivan, Quinn",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:2043833",
"name": "Lukic, Jovan",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 27,
"destination_y": 37,
"outcome": "complete"
},
{
"id": 2582825,
"type": "shot_off_target",
"time": "2025-07-16T23:41:06+00:00",
"match_time": 1,
"match_clock": "00:28",
"competitor": "home",
"x": 75,
"y": 42,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2043833",
"name": "Lukic, Jovan",
"type": "shot_taker",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:2138948",
"name": "Sullivan, Quinn",
"type": "assist"
}
],
"body_type": "left_foot",
"outcome": "off_target",
"xg_value": 0.12,
"goalface_x": -105,
"goalface_y": 343,
"in_penalty_area": false
},
{
"id": 2582840,
"type": "pass",
"time": "2025-07-16T23:41:16+00:00",
"match_time": 1,
"match_clock": "00:34",
"competitor": "home",
"x": 55,
"y": 80,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:803608",
"name": "Wagner, Kai",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:2463273",
"name": "Makhanya, Olwethu",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 72,
"destination_y": 61,
"outcome": "complete"
},
{
"id": 2582843,
"type": "pass",
"time": "2025-07-16T23:41:19+00:00",
"match_time": 1,
"match_clock": "00:38",
"competitor": "home",
"x": 72,
"y": 61,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2463273",
"name": "Makhanya, Olwethu",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:803608",
"name": "Wagner, Kai",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 69,
"destination_y": 73,
"outcome": "complete"
},
{
"id": 2582850,
"type": "pass",
"time": "2025-07-16T23:41:21+00:00",
"match_time": 1,
"match_clock": "00:40",
"competitor": "home",
"x": 69,
"y": 73,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:803608",
"name": "Wagner, Kai",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:2043833",
"name": "Lukic, Jovan",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 58,
"destination_y": 75,
"outcome": "complete"
},
{
"id": 2582853,
"type": "pass",
"time": "2025-07-16T23:41:20+00:00",
"match_time": 1,
"match_clock": "00:42",
"competitor": "home",
"x": 58,
"y": 75,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2043833",
"name": "Lukic, Jovan",
"type": "passer",
"competitor_id": "sr:competitor:39833"
}
],
"action_type": "regular",
"outcome": "complete"
},
{
"id": 2582866,
"type": "foul",
"time": "2025-07-16T23:41:28+00:00",
"match_time": 1,
"match_clock": "00:49",
"competitor": "away",
"x": 58,
"y": 42,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2212330",
"name": "Loturi, Victor",
"type": "fouler",
"competitor_id": "sr:competitor:22006"
},
{
"id": "sr:player:2043833",
"name": "Lukic, Jovan",
"type": "fouled",
"competitor_id": "sr:competitor:39833"
}
]
},
{
"id": 2582816,
"type": "free_kick",
"time": "2025-07-16T23:40:59+00:00",
"match_time": 1,
"match_clock": "00:50",
"competitor": "home",
"x": 43,
"y": 71,
"period": 1,
"period_type": "regular_period"
},
{
"id": 2582914,
"type": "pass",
"time": "2025-07-16T23:42:05+00:00",
"match_time": 2,
"match_clock": "01:27",
"competitor": "home",
"x": 59,
"y": 77,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:803608",
"name": "Wagner, Kai",
"type": "passer",
"competitor_id": "sr:competitor:39833"
}
],
"action_type": "long",
"outcome": "incomplete"
},
{
"id": 2582928,
"type": "pass",
"time": "2025-07-16T23:42:20+00:00",
"match_time": 2,
"match_clock": "01:36",
"competitor": "away",
"x": 6,
"y": 42,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:1101097",
"name": "Breza, Sebastian",
"type": "passer",
"competitor_id": "sr:competitor:22006"
},
{
"id": "sr:player:1997703",
"name": "Waterman, Joel",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 11,
"destination_y": 92,
"outcome": "complete"
},
{
"id": 2582934,
"type": "pass",
"time": "2025-07-16T23:42:19+00:00",
"match_time": 2,
"match_clock": "01:41",
"competitor": "away",
"x": 11,
"y": 92,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:1997703",
"name": "Waterman, Joel",
"type": "passer",
"competitor_id": "sr:competitor:22006"
}
],
"action_type": "long",
"outcome": "incomplete"
},
{
"id": 2582957,
"type": "pass",
"time": "2025-07-16T23:42:34+00:00",
"match_time": 2,
"match_clock": "01:57",
"competitor": "home",
"x": 24,
"y": 91,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:803608",
"name": "Wagner, Kai",
"type": "passer",
"competitor_id": "sr:competitor:39833"
}
],
"action_type": "regular",
"outcome": "incomplete"
},
{
"id": 2582930,
"type": "throw_in",
"time": "2025-07-16T23:42:18+00:00",
"match_time": 3,
"match_clock": "02:09",
"competitor": "away",
"x": 65,
"y": 100,
"period": 1,
"period_type": "regular_period"
},
{
"id": 2582990,
"type": "pass",
"time": "2025-07-16T23:42:59+00:00",
"match_time": 3,
"match_clock": "02:21",
"competitor": "away",
"x": 24,
"y": 88,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2242501",
"name": "Bugaj, Dawid",
"type": "passer",
"competitor_id": "sr:competitor:22006"
}
],
"action_type": "regular",
"outcome": "incomplete"
},
{
"id": 2582993,
"type": "interception",
"time": "2025-07-16T23:43:03+00:00",
"match_time": 3,
"match_clock": "02:23",
"competitor": "home",
"x": 58,
"y": 92,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:803608",
"name": "Wagner, Kai",
"competitor_id": "sr:competitor:39833"
}
]
},
{
"id": 2582995,
"type": "pass",
"time": "2025-07-16T23:43:03+00:00",
"match_time": 3,
"match_clock": "02:24",
"competitor": "home",
"x": 44,
"y": 91,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:803608",
"name": "Wagner, Kai",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:150582",
"name": "Glesnes, Jakob",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 57,
"destination_y": 92,
"outcome": "complete"
},
{
"id": 2582966,
"type": "throw_in",
"time": "2025-07-16T23:42:39+00:00",
"match_time": 3,
"match_clock": "02:30",
"competitor": "home",
"x": 38,
"y": 100,
"period": 1,
"period_type": "regular_period"
},
{
"id": 2583026,
"type": "pass",
"time": "2025-07-16T23:43:17+00:00",
"match_time": 3,
"match_clock": "02:32",
"competitor": "home",
"x": 59,
"y": 88,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:803608",
"name": "Wagner, Kai",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:2463273",
"name": "Makhanya, Olwethu",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 73,
"destination_y": 74,
"outcome": "complete"
},
{
"id": 2583029,
"type": "pass",
"time": "2025-07-16T23:43:23+00:00",
"match_time": 3,
"match_clock": "02:38",
"competitor": "home",
"x": 73,
"y": 74,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2463273",
"name": "Makhanya, Olwethu",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:150582",
"name": "Glesnes, Jakob",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 77,
"destination_y": 28,
"outcome": "complete"
},
{
"id": 2583034,
"type": "pass",
"time": "2025-07-16T23:43:29+00:00",
"match_time": 3,
"match_clock": "02:42",
"competitor": "home",
"x": 77,
"y": 28,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:150582",
"name": "Glesnes, Jakob",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:2463273",
"name": "Makhanya, Olwethu",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 88,
"destination_y": 75,
"outcome": "complete"
},
{
"id": 2583043,
"type": "pass",
"time": "2025-07-16T23:43:29+00:00",
"match_time": 3,
"match_clock": "02:49",
"competitor": "home",
"x": 92,
"y": 59,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:331411",
"name": "Blake, Andre",
"type": "passer",
"competitor_id": "sr:competitor:39833"
}
],
"action_type": "regular",
"outcome": "complete"
},
{
"id": 2583042,
"type": "pass",
"time": "2025-07-16T23:43:36+00:00",
"match_time": 3,
"match_clock": "02:51",
"competitor": "home",
"x": 88,
"y": 75,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2463273",
"name": "Makhanya, Olwethu",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:331411",
"name": "Blake, Andre",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 93,
"destination_y": 61,
"outcome": "complete"
},
{
"id": 2583048,
"type": "pass",
"time": "2025-07-16T23:43:40+00:00",
"match_time": 3,
"match_clock": "02:58",
"competitor": "home",
"x": 93,
"y": 61,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:331411",
"name": "Blake, Andre",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:2184806",
"name": "Damiani, Bruno",
"type": "receiver"
}
],
"action_type": "long",
"destination_x": 26,
"destination_y": 77,
"outcome": "complete"
},
{
"id": 2583050,
"type": "pass",
"time": "2025-07-16T23:43:40+00:00",
"match_time": 4,
"match_clock": "03:02",
"competitor": "home",
"x": 26,
"y": 77,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2184806",
"name": "Damiani, Bruno",
"type": "passer",
"competitor_id": "sr:competitor:39833"
}
],
"action_type": "regular",
"outcome": "incomplete"
},
{
"id": 2583062,
"type": "pass",
"time": "2025-07-16T23:43:46+00:00",
"match_time": 4,
"match_clock": "03:08",
"competitor": "away",
"x": 24,
"y": 11,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2138950",
"name": "Craig, Brandan",
"type": "passer",
"competitor_id": "sr:competitor:22006"
}
],
"action_type": "long",
"outcome": "incomplete"
},
{
"id": 2583064,
"type": "pass",
"time": "2025-07-16T23:43:50+00:00",
"match_time": 4,
"match_clock": "03:10",
"competitor": "home",
"x": 42,
"y": 29,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:150582",
"name": "Glesnes, Jakob",
"type": "passer",
"competitor_id": "sr:competitor:39833"
},
{
"id": "sr:player:2043833",
"name": "Lukic, Jovan",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 43,
"destination_y": 42,
"outcome": "complete"
},
{
"id": 2585699,
"type": "pass",
"time": "2025-07-16T23:43:50+00:00",
"match_time": 4,
"match_clock": "03:12",
"competitor": "home",
"x": 43,
"y": 42,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:2043833",
"name": "Lukic, Jovan",
"type": "passer",
"competitor_id": "sr:competitor:39833"
}
],
"action_type": "regular",
"outcome": "incomplete"
},
{
"id": 2585704,
"type": "pass",
"time": "2025-07-16T23:43:56+00:00",
"match_time": 4,
"match_clock": "03:14",
"competitor": "away",
"x": 38,
"y": 32,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:169375",
"name": "Herbers, Fabian",
"type": "passer",
"competitor_id": "sr:competitor:22006"
},
{
"id": "sr:player:1711223",
"name": "Sealy, Dante",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 62,
"destination_y": 69,
"outcome": "complete"
},
{
"id": 2585707,
"type": "pass",
"time": "2025-07-16T23:44:01+00:00",
"match_time": 4,
"match_clock": "03:17",
"competitor": "away",
"x": 62,
"y": 69,
"period": 1,
"period_type": "regular_period",
"players": [
{
"id": "sr:player:1711223",
"name": "Sealy, Dante",
"type": "passer",
"competitor_id": "sr:competitor:22006"
},
{
"id": "sr:player:2511691",
"name": "Synchuk, Hennadii",
"type": "receiver"
}
],
"action_type": "regular",
"destination_x": 87,
"destination_y": 62,
"outcome": "complete"
}
]
} <sport_event id="sr:sport_event:57490685" start_time="2025-07-13T19:00:00+00:00" start_time_confirmed="true">
<sport_event_context>
<sport id="sr:sport:1" name="Soccer"/>
<category id="sr:category:393" name="International Clubs"/>
<competition id="sr:competition:357" name="FIFA Club World Cup" gender="men"/>
<season id="sr:season:126393" name="FIFA Club World Cup 2025" start_date="2025-06-01" end_date="2025-07-13" year="2025" competition_id="sr:competition:357"/>
<stage order="3" type="cup" phase="playoffs" start_date="2025-06-28" end_date="2025-07-13" year="2025"/>
<round name="final" cup_round_sport_event_number="1" cup_round_number_of_sport_events="1" cup_round_id="sr:cup_round:2306509"/>
<groups>
<group id="sr:cup:175667" name="FIFA Club World Cup 2025, Playoffs"/>
</groups>
</sport_event_context>
<coverage type="sport_event">
<sport_event_properties lineups="true" formations="false" venue="true" extended_play_by_play="false" extended_player_stats="false" extended_team_stats="false" lineups_availability="pre" ballspotting="true" commentary="true" fun_facts="true" goal_scorers="true" goal_scorers_live="true" scores="live" game_clock="true" deeper_play_by_play="true" deeper_player_stats="true" deeper_team_stats="true" basic_play_by_play="true" basic_player_stats="true" basic_team_stats="true"/>
</coverage>
<competitors>
<competitor id="sr:competitor:38" name="Chelsea FC" country="England" country_code="ENG" abbreviation="CHE" qualifier="home" gender="male"/>
<competitor id="sr:competitor:1644" name="Paris Saint-Germain" country="France" country_code="FRA" abbreviation="PSG" qualifier="away" gender="male"/>
</competitors>
<venue id="sr:venue:1981" name="MetLife Stadium" capacity="82566" city_name="East Rutherford" country_name="USA" map_coordinates="40.8135,-74.0745" country_code="USA" timezone="America/New_York"/>
<sport_event_conditions>
<referees>
<referee id="sr:referee:144373" name="Faghani, Alireza" nationality="Australia" country_code="AUS" type="main_referee"/>
</referees>
<attendance count="81118"/>
<weather pitch_conditions="good" overall_conditions="good"/>
<ground neutral="true"/>
<lineups confirmed="true"/>
</sport_event_conditions>
</sport_event>
<sport_event_status status="closed" match_status="ended" home_score="3" away_score="0" winner_id="sr:competitor:38">
<period_scores>
<period_score home_score="3" away_score="0" type="regular_period" number="1"/>
<period_score home_score="0" away_score="0" type="regular_period" number="2"/>
</period_scores>
<ball_locations>
<ball_location order="4" x="38" y="61" qualifier="home"/>
<ball_location order="3" x="39" y="31" qualifier="home"/>
<ball_location order="2" x="39" y="31" qualifier="away"/>
<ball_location order="1" x="38" y="71" qualifier="away"/>
</ball_locations>
<match_situation status="safe" qualifier="home" updated_at="2025-07-13T21:13:38+00:00"/>
</sport_event_status>
<statistics>
<totals>
<competitors>
<competitor id="sr:competitor:38" name="Chelsea FC" abbreviation="CHE">
<statistics braces="1" cards_given="8" cards_red="0" cards_second_yellow="0" cards_yellow="8" corners="6" crosses="10" crosses_claimed="0" crosses_excluding_corners="4" crosses_successful="3" crosses_successful_excluding_corners="0" defensive_blocks="0" dribbles="7" dribbles_successful="2" dribbles_successful_percentage="28.57" dribbles_unsuccessful="5" duels_air="0" duels_air_won="0" four_goals_or_more="1" free_kicks="12" free_kicks_scored="0" goal_kicks="6" goals_counter_attack="0" goals_excluding_penalties="6" goals_from_header="0" goals_inside_box="6" goals_left_footed="2" goals_lower_center="0" goals_lower_left="2" goals_lower_right="0" goals_open_play="0" goals_outside_box="0" goals_right_footed="1" goals_scored="6" goals_set_piece="0" goals_top_center="0" goals_top_left="0" goals_top_right="1" hat_tricks="1" interceptions="5" interceptions_defensive_third="5" interceptions_final_third="0" interceptions_inside_box="0" interceptions_middle_third="0" interceptions_opposition_half="0" interceptions_own_half="5" offsides="6" passes="287" passes_backward="0" passes_backward_successful="0" passes_center="0" passes_forward="0" passes_forward_successful="0" passes_in_final_third="0" passes_into_box="0" passes_left="0" passes_opponent_half="0" passes_own_half="0" passes_right="0" passes_successful="238" passes_unsuccessful="49" penalties_scored="0" possessions_regained_in_defensive_third="10" possessions_regained_in_final_third="0" possessions_regained_in_middle_third="1" possessions_regained_in_opponent_half="0" possessions_regained_in_own_half="11" saves="0" saves_diving="0" saves_inside_box="0" saves_lower_center="0" saves_lower_left="0" saves_lower_right="0" saves_outside_box="0" saves_top_center="0" saves_top_left="0" saves_top_right="0" shots="18" shots_blocked="0" shots_center="0" shots_counter_attack="0" shots_direct_free_kicks="0" shots_excluding_blocks="18" shots_faced="11" shots_headed="0" shots_headed_off_target="0" shots_headed_on_target="0" shots_headed_woodwork="0" shots_hit_woodwork="0" shots_inside_box_center="0" shots_inside_box_left="2" shots_inside_box_right="2" shots_left="2" shots_left_footed="6" shots_left_footed_off_target="4" shots_left_footed_on_target="2" shots_missed_high="2" shots_missed_left="3" shots_missed_right="1" shots_off_target="7" shots_off_target_inside_box="3" shots_off_target_outside_box="1" shots_on_target="10" shots_on_target_inside_box="4" shots_on_target_lower_center="0" shots_on_target_lower_left="2" shots_on_target_lower_right="1" shots_on_target_outside_box="1" shots_on_target_top_center="0" shots_on_target_top_left="0" shots_on_target_top_right="2" shots_open_play="0" shots_outside_box_center="0" shots_outside_box_left="0" shots_outside_box_right="1" shots_right="3" shots_right_footed="3" shots_right_footed_off_target="0" shots_right_footed_on_target="3" shots_set_piece="0" tackles="6" tackles_defensive_third_successful="5" tackles_final_third_successful="0" tackles_middle_third_successful="1" tackles_opponent_half="0" tackles_opponent_half_successful="0" tackles_own_half="6" tackles_own_half_successful="6" tackles_successful="6" throw_ins="15"/>
<players>
<player id="sr:player:769333" name="Nkunku, Christopher" starter="false">
<statistics braces="0" cards_given="0" cards_red="0" cards_second_yellow="0" cards_yellow="0" corners="0" crosses="0" crosses_claimed="0" crosses_excluding_corners="0" crosses_successful="0" crosses_successful_excluding_corners="0" defensive_blocks="0" dribbles="0" dribbles_successful="0" dribbles_unsuccessful="0" duels_air="0" duels_air_won="0" four_goals_or_more="0" free_kicks="0" free_kicks_scored="0" goal_kicks="0" goals_counter_attack="0" goals_excluding_penalties="0" goals_from_header="0" goals_inside_box="0" goals_left_footed="0" goals_lower_center="0" goals_lower_left="0" goals_lower_right="0" goals_open_play="0" goals_outside_box="0" goals_right_footed="0" goals_scored="0" goals_set_piece="0" goals_top_center="0" goals_top_left="0" goals_top_right="0" hat_tricks="0" interceptions="0" interceptions_defensive_third="0" interceptions_final_third="0" interceptions_inside_box="0" interceptions_middle_third="0" interceptions_opposition_half="0" interceptions_own_half="0" offsides="0" passes="6" passes_backward="0" passes_backward_successful="0" passes_center="0" passes_forward="0" passes_forward_successful="0" passes_in_final_third="0" passes_into_box="0" passes_left="0" passes_opponent_half="0" passes_own_half="0" passes_right="0" passes_successful="5" passes_unsuccessful="1" penalties_scored="0" possessions_regained_in_defensive_third="0" possessions_regained_in_final_third="0" possessions_regained_in_middle_third="0" possessions_regained_in_opponent_half="0" possessions_regained_in_own_half="0" saves="0" saves_diving="0" shots="0" shots_blocked="0" shots_center="0" shots_counter_attack="0" shots_direct_free_kicks="0" shots_excluding_blocks="0" shots_faced="0" shots_headed="0" shots_headed_off_target="0" shots_headed_on_target="0" shots_headed_woodwork="0" shots_hit_woodwork="0" shots_inside_box_center="0" shots_inside_box_left="0" shots_inside_box_right="0" shots_left="0" shots_left_footed="0" shots_left_footed_off_target="0" shots_left_footed_on_target="0" shots_missed_high="0" shots_missed_left="0" shots_missed_right="0" shots_off_target="0" shots_off_target_inside_box="0" shots_off_target_outside_box="0" shots_on_target="0" shots_on_target_inside_box="0" shots_on_target_lower_center="0" shots_on_target_lower_left="0" shots_on_target_lower_right="0" shots_on_target_outside_box="0" shots_on_target_top_center="0" shots_on_target_top_left="0" shots_on_target_top_right="0" shots_open_play="0" shots_outside_box_center="0" shots_outside_box_left="0" shots_outside_box_right="0" shots_right="0" shots_right_footed="0" shots_right_footed_off_target="0" shots_right_footed_on_target="0" shots_set_piece="0" tackles="0" tackles_defensive_third_successful="0" tackles_final_third_successful="0" tackles_middle_third_successful="0" tackles_opponent_half="0" tackles_opponent_half_successful="0" tackles_own_half="0" tackles_own_half_successful="0" tackles_successful="0" throw_ins="0"/>
</player>Seasonal Statistics
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 3/25/2025 | Seasonal Competitor Statistics | We've added four (4) statistics at the season level, available in the Soccer Extended package. View all team and player seasonal stats available here .
|
<season id="sr:season:118689" name="Premier League 24/25" start_date="2024-08-16" end_date="2025-05-25" year="24/25" competition_id="sr:competition:17">
<sport id="sr:sport:1" name="Soccer"/>
</season>
<competitor id="sr:competitor:48" name="Everton FC" country="England" country_code="ENG" abbreviation="EVE" gender="male">
<statistics average_ball_possession="40.48" cards_given="61" chances_created="200" clearances="1057" corner_kicks="121" crosses_successful="137" crosses_total="583" crosses_unsuccessful="446" defensive_blocks="148" diving_saves="25" dribbles="110" free_kicks="340" goals_by_foot="25" goals_by_head="4" goals_conceded="36" goals_conceded_first_half="12" goals_conceded_second_half="24" goals_scored="32" goals_scored_first_half="20" goals_scored_second_half="12" interceptions="135" long_passes_successful="417" long_passes_total="1129" long_passes_unsuccessful="712" loss_of_possession="787" matches_played="29" offsides="66" passes_successful="7515" passes_total="8551" passes_unsuccessful="1036" red_cards="1" shots_blocked="78" shots_off_target="114" shots_on_bar="2" shots_on_post="2" shots_on_target="113" shots_total="305" tackles_successful="278" tackles_total="336" tackles_unsuccessful="58" was_fouled="286" yellow_cards="59" yellow_red_cards="1"/>
<players>
<player id="sr:player:10589" name="Young, Ashley">
<statistics assists="3" cards_given="7" chances_created="13" clean_sheets="26" clearances="81" corner_kicks="12" crosses_successful="9" crosses_total="68" defensive_blocks="9" dribbles_completed="2" fouls_committed="7" fouls_won="4" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="1" interceptions="11" long_passes_successful="29" long_passes_total="81" long_passes_unsuccessful="52" loss_of_possession="13" matches_played="25" minutes_played="1555" own_goals="0" passes_successful="503" passes_total="586" passes_unsuccessful="83" penalties_missed="0" red_cards="1" shots_blocked="3" shots_faced="0" shots_on_target="3" substituted_in="8" substituted_out="4" tackles_successful="21" tackles_total="27" yellow_cards="6" yellow_red_cards="0"/>
</player>
<player id="sr:player:76632" name="Coleman, Seamus">
<statistics assists="0" cards_given="1" chances_created="0" clean_sheets="2" clearances="10" crosses_successful="0" crosses_total="3" defensive_blocks="4" dribbles_completed="1" fouls_committed="0" fouls_won="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="3" long_passes_total="5" long_passes_unsuccessful="2" loss_of_possession="4" matches_played="3" minutes_played="197" offsides="1" own_goals="0" passes_successful="49" passes_total="60" passes_unsuccessful="11" penalties_missed="0" red_cards="0" shots_faced="0" shots_on_target="1" substituted_in="1" substituted_out="1" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:96535" name="Doucoure, Abdoulaye">
<statistics assists="2" cards_given="3" chances_created="20" clean_sheets="18" clearances="12" crosses_successful="2" crosses_total="20" defensive_blocks="11" dribbles_completed="4" fouls_committed="14" fouls_won="2" goals_by_head="1" goals_by_penalty="0" goals_conceded="0" goals_scored="2" interceptions="8" long_passes_successful="0" long_passes_total="7" long_passes_unsuccessful="7" loss_of_possession="59" matches_played="25" minutes_played="1993" offsides="8" own_goals="0" passes_successful="531" passes_total="613" passes_unsuccessful="82" penalties_missed="0" red_cards="0" shots_blocked="8" shots_faced="0" shots_off_target="6" shots_on_target="6" substituted_in="1" substituted_out="11" tackles_successful="13" tackles_total="18" yellow_cards="2" yellow_red_cards="1"/>
</player>{
"generated_at": "2025-03-24T08:31:12+00:00",
"season": {
"id": "sr:season:118689",
"name": "Premier League 24/25",
"start_date": "2024-08-16",
"end_date": "2025-05-25",
"year": "24/25",
"competition_id": "sr:competition:17",
"sport": {
"id": "sr:sport:1",
"name": "Soccer"
}
},
"competitor": {
"id": "sr:competitor:48",
"name": "Everton FC",
"country": "England",
"country_code": "ENG",
"abbreviation": "EVE",
"gender": "male",
"statistics": {
"average_ball_possession": 40.48,
"cards_given": 61,
"chances_created": 200,
"clearances": 1057,
"corner_kicks": 121,
"crosses_successful": 137,
"crosses_total": 583,
"crosses_unsuccessful": 446,
"defensive_blocks": 148,
"diving_saves": 25,
"dribbles": 110,
"free_kicks": 340,
"goals_by_foot": 25,
"goals_by_head": 4,
"goals_conceded": 36,
"goals_conceded_first_half": 12,
"goals_conceded_second_half": 24,
"goals_scored": 32,
"goals_scored_first_half": 20,
"goals_scored_second_half": 12,
"interceptions": 135,
"long_passes_successful": 417,
"long_passes_total": 1129,
"long_passes_unsuccessful": 712,
"loss_of_possession": 787,
"matches_played": 29,
"offsides": 66,
"passes_successful": 7515,
"passes_total": 8551,
"passes_unsuccessful": 1036,
"red_cards": 1,
"shots_blocked": 78,
"shots_off_target": 114,
"shots_on_bar": 2,
"shots_on_post": 2,
"shots_on_target": 113,
"shots_total": 305,
"tackles_successful": 278,
"tackles_total": 336,
"tackles_unsuccessful": 58,
"was_fouled": 286,
"yellow_cards": 59,
"yellow_red_cards": 1
},
"players": [
{
"id": "sr:player:10589",
"name": "Young, Ashley",
"statistics": {
"assists": 3,
"cards_given": 7,
"chances_created": 13,
"clean_sheets": 26,
"clearances": 81,
"corner_kicks": 12,
"crosses_successful": 9,
"crosses_total": 68,
"defensive_blocks": 9,
"dribbles_completed": 2,
"fouls_committed": 7,
"fouls_won": 4,
"goals_by_head": 0,
"goals_by_penalty": 0,
"goals_conceded": 0,
"goals_scored": 1,
"interceptions": 11,
"long_passes_successful": 29,
"long_passes_total": 81,
"long_passes_unsuccessful": 52,
"loss_of_possession": 13,
"matches_played": 25,
"minutes_played": 1555,
"own_goals": 0,
"passes_successful": 503,
"passes_total": 586,
"passes_unsuccessful": 83,
"penalties_missed": 0,
"red_cards": 1,
"shots_blocked": 3,
"shots_faced": 0,
"shots_on_target": 3,
"substituted_in": 8,
"substituted_out": 4,
"tackles_successful": 21,
"tackles_total": 27,
"yellow_cards": 6,
"yellow_red_cards": 0
}
},
{
"id": "sr:player:76632",
"name": "Coleman, Seamus",
"statistics": {
"assists": 0,
"cards_given": 1,
"chances_created": 0,
"clean_sheets": 2,
"clearances": 10,
"crosses_successful": 0,
"crosses_total": 3,
"defensive_blocks": 4,
"dribbles_completed": 1,
"fouls_committed": 0,
"fouls_won": 0,
"goals_by_head": 0,
"goals_by_penalty": 0,
"goals_conceded": 0,
"goals_scored": 0,
"interceptions": 0,
"long_passes_successful": 3,
"long_passes_total": 5,
"long_passes_unsuccessful": 2,
"loss_of_possession": 4,
"matches_played": 3,
"minutes_played": 197,
"offsides": 1,
"own_goals": 0,
"passes_successful": 49,
"passes_total": 60,
"passes_unsuccessful": 11,
"penalties_missed": 0,
"red_cards": 0,
"shots_faced": 0,
"shots_on_target": 1,
"substituted_in": 1,
"substituted_out": 1,
"yellow_cards": 1,
"yellow_red_cards": 0
}
},
{
"id": "sr:player:96535",
"name": "Doucoure, Abdoulaye",
"statistics": {
"assists": 2,
"cards_given": 3,
"chances_created": 20,
"clean_sheets": 18,
"clearances": 12,
"crosses_successful": 2,
"crosses_total": 20,
"defensive_blocks": 11,
"dribbles_completed": 4,
"fouls_committed": 14,
"fouls_won": 2,
"goals_by_head": 1,
"goals_by_penalty": 0,
"goals_conceded": 0,
"goals_scored": 2,
"interceptions": 8,
"long_passes_successful": 0,
"long_passes_total": 7,
"long_passes_unsuccessful": 7,
"loss_of_possession": 59,
"matches_played": 25,
"minutes_played": 1993,
"offsides": 8,
"own_goals": 0,
"passes_successful": 531,
"passes_total": 613,
"passes_unsuccessful": 82,
"penalties_missed": 0,
"red_cards": 0,
"shots_blocked": 8,
"shots_faced": 0,
"shots_off_target": 6,
"shots_on_target": 6,
"substituted_in": 1,
"substituted_out": 11,
"tackles_successful": 13,
"tackles_total": 18,
"yellow_cards": 2,
"yellow_red_cards": 1
}
},Formations Coverage Property
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 3/11/2025 | All "Summaries" Endpoints All "Sport Event" Endpoints All "Schedules" Endpoints Competitor vs Competitor League Timeline Season Info Season Lineups Season Probabilities Live Probabilities Timeline Probabilities | We've added a new boolean property to our Soccer APIs to signify when a match has team formation info available. Access this data point at the season (Season Info) or sport event (Summary, Timeline, etc) level. Note that there will be some competitions in which lineups (lineups="true) are available but not formations (formations="false").
|
<summary>
<sport_event id="sr:sport_event:51092345" start_time="2024-08-09T19:00:00+00:00" start_time_confirmed="true">
<sport_event_context>
<sport id="sr:sport:1" name="Soccer"/>
<category id="sr:category:1" name="England" country_code="ENG"/>
<competition id="sr:competition:24" name="League One" gender="men"/>
<season id="sr:season:118703" name="League One" start_date="2024-08-09" end_date="2025-05-03" year="24/25" competition_id="sr:competition:24"/>
<stage order="1" type="league" phase="regular season" start_date="2024-08-09" end_date="2025-05-03" year="24/25"/>
<round number="1"/>
<groups>
<group id="sr:league:84333" name="League One 24/25"/>
</groups>
</sport_event_context>
<coverage type="sport_event">
<sport_event_properties lineups="true" formations="false" venue="false" extended_player_stats="false" extended_team_stats="false" lineups_availability="post" ballspotting="false" commentary="false" fun_facts="true" goal_scorers="true" goal_scorers_live="false" scores="live" game_clock="true" deeper_play_by_play="false" deeper_player_stats="false" deeper_team_stats="false" basic_play_by_play="true" basic_player_stats="true" basic_team_stats="true"/>
</coverage>"summaries": [
{
"sport_event": {
"id": "sr:sport_event:51092345",
"start_time": "2024-08-09T19:00:00+00:00",
"start_time_confirmed": true,
"sport_event_context": {
"sport": {
"id": "sr:sport:1",
"name": "Soccer"
},
"category": {
"id": "sr:category:1",
"name": "England",
"country_code": "ENG"
},
"competition": {
"id": "sr:competition:24",
"name": "League One",
"gender": "men"
},
"season": {
"id": "sr:season:118703",
"name": "League One",
"start_date": "2024-08-09",
"end_date": "2025-05-03",
"year": "24/25",
"competition_id": "sr:competition:24"
},
"stage": {
"order": 1,
"type": "league",
"phase": "regular season",
"start_date": "2024-08-09",
"end_date": "2025-05-03",
"year": "24/25"
},
"round": {
"number": 1
},
"groups": [
{
"id": "sr:league:84333",
"name": "League One 24/25"
}
]
},
"coverage": {
"type": "sport_event",
"sport_event_properties": {
"lineups": true,
"formations": false,
"venue": false,
"extended_player_stats": false,
"extended_team_stats": false,
"lineups_availability": "post",
"ballspotting": false,
"commentary": false,
"fun_facts": true,
"goal_scorers": true,
"goal_scorers_live": false,
"scores": "live",
"game_clock": true,
"deeper_play_by_play": false,
"deeper_player_stats": false,
"deeper_team_stats": false,
"basic_play_by_play": true,
"basic_player_stats": true,
"basic_team_stats": true
}
},Live Goal Scorers Property
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 2/21/2025 | All "Summaries" Endpoints All "Sport Event" Endpoints Competitor vs Competitor League Timeline Season Info Season Lineups Season Probabilities Season Schedule Live Probabilities Timeline Probabilities | We've added a new boolean property to our Soccer APIs to signify when goal scorers are available in realtime. Access this data point at the season (Season Info) or sport event (Summary, Timeline, etc) level.
|
<season_info
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://schemas.sportradar.com/sportsapi/soccer/v4" generated_at="2025-02-20T14:31:12+00:00" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/soccer/v4 https://d1woxfzdkvuts1.cloudfront.net/bsa-7204/soccer/v4/schemas/season_info.xsd">
<coverage type="competition">
<competition_properties brackets="false" missing_players="false" player_transfer_history="false" schedules="true" season_player_statistics="true" season_stats_leaders="true" season_team_statistics="true" standings="live" team_squads="true"/>
<sport_event_properties basic_play_by_play="true" basic_player_stats="true" basic_team_stats="true" extended_player_stats="false" extended_team_stats="false" deeper_play_by_play="false" deeper_team_stats="false" deeper_player_stats="false" lineups="true" goal_scorers="true" goal_scorers_live="true" scores="live" assists="false"/>
</coverage>
<season id="sr:season:118717" name="3. Liga 24/25" start_date="2024-08-02" end_date="2025-05-17" year="24/25" competition_id="sr:competition:491">
<sport id="sr:sport:1" name="Soccer"/>
<category id="sr:category:30" name="Germany" country_code="DEU"/>
<competition id="sr:competition:491" name="3. Liga" gender="men"/>
</season>
<stages>
<stage order="1" type="league" phase="regular season" start_date="2024-08-02" end_date="2025-05-17" year="24/25">
<groups>
<group id="sr:league:84997" name="3. Liga" max_rounds="38">
<competitors>
<competitor id="sr:competitor:2566" name="Erzgebirge Aue" country="Germany" country_code="DEU" abbreviation="ERZ" gender="male"/>
<competitor id="sr:competitor:2595" name="Dynamo Dresden" country="Germany" country_code="DEU" abbreviation="SGD" gender="male"/>
<competitor id="sr:competitor:2522" name="VfB Stuttgart II" country="Germany" country_code="DEU" abbreviation="VFB" gender="male" age_group="U21"/>
<competitor id="sr:competitor:6157" name="SV Sandhausen" country="Germany" country_code="DEU" abbreviation="SVS" gender="male"/>
<competitor id="sr:competitor:2555" name="SpVgg Unterhaching" country="Germany" country_code="DEU" abbreviation="UHA" gender="male"/>
<competitor id="sr:competitor:2597" name="SV Wehen Wiesbaden" country="Germany" country_code="DEU" abbreviation="WEH" gender="male"/>
<competitor id="sr:competitor:5880" name="FC Ingolstadt 04" country="Germany" country_code="DEU" abbreviation="FCI" gender="male"/>
<competitor id="sr:competitor:2581" name="VfL 1899 Osnabruck" country="Germany" country_code="DEU" abbreviation="OSN" gender="male"/>
<competitor id="sr:competitor:2535" name="Borussia Dortmund II" country="Germany" country_code="DEU" abbreviation="BVB" gender="male" age_group="U23"/>
<competitor id="sr:competitor:2533" name="Hansa Rostock" country="Germany" country_code="DEU" abbreviation="HAN" gender="male"/>
<competitor id="sr:competitor:2554" name="1. FC Saarbrucken" country="Germany" country_code="DEU" abbreviation="FCS" gender="male"/>
<competitor id="sr:competitor:2540" name="Arminia Bielefeld" country="Germany" country_code="DEU" abbreviation="ARM" gender="male"/>
<competitor id="sr:competitor:2546" name="Alemannia Aachen" country="Germany" country_code="DEU" abbreviation="AAC" gender="male"/>
<competitor id="sr:competitor:2532" name="Energie Cottbus" country="Germany" country_code="DEU" abbreviation="COT" gender="male"/>
<competitor id="sr:competitor:2680" name="SV Waldhof Mannheim 07" country="Germany" country_code="DEU" abbreviation="WAM" gender="male"/>
<competitor id="sr:competitor:2536" name="TSV 1860 Munich" country="Germany" country_code="DEU" abbreviation="M60" gender="male"/>
<competitor id="sr:competitor:53365" name="FC Viktoria Cologne" country="Germany" country_code="DEU" abbreviation="VIK" gender="male"/>
<competitor id="sr:competitor:2593" name="SC Verl" country="Germany" country_code="DEU" abbreviation="SCV" gender="male"/>
<competitor id="sr:competitor:2562" name="Rot-Weiss Essen" abbreviation="RWE" gender="male"/>
<competitor id="sr:competitor:5801" name="Hannover 96 II" country="Germany" country_code="DEU" abbreviation="H96" gender="male" age_group="U23"/>
</competitors>
<coverage type="group">
<group_properties brackets="false" cup="false" league="true" missing_players="false" qualification="false" schedules="true" results="true" standings="live" group_stage="false"/>
<sport_event_properties basic_play_by_play="true" basic_player_stats="true" basic_team_stats="true" lineups="true" extended_player_stats="false" extended_team_stats="false" deeper_team_stats="false" deeper_player_stats="false" deeper_play_by_play="false" goal_scorers="true" scores="live"/>
</coverage>
</group>
</groups>
</stage>
</stages>
</season_info>Schedule Endpoints
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 12/18/2024 | Competitor Schedules Daily Schedules Live Schedules Player Schedules | We've added four Schedule endpoints to our Soccer v4 and Soccer Extended v4 APIs. Leverage these endpoints to retrieve scheduling info and high-level results by competitors, players, days, or live matches.
|
<?xml version="1.0" encoding="UTF-8"?>
<schedule_schedules
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" generated_at="2024-12-18T18:43:24+00:00"
xmlns="http://schemas.sportradar.com/sportsapi/soccer/v4" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/soccer/v4 https://schemas.sportradar.com/sportsapi/soccer/v4/schemas/schedule_schedules.xsd">
<schedule>
<sport_event id="sr:sport_event:46203263" start_time="2024-01-06T00:30:00+00:00" start_time_confirmed="true">
<sport_event_context>
<sport id="sr:sport:1" name="Soccer"/>
<category id="sr:category:13" name="Brazil" country_code="BRA"/>
<competition id="sr:competition:23517" name="U20 Copa Sao Paulo de Juniores" gender="men"/>
<season id="sr:season:113951" name="U20 Copa Sao Paulo de Juniores 2024" start_date="2024-01-02" end_date="2024-01-31" year="2024" competition_id="sr:competition:23517"/>
<stage order="1" type="league" phase="regular season" start_date="2024-01-02" end_date="2024-01-11" year="2024"/>
<round number="2"/>
<groups>
<group id="sr:league:80565" name="U20 Copa Sao Paulo de Juniores 2024, Group 5" group_name="5"/>
</groups>
</sport_event_context>
<coverage type="sport_event">
<sport_event_properties lineups="false" venue="false" extended_player_stats="false" extended_team_stats="false" ballspotting="false" commentary="false" fun_facts="false" goal_scorers="false" scores="post" game_clock="false" deeper_play_by_play="false" deeper_player_stats="false" deeper_team_stats="false" basic_play_by_play="false" basic_player_stats="false" basic_team_stats="false"/>
</coverage>
<competitors>
<competitor id="sr:competitor:268353" name="Rio Claro FC SP" country="Brazil" country_code="BRA" abbreviation="CLA" qualifier="home" gender="male" age_group="U20"/>
<competitor id="sr:competitor:210350" name="Botafogo FR RJ" country="Brazil" country_code="BRA" abbreviation="BOT" qualifier="away" gender="male" age_group="U20"/>
</competitors>
<channels>
<channel name="PFC HD - Hispasat 1B/1C/1D (30.0 W)" url="https://nostv.pt/guia/112" country="Portugal" country_code="PRT"/>
</channels>
<sport_event_conditions>
<ground neutral="false"/>
</sport_event_conditions>
</sport_event>
<sport_event_status status="closed" match_status="ended" home_score="1" away_score="2" winner_id="sr:competitor:210350">
<period_scores>
<period_score home_score="0" away_score="0" type="regular_period" number="1"/>
<period_score home_score="1" away_score="2" type="regular_period" number="2"/>
</period_scores>
</sport_event_status>
</schedule>
<schedule>
<sport_event id="sr:sport_event:46513461" start_time="2024-01-06T01:06:00+00:00" start_time_confirmed="true">
<sport_event_context>
<sport id="sr:sport:1" name="Soccer"/>
<category id="sr:category:12" name="Mexico" country_code="MEX"/>
<competition id="sr:competition:28955" name="Liga MX, Women, Clausura" parent_id="sr:competition:23441" gender="women"/>
<season id="sr:season:114105" name="Liga MX, Women, Clausura 2024" start_date="2024-01-05" end_date="2024-05-28" year="2024" competition_id="sr:competition:28955"/>
<stage order="1" type="league" phase="regular season" start_date="2024-01-05" end_date="2024-05-05" year="2024"/>
<round number="1"/>
<groups>
<group id="sr:league:80809" name="Liga MX, Women 2024, Clausura"/>
</groups>
</sport_event_context>
<coverage type="sport_event">
<sport_event_properties lineups="false" venue="false" extended_player_stats="false" extended_team_stats="false" ballspotting="false" commentary="false" fun_facts="false" goal_scorers="false" scores="post" game_clock="false" deeper_play_by_play="false" deeper_player_stats="false" deeper_team_stats="false" basic_play_by_play="false" basic_player_stats="false" basic_team_stats="false"/>
</coverage>
<competitors>
<competitor id="sr:competitor:334059" name="Mazatlan FC" country="Mexico" country_code="MEX" abbreviation="MAZ" qualifier="home" gender="female"/>
<competitor id="sr:competitor:334069" name="CF Pachuca" country="Mexico" country_code="MEX" abbreviation="PAC" qualifier="away" gender="female"/>
</competitors>
<sport_event_conditions>
<ground neutral="false"/>
</sport_event_conditions>
</sport_event>
<sport_event_status status="closed" match_status="ended" home_score="0" away_score="5" winner_id="sr:competitor:334069">
<period_scores>
<period_score home_score="0" away_score="2" type="regular_period" number="1"/>
<period_score home_score="0" away_score="3" type="regular_period" number="2"/>
</period_scores>
</sport_event_status>
</schedule>
<schedule>
<sport_event id="sr:sport_event:46513463" start_time="2024-01-06T03:00:00+00:00" start_time_confirmed="true">
<sport_event_context>
<sport id="sr:sport:1" name="Soccer"/>
<category id="sr:category:12" name="Mexico" country_code="MEX"/>
<competition id="sr:competition:28955" name="Liga MX, Women, Clausura" parent_id="sr:competition:23441" gender="women"/>
<season id="sr:season:114105" name="Liga MX, Women, Clausura 2024" start_date="2024-01-05" end_date="2024-05-28" year="2024" competition_id="sr:competition:28955"/>
<stage order="1" type="league" phase="regular season" start_date="2024-01-05" end_date="2024-05-05" year="2024"/>
<round number="1"/>
<groups>
<group id="sr:league:80809" name="Liga MX, Women 2024, Clausura"/>
</groups>
</sport_event_context>
<coverage type="sport_event">
<sport_event_properties lineups="false" venue="false" extended_player_stats="false" extended_team_stats="false" ballspotting="false" commentary="false" fun_facts="false" goal_scorers="false" scores="post" game_clock="false" deeper_play_by_play="false" deeper_player_stats="false" deeper_team_stats="false" basic_play_by_play="false" basic_player_stats="false" basic_team_stats="false"/>
</coverage>
<competitors>
<competitor id="sr:competitor:334061" name="CF Monterrey" country="Mexico" country_code="MEX" abbreviation="MON" qualifier="home" gender="female"/>
<competitor id="sr:competitor:458511" name="Club Puebla" country="Mexico" country_code="MEX" abbreviation="PUE" qualifier="away" gender="female"/>
</competitors>
<sport_event_conditions>
<ground neutral="false"/>
</sport_event_conditions>
</sport_event>
<sport_event_status status="closed" match_status="ended" home_score="1" away_score="0" winner_id="sr:competitor:334061">
<period_scores>
<period_score home_score="1" away_score="0" type="regular_period" number="1"/>
<period_score home_score="0" away_score="0" type="regular_period" number="2"/>
</period_scores>
</sport_event_status>
</schedule>
</schedule_schedules>
{
"generated_at": "2024-12-18T18:42:12+00:00",
"schedules": [
{
"sport_event": {
"id": "sr:sport_event:46203263",
"start_time": "2024-01-06T00:30:00+00:00",
"start_time_confirmed": true,
"sport_event_context": {
"sport": {
"id": "sr:sport:1",
"name": "Soccer"
},
"category": {
"id": "sr:category:13",
"name": "Brazil",
"country_code": "BRA"
},
"competition": {
"id": "sr:competition:23517",
"name": "U20 Copa Sao Paulo de Juniores",
"gender": "men"
},
"season": {
"id": "sr:season:113951",
"name": "U20 Copa Sao Paulo de Juniores 2024",
"start_date": "2024-01-02",
"end_date": "2024-01-31",
"year": "2024",
"competition_id": "sr:competition:23517"
},
"stage": {
"order": 1,
"type": "league",
"phase": "regular season",
"start_date": "2024-01-02",
"end_date": "2024-01-11",
"year": "2024"
},
"round": {
"number": 2
},
"groups": [
{
"id": "sr:league:80565",
"name": "U20 Copa Sao Paulo de Juniores 2024, Group 5",
"group_name": "5"
}
]
},
"coverage": {
"type": "sport_event",
"sport_event_properties": {
"lineups": false,
"venue": false,
"extended_player_stats": false,
"extended_team_stats": false,
"ballspotting": false,
"commentary": false,
"fun_facts": false,
"goal_scorers": false,
"scores": "post",
"game_clock": false,
"deeper_play_by_play": false,
"deeper_player_stats": false,
"deeper_team_stats": false,
"basic_play_by_play": false,
"basic_player_stats": false,
"basic_team_stats": false
}
},
"competitors": [
{
"id": "sr:competitor:268353",
"name": "Rio Claro FC SP",
"country": "Brazil",
"country_code": "BRA",
"abbreviation": "CLA",
"qualifier": "home",
"gender": "male",
"age_group": "U20"
},
{
"id": "sr:competitor:210350",
"name": "Botafogo FR RJ",
"country": "Brazil",
"country_code": "BRA",
"abbreviation": "BOT",
"qualifier": "away",
"gender": "male",
"age_group": "U20"
}
],
"channels": [
{
"name": "PFC HD - Hispasat 1B/1C/1D (30.0 W)",
"url": "https://nostv.pt/guia/112",
"country": "Portugal",
"country_code": "PRT"
}
],
"sport_event_conditions": {
"ground": {
"neutral": false
}
}
},
"sport_event_status": {
"status": "closed",
"match_status": "ended",
"home_score": 1,
"away_score": 2,
"winner_id": "sr:competitor:210350",
"period_scores": [
{
"home_score": 0,
"away_score": 0,
"type": "regular_period",
"number": 1
},
{
"home_score": 1,
"away_score": 2,
"type": "regular_period",
"number": 2
}
]
}
},
{
"sport_event": {
"id": "sr:sport_event:46513461",
"start_time": "2024-01-06T01:06:00+00:00",
"start_time_confirmed": true,
"sport_event_context": {
"sport": {
"id": "sr:sport:1",
"name": "Soccer"
},
"category": {
"id": "sr:category:12",
"name": "Mexico",
"country_code": "MEX"
},
"competition": {
"id": "sr:competition:28955",
"name": "Liga MX, Women, Clausura",
"parent_id": "sr:competition:23441",
"gender": "women"
},
"season": {
"id": "sr:season:114105",
"name": "Liga MX, Women, Clausura 2024",
"start_date": "2024-01-05",
"end_date": "2024-05-28",
"year": "2024",
"competition_id": "sr:competition:28955"
},
"stage": {
"order": 1,
"type": "league",
"phase": "regular season",
"start_date": "2024-01-05",
"end_date": "2024-05-05",
"year": "2024"
},
"round": {
"number": 1
},
"groups": [
{
"id": "sr:league:80809",
"name": "Liga MX, Women 2024, Clausura"
}
]
},
"coverage": {
"type": "sport_event",
"sport_event_properties": {
"lineups": false,
"venue": false,
"extended_player_stats": false,
"extended_team_stats": false,
"ballspotting": false,
"commentary": false,
"fun_facts": false,
"goal_scorers": false,
"scores": "post",
"game_clock": false,
"deeper_play_by_play": false,
"deeper_player_stats": false,
"deeper_team_stats": false,
"basic_play_by_play": false,
"basic_player_stats": false,
"basic_team_stats": false
}
},
"competitors": [
{
"id": "sr:competitor:334059",
"name": "Mazatlan FC",
"country": "Mexico",
"country_code": "MEX",
"abbreviation": "MAZ",
"qualifier": "home",
"gender": "female"
},
{
"id": "sr:competitor:334069",
"name": "CF Pachuca",
"country": "Mexico",
"country_code": "MEX",
"abbreviation": "PAC",
"qualifier": "away",
"gender": "female"
}
],
"sport_event_conditions": {
"ground": {
"neutral": false
}
}
},
"sport_event_status": {
"status": "closed",
"match_status": "ended",
"home_score": 0,
"away_score": 5,
"winner_id": "sr:competitor:334069",
"period_scores": [
{
"home_score": 0,
"away_score": 2,
"type": "regular_period",
"number": 1
},
{
"home_score": 0,
"away_score": 3,
"type": "regular_period",
"number": 2
}
]
}
},
{
"sport_event": {
"id": "sr:sport_event:46513463",
"start_time": "2024-01-06T03:00:00+00:00",
"start_time_confirmed": true,
"sport_event_context": {
"sport": {
"id": "sr:sport:1",
"name": "Soccer"
},
"category": {
"id": "sr:category:12",
"name": "Mexico",
"country_code": "MEX"
},
"competition": {
"id": "sr:competition:28955",
"name": "Liga MX, Women, Clausura",
"parent_id": "sr:competition:23441",
"gender": "women"
},
"season": {
"id": "sr:season:114105",
"name": "Liga MX, Women, Clausura 2024",
"start_date": "2024-01-05",
"end_date": "2024-05-28",
"year": "2024",
"competition_id": "sr:competition:28955"
},
"stage": {
"order": 1,
"type": "league",
"phase": "regular season",
"start_date": "2024-01-05",
"end_date": "2024-05-05",
"year": "2024"
},
"round": {
"number": 1
},
"groups": [
{
"id": "sr:league:80809",
"name": "Liga MX, Women 2024, Clausura"
}
]
},
"coverage": {
"type": "sport_event",
"sport_event_properties": {
"lineups": false,
"venue": false,
"extended_player_stats": false,
"extended_team_stats": false,
"ballspotting": false,
"commentary": false,
"fun_facts": false,
"goal_scorers": false,
"scores": "post",
"game_clock": false,
"deeper_play_by_play": false,
"deeper_player_stats": false,
"deeper_team_stats": false,
"basic_play_by_play": false,
"basic_player_stats": false,
"basic_team_stats": false
}
},
"competitors": [
{
"id": "sr:competitor:334061",
"name": "CF Monterrey",
"country": "Mexico",
"country_code": "MEX",
"abbreviation": "MON",
"qualifier": "home",
"gender": "female"
},
{
"id": "sr:competitor:458511",
"name": "Club Puebla",
"country": "Mexico",
"country_code": "MEX",
"abbreviation": "PUE",
"qualifier": "away",
"gender": "female"
}
],
"sport_event_conditions": {
"ground": {
"neutral": false
}
}
},
"sport_event_status": {
"status": "closed",
"match_status": "ended",
"home_score": 1,
"away_score": 0,
"winner_id": "sr:competitor:334061",
"period_scores": [
{
"home_score": 1,
"away_score": 0,
"type": "regular_period",
"number": 1
},
{
"home_score": 0,
"away_score": 0,
"type": "regular_period",
"number": 2
}
]
}
},
]
}Team Statistics
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 10/15/2024 | Competitor Summaries Competitor vs Competitor Daily Summaries Live Summaries Player Summaries Season Summaries Seasonal Competitor Statistics Sport Event Summary Sport Event Timeline Push Statistics Timeline Probabilities | We added the below team statistics to our Soccer Extended offering. These are available on the match and season (Seasonal Competitor Statistics) level. Stats include:
|
<sport_event_timeline
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://schemas.sportradar.com/sportsapi/soccer-extended/v4" generated_at="2024-10-07T12:48:29+00:00" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/soccer-extended/v4 https://d1woxfzdkvuts1.cloudfront.net/bsa-7075/soccer-extended/v4/schemas/sport_event_timeline.xsd">
<sport_event id="sr:sport_event:50850069" start_time="2024-09-28T14:00:00+00:00" start_time_confirmed="true">
<sport_event_context>
<sport id="sr:sport:1" name="Soccer"/>
<category id="sr:category:1" name="England" country_code="ENG"/>
<competition id="sr:competition:17" name="Premier League" gender="men"/>
<season id="sr:season:118689" name="Premier League 24/25" start_date="2024-08-16" end_date="2025-05-25" year="24/25" competition_id="sr:competition:17"/>
<stage order="1" type="league" phase="regular season" start_date="2024-08-16" end_date="2025-05-25" year="24/25"/>
<round number="6"/>
<groups>
<group id="sr:league:84075" name="Premier League 24/25"/>
</groups>
</sport_event_context>
<coverage type="sport_event">
<sport_event_properties lineups="true" venue="true" extended_player_stats="true" extended_team_stats="true" lineups_availability="pre" ballspotting="true" commentary="true" fun_facts="true" goal_scorers="true" scores="live" game_clock="true" deeper_play_by_play="true" deeper_player_stats="true" deeper_team_stats="true" basic_play_by_play="true" basic_player_stats="true" basic_team_stats="true"/>
</coverage>
<competitors>
<competitor id="sr:competitor:42" name="Arsenal FC" country="England" country_code="ENG" abbreviation="ARS" qualifier="home" gender="male"/>
<competitor id="sr:competitor:31" name="Leicester City" country="England" country_code="ENG" abbreviation="LEI" qualifier="away" gender="male"/>
</competitors>
<venue id="sr:venue:624" name="Emirates Stadium" capacity="60272" city_name="London" country_name="England" map_coordinates="51.555050,-0.108046" country_code="ENG" timezone="Europe/London"/>
<channels>
<channel name="novasports2 HD - Hot Bird 1/2/3/4/6 (13.0E)" url="https://www.gazzetta.gr/tv-program" country="Greece" country_code="GRC"/>
<channel name="Sky Sport Calcio HD - Hot Bird 1/2/3/4/6 (13.0E)" url="https://www.goal.com/it/notizie/guida-tv-dove-vedere-tutto-il-calcio-in-diretta-e-streaming/1674frahvw8qt1nojf0cwjwlzr" country="Italy" country_code="ITA"/>
<channel name="Digi Sport 3 RO - Thor 2/3 (1.0W)" url="http://www.digisport.ro/Program/" country="Romania" country_code="ROU"/>
<channel name="V Sport Premium HD - Thor 2/3 (1.0W)" url="https://www.allente.se/tv-guide/" country="Sweden" country_code="SWE"/>
<channel name="Spiler 1 TV - Thor 2/3 (1.0W)" url="http://spilertv.hu/musorujsag/" country="Hungary" country_code="HUN"/>
<channel name="Spiler 1 TV - Thor 2/3 (1.0W)" url="http://spilertv.hu/musorujsag/" country="Romania" country_code="ROU"/>
<channel name="Peacock Premium" country="United States" country_code="USA"/>
<channel name="Sky Sport Premier League HD - Astra 1C-1H / 2C (19.2E)" url="https://info.sky.de/inhalt/de/programm_info_live_events_start.jsp" country="Germany" country_code="DEU"/>
<channel name="CANAL+ Foot FR - Astra 1C-1H / 2C (19.2E)" url="https://www.canalplus.com/programme-tv/" country="France" country_code="FRA"/>
</channels>
<sport_event_conditions>
<referees>
<referee id="sr:referee:1972503" name="Barrott, Samuel" nationality="England" country_code="ENG" type="main_referee"/>
<referee id="sr:referee:79890" name="Ledger, Scott" nationality="England" country_code="ENG" type="first_assistant_referee"/>
<referee id="sr:referee:2208914" name="Smith, Wade" nationality="England" country_code="ENG" type="second_assistant_referee"/>
<referee id="sr:referee:79932" name="Whitestone, Dean" nationality="England" country_code="ENG" type="fourth_official"/>
<referee id="sr:referee:104864" name="Tierney, Paul" nationality="England" country_code="ENG" type="video_assistant_referee"/>
</referees>
<attendance count="60323"/>
<weather pitch_conditions="good" overall_conditions="good"/>
<ground neutral="false"/>
<lineups confirmed="true"/>
</sport_event_conditions>
</sport_event>
<sport_event_status status="closed" match_status="ended" home_score="4" away_score="2" winner_id="sr:competitor:42">
<period_scores>
<period_score home_score="2" away_score="0" type="regular_period" number="1"/>
<period_score home_score="2" away_score="2" type="regular_period" number="2"/>
</period_scores>
<ball_locations>
<ball_location order="4" x="57" y="100" qualifier="home"/>
<ball_location order="3" x="59" y="73" qualifier="home"/>
<ball_location order="2" x="37" y="72" qualifier="home"/>
<ball_location order="1" x="37" y="72" qualifier="away"/>
</ball_locations>
<match_situation status="attack" qualifier="home" updated_at="2024-09-28T16:00:53+00:00"/>
</sport_event_status>
<statistics>
<totals>
<competitors>
<competitor id="sr:competitor:42" name="Arsenal FC" abbreviation="ARS" qualifier="home">
<statistics ball_possession="75" cards_given="2" chances_created="24" clearances="22" corner_kicks="17" crosses_successful="15" crosses_total="53" crosses_unsuccessful="38" defensive_blocks="3" diving_saves="0" dribbles_completed="3" fouls="11" free_kicks="7" goal_kicks="3" injuries="1" interceptions="5" long_passes_successful="14" long_passes_total="24" long_passes_unsuccessful="10" loss_of_possession="27" offsides="0" passes_successful="584" passes_total="618" passes_unsuccessful="34" red_cards="0" shots_blocked="6" shots_off_target="11" shots_on_target="14" shots_saved="1" shots_total="31" substitutions="3" tackles_successful="6" tackles_total="10" tackles_unsuccessful="4" throw_ins="22" was_fouled="6" yellow_cards="2" yellow_red_cards="0"/>
<players>
<player id="sr:player:84844" name="Neto" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:132874" name="Jorginho" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:135666" name="Trossard, Leandro" starter="true">
<statistics assists="0" chances_created="3" clearances="0" corner_kicks="0" crosses_successful="2" crosses_total="3" defensive_blocks="0" diving_saves="0" dribbles_completed="1" fouls_committed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="1" interceptions="1" long_passes_successful="3" long_passes_total="3" long_passes_unsuccessful="0" loss_of_possession="3" minutes_played="90" offsides="0" own_goals="0" passes_successful="28" passes_total="34" passes_unsuccessful="6" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="1" shots_faced_saved="0" shots_faced_total="0" shots_off_target="1" shots_on_target="2" substituted_in="0" substituted_out="1" tackles_successful="1" tackles_total="1" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:138534" name="Sterling, Raheem" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="2" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="16" offsides="0" own_goals="0" passes_successful="9" passes_total="9" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="1" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:316148" name="Partey, Thomas" starter="true">
<statistics assists="0" chances_created="1" clearances="1" corner_kicks="0" crosses_successful="0" crosses_total="1" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="1" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="2" minutes_played="85" offsides="0" own_goals="0" passes_successful="85" passes_total="89" passes_unsuccessful="4" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="1" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:581310" name="Raya, David" starter="true">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="1" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="0" long_passes_successful="2" long_passes_total="6" long_passes_unsuccessful="4" loss_of_possession="0" minutes_played="90" offsides="0" own_goals="0" passes_successful="15" passes_total="15" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="1" shots_faced_total="3" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:835751" name="Jesus, Gabriel" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="1" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:934552" name="Rice, Declan" starter="true">
<statistics assists="0" chances_created="4" clearances="2" corner_kicks="9" crosses_successful="1" crosses_total="18" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="1" long_passes_successful="3" long_passes_total="5" long_passes_unsuccessful="2" loss_of_possession="3" minutes_played="90" offsides="0" own_goals="0" passes_successful="71" passes_total="74" passes_unsuccessful="3" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="1" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="1" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="2" was_fouled="1" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:937210" name="Havertz, Kai" starter="true">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="1" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="1" interceptions="0" long_passes_successful="0" long_passes_total="1" long_passes_unsuccessful="1" loss_of_possession="6" minutes_played="90" offsides="0" own_goals="0" passes_successful="32" passes_total="35" passes_unsuccessful="3" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="1" shots_faced_saved="0" shots_faced_total="0" shots_off_target="3" shots_on_target="2" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:1059325" name="Timber, Jurrien" starter="true">
<statistics assists="1" chances_created="6" clearances="2" corner_kicks="0" crosses_successful="1" crosses_total="6" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="0" long_passes_successful="1" long_passes_total="1" long_passes_unsuccessful="0" loss_of_possession="2" minutes_played="90" offsides="0" own_goals="0" passes_successful="73" passes_total="78" passes_unsuccessful="5" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="1" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="2" tackles_total="3" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:1091644" name="Kiwior, Jakub" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:1099395" name="Magalhaes, Gabriel" starter="true">
<statistics assists="0" chances_created="0" clearances="6" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="1" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="1" long_passes_successful="0" long_passes_total="3" long_passes_unsuccessful="3" loss_of_possession="0" minutes_played="90" offsides="0" own_goals="0" passes_successful="78" passes_total="80" passes_unsuccessful="2" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="1" shots_on_target="2" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:1297524" name="Calafiori, Riccardo" starter="true">
<statistics assists="0" chances_created="2" clearances="6" corner_kicks="0" crosses_successful="0" crosses_total="1" defensive_blocks="1" diving_saves="0" dribbles_completed="1" fouls_committed="4" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="0" long_passes_successful="3" long_passes_total="3" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="90" offsides="0" own_goals="0" passes_successful="63" passes_total="66" passes_unsuccessful="3" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="1" shots_on_target="2" substituted_in="0" substituted_out="0" tackles_successful="1" tackles_total="2" was_fouled="1" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:1479630" name="Saka, Bukayo" starter="true">
<statistics assists="0" chances_created="7" clearances="0" corner_kicks="8" crosses_successful="6" crosses_total="12" defensive_blocks="0" diving_saves="0" dribbles_completed="1" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="6" minutes_played="90" offsides="0" own_goals="0" passes_successful="52" passes_total="57" passes_unsuccessful="5" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="3" shots_faced_saved="0" shots_faced_total="0" shots_off_target="1" shots_on_target="2" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="2" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:1513599" name="Saliba, William" starter="true">
<statistics assists="0" chances_created="0" clearances="4" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="2" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="1" long_passes_successful="2" long_passes_total="2" long_passes_unsuccessful="0" loss_of_possession="1" minutes_played="90" offsides="0" own_goals="0" passes_successful="57" passes_total="57" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="1" tackles_total="1" was_fouled="0" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:1663313" name="Martinelli, Gabriel" starter="true">
<statistics assists="1" chances_created="1" clearances="0" corner_kicks="0" crosses_successful="4" crosses_total="8" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="1" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="3" minutes_played="74" offsides="0" own_goals="0" passes_successful="18" passes_total="21" passes_unsuccessful="3" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="2" shots_on_target="2" substituted_in="0" substituted_out="1" tackles_successful="0" tackles_total="0" was_fouled="2" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:2447727" name="Nwaneri, Ethan" starter="false">
<statistics assists="0" chances_created="0" clearances="1" corner_kicks="0" crosses_successful="1" crosses_total="1" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="1" minutes_played="5" offsides="0" own_goals="0" passes_successful="3" passes_total="3" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="1" substituted_in="1" substituted_out="0" tackles_successful="1" tackles_total="1" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:2518835" name="Lewis-Skelly, Myles" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:2691826" name="Kacurri, Maldini" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:2691828" name="Nichols, Joshua" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
</players>
</competitor>
<competitor id="sr:competitor:31" name="Leicester City" abbreviation="LEI" qualifier="away">
<statistics ball_possession="25" cards_given="4" chances_created="4" clearances="75" corner_kicks="0" crosses_successful="2" crosses_total="3" crosses_unsuccessful="1" defensive_blocks="18" diving_saves="4" dribbles_completed="5" fouls="6" free_kicks="11" goal_kicks="11" injuries="2" interceptions="4" long_passes_successful="10" long_passes_total="27" long_passes_unsuccessful="17" loss_of_possession="24" offsides="1" passes_successful="161" passes_total="186" passes_unsuccessful="25" red_cards="0" shots_blocked="1" shots_off_target="1" shots_on_target="3" shots_saved="11" shots_total="5" substitutions="5" tackles_successful="13" tackles_total="19" tackles_unsuccessful="6" throw_ins="12" was_fouled="11" yellow_cards="4" yellow_red_cards="0"/>
<players>
<player id="sr:player:94756" name="Ward, Danny" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:98449" name="Coady, Conor" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:103045" name="Ayew, Jordan" starter="false">
<statistics assists="0" chances_created="0" clearances="1" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="1" minutes_played="5" offsides="0" own_goals="0" passes_successful="0" passes_total="1" passes_unsuccessful="1" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="1" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:151499" name="De Cordova-Reid, Bobby" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="2" passes_total="2" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="1" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:173827" name="Vardy, Jamie" starter="true">
<statistics assists="0" chances_created="1" clearances="2" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="4" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="3" minutes_played="90" offsides="1" own_goals="0" passes_successful="9" passes_total="12" passes_unsuccessful="3" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="1" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:221200" name="Pereira, Ricardo" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:361696" name="Faes, Wout" starter="true">
<statistics assists="0" chances_created="0" clearances="12" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="4" goals_scored="0" interceptions="1" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="90" offsides="0" own_goals="0" passes_successful="19" passes_total="20" passes_unsuccessful="1" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="1" tackles_total="1" was_fouled="1" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:545780" name="Winks, Harry" starter="true">
<statistics assists="0" chances_created="1" clearances="4" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="2" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="4" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="1" long_passes_unsuccessful="1" loss_of_possession="4" minutes_played="90" offsides="0" own_goals="0" passes_successful="20" passes_total="21" passes_unsuccessful="1" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:605338" name="Mavididi, Stephy" starter="true">
<statistics assists="0" chances_created="1" clearances="2" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="1" diving_saves="0" dribbles_completed="2" fouls_committed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="4" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="7" minutes_played="90" offsides="0" own_goals="0" passes_successful="12" passes_total="14" passes_unsuccessful="2" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="1" tackles_successful="2" tackles_total="2" was_fouled="2" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:769147" name="Edouard, Odsonne" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="1" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:795266" name="Ndidi, Wilfred" starter="true">
<statistics assists="1" chances_created="0" clearances="10" corner_kicks="0" crosses_successful="1" crosses_total="2" defensive_blocks="1" diving_saves="0" dribbles_completed="1" fouls_committed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="4" goals_scored="0" interceptions="1" long_passes_successful="1" long_passes_total="2" long_passes_unsuccessful="1" loss_of_possession="2" minutes_played="90" offsides="0" own_goals="1" passes_successful="18" passes_total="20" passes_unsuccessful="2" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="1" substituted_in="0" substituted_out="1" tackles_successful="5" tackles_total="6" was_fouled="0" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:942498" name="Justin, James" starter="true">
<statistics assists="0" chances_created="0" clearances="12" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="1" fouls_committed="0" goals_by_head="1" goals_by_penalty="0" goals_conceded="4" goals_scored="2" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="1" minutes_played="90" offsides="0" own_goals="0" passes_successful="9" passes_total="12" passes_unsuccessful="3" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="1" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="2" substituted_in="0" substituted_out="0" tackles_successful="1" tackles_total="1" was_fouled="3" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:966205" name="Choudhury, Hamza" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:1058725" name="Skipp, Oliver" starter="true">
<statistics assists="0" chances_created="0" clearances="2" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="2" goals_by_head="0" goals_by_penalty="0" goals_conceded="4" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="2" minutes_played="90" offsides="0" own_goals="0" passes_successful="15" passes_total="15" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="1" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:1061592" name="Hermansen, Mads" starter="true">
<statistics assists="0" chances_created="0" clearances="6" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="9" diving_saves="4" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="4" goals_scored="0" interceptions="0" long_passes_successful="8" long_passes_total="21" long_passes_unsuccessful="13" loss_of_possession="0" minutes_played="90" offsides="0" own_goals="0" passes_successful="11" passes_total="12" passes_unsuccessful="1" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="11" shots_faced_total="15" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:1654317" name="Okoli, Caleb" starter="true">
<statistics assists="0" chances_created="1" clearances="15" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="2" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="4" goals_scored="0" interceptions="0" long_passes_successful="1" long_passes_total="2" long_passes_unsuccessful="1" loss_of_possession="0" minutes_played="90" offsides="0" own_goals="0" passes_successful="15" passes_total="18" passes_unsuccessful="3" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="1" tackles_successful="0" tackles_total="1" was_fouled="1" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:2032765" name="Kristiansen, Victor" starter="true">
<statistics assists="0" chances_created="0" clearances="7" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="2" diving_saves="0" dribbles_completed="0" fouls_committed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="4" goals_scored="0" interceptions="2" long_passes_successful="0" long_passes_total="1" long_passes_unsuccessful="1" loss_of_possession="1" minutes_played="90" offsides="0" own_goals="0" passes_successful="22" passes_total="25" passes_unsuccessful="3" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="0" substituted_out="0" tackles_successful="3" tackles_total="6" was_fouled="1" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:2140422" name="Fatawu, Issahaku" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="0" minutes_played="0" offsides="0" own_goals="0" passes_successful="0" passes_total="0" passes_unsuccessful="0" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="1" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:2184938" name="Facundo, Buonanotte" starter="true">
<statistics assists="1" chances_created="0" clearances="2" corner_kicks="0" crosses_successful="1" crosses_total="1" defensive_blocks="1" diving_saves="0" dribbles_completed="1" fouls_committed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="2" minutes_played="85" offsides="0" own_goals="0" passes_successful="8" passes_total="12" passes_unsuccessful="4" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="1" shots_on_target="1" substituted_in="0" substituted_out="1" tackles_successful="1" tackles_total="2" was_fouled="2" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:2298727" name="El Khannouss, Bilal" starter="false">
<statistics assists="0" chances_created="0" clearances="0" corner_kicks="0" crosses_successful="0" crosses_total="0" defensive_blocks="0" diving_saves="0" dribbles_completed="0" fouls_committed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="2" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="0" long_passes_unsuccessful="0" loss_of_possession="1" minutes_played="0" offsides="0" own_goals="0" passes_successful="1" passes_total="2" passes_unsuccessful="1" penalties_faced="0" penalties_missed="0" penalties_saved="0" red_cards="0" shots_blocked="0" shots_faced_saved="0" shots_faced_total="0" shots_off_target="0" shots_on_target="0" substituted_in="1" substituted_out="0" tackles_successful="0" tackles_total="0" was_fouled="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
</players>
</competitor>
</competitors>
</totals>
</statistics>
<timeline>
<event id="1856132375" type="match_started" time="2024-09-28T14:00:17+00:00" updated_start_time="2024-09-28T14:00:12+00:00"/>
<event id="1856132377" type="period_start" time="2024-09-28T14:00:17+00:00" period="1" period_type="regular_period" period_name="regular_period"/>
<event id="1856134997" type="throw_in" time="2024-09-28T14:01:33+00:00" match_time="2" match_clock="1:18" competitor="home" x="67" y="0" period="1" period_type="regular_period">
<commentaries>
<commentary text="Samuel Barrott signals a Arsenal throw-in in Leicester's half."/>
</commentaries>
</event>
<event id="1856137757" type="goal_kick" time="2024-09-28T14:02:40+00:00" match_time="3" match_clock="2:26" competitor="away" x="95" y="50" period="1" period_type="regular_period">
<commentaries>
<commentary text="Ball goes out of play for a Leicester goal kick."/>
</commentaries>
</event>
<event id="1856139163" type="free_kick" time="2024-09-28T14:03:28+00:00" match_time="4" match_clock="3:12" competitor="away" x="69" y="12" period="1" period_type="regular_period">
<players>
<player id="sr:player:1297524" name="Calafiori, Riccardo"/>
</players>
<commentaries>
<commentary text="Samuel Barrott signals a free kick to Leicester in their own half."/>
</commentaries>
</event>
<event id="1856140691" type="throw_in" time="2024-09-28T14:04:14+00:00" match_time="4" match_clock="3:59" competitor="away" x="57" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Leicester awarded a throw-in in their own half."/>
</commentaries>
</event>
<event id="1856142607" type="throw_in" time="2024-09-28T14:05:20+00:00" match_time="5" match_clock="4:59" competitor="away" x="47" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="A throw-in for the away team on the opposite half."/>
</commentaries>
</event>
<event id="1856144735" type="throw_in" time="2024-09-28T14:06:28+00:00" match_time="7" match_clock="6:13" competitor="away" x="67" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Throw-in for Leicester in their own half."/>
</commentaries>
</event>
<event id="1856146467" type="throw_in" time="2024-09-28T14:07:21+00:00" match_time="8" match_clock="7:04" competitor="away" x="81" y="0" period="1" period_type="regular_period">
<commentaries>
<commentary text="Throw-in Leicester."/>
</commentaries>
</event>
<event id="1856152983" type="free_kick" time="2024-09-28T14:09:09+00:00" match_time="8" match_clock="7:51" competitor="home" x="63" y="27" period="1" period_type="regular_period">
<players>
<player id="sr:player:1058725" name="Skipp, Oliver"/>
</players>
<commentaries>
<commentary text="Free kick for Arsenal in the half of Leicester."/>
</commentaries>
</event>
<event id="1856153063" type="injury" time="2024-09-28T14:09:10+00:00" match_time="9" match_clock="8:12" competitor="home" x="17" y="51" period="1" period_type="regular_period">
<players>
<player id="sr:player:1663313" name="Martinelli, Gabriel"/>
</players>
<commentaries>
<commentary text="Play has been temporarily suspended for attention to Gabriel Martinelli for Arsenal who is writhing in pain on the pitch."/>
</commentaries>
</event>
<event id="1856154599" type="corner_kick" time="2024-09-28T14:09:48+00:00" match_time="10" match_clock="9:28" competitor="home" x="100" y="100" period="1" period_type="regular_period">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Corner awarded to Arsenal."/>
</commentaries>
</event>
<event id="1856154773" type="injury_return" time="2024-09-28T14:09:53+00:00" match_time="10" match_clock="9:34" competitor="home" period="1" period_type="regular_period">
<players>
<player id="sr:player:1663313" name="Martinelli, Gabriel"/>
</players>
<commentaries>
<commentary text="Gabriel Martinelli has recovered and rejoins the match in London."/>
</commentaries>
</event>
<event id="1856154783" type="injury_return" time="2024-09-28T14:09:53+00:00" match_time="10" match_clock="9:34" competitor="home" period="1" period_type="regular_period">
<players>
<player id="sr:player:1663313" name="Martinelli, Gabriel"/>
</players>
<commentaries>
<commentary text="Arsenal's Gabriel Martinelli looks ok and returns to the pitch."/>
</commentaries>
</event>
<event id="1856156415" type="throw_in" time="2024-09-28T14:10:40+00:00" match_time="11" match_clock="10:21" competitor="home" x="79" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Throw-in for Arsenal in the half of Leicester."/>
</commentaries>
</event>
<event id="1856159115" type="throw_in" time="2024-09-28T14:11:43+00:00" match_time="12" match_clock="11:28" competitor="away" x="89" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Ball safe as Leicester is awarded a throw-in in their half."/>
</commentaries>
</event>
<event id="1856165663" type="shot_on_target" time="2024-09-28T14:14:55+00:00" match_time="15" match_clock="14:39" competitor="home" x="83" y="64" period="1" period_type="regular_period">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Bukayo Saka gets his shot on target but fails to score for Arsenal."/>
</commentaries>
</event>
<event id="1856165667" type="shot_saved" time="2024-09-28T14:14:55+00:00" match_time="15" match_clock="14:39" competitor="away" period="1" period_type="regular_period"/>
<event id="1856166949" type="shot_off_target" time="2024-09-28T14:15:29+00:00" match_time="16" match_clock="15:15" competitor="home" x="91" y="41" period="1" period_type="regular_period" outcome="miss">
<players>
<player id="sr:player:1663313" name="Martinelli, Gabriel"/>
</players>
<commentaries>
<commentary text="Arsenal's Gabriel Martinelli misses with an attempt on goal."/>
</commentaries>
</event>
<event id="1856166955" type="goal_kick" time="2024-09-28T14:15:29+00:00" match_time="16" match_clock="15:15" competitor="away" x="95" y="50" period="1" period_type="regular_period">
<commentaries>
<commentary text="Samuel Barrott awards Leicester a goal kick."/>
</commentaries>
</event>
<event id="1856169369" type="throw_in" time="2024-09-28T14:16:40+00:00" match_time="17" match_clock="16:22" competitor="home" x="57" y="0" period="1" period_type="regular_period">
<commentaries>
<commentary text="Arsenal to take a throw-in in Leicester territory."/>
</commentaries>
</event>
<event id="1856170771" type="free_kick" time="2024-09-28T14:17:19+00:00" match_time="18" match_clock="17:04" competitor="away" x="72" y="78" period="1" period_type="regular_period">
<players>
<player id="sr:player:937210" name="Havertz, Kai"/>
</players>
<commentaries>
<commentary text="Free kick for Leicester in their own half."/>
</commentaries>
</event>
<event id="1856171865" type="throw_in" time="2024-09-28T14:17:54+00:00" match_time="18" match_clock="17:40" competitor="home" x="42" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Samuel Barrott awards the home team a throw-in."/>
</commentaries>
</event>
<event id="1856175709" type="possible_goal" time="2024-09-28T14:19:30+00:00" match_time="20" match_clock="19:12" competitor="home" period="1" period_type="regular_period"/>
<event id="1856175739" type="score_change" time="2024-09-28T14:19:32+00:00" match_time="20" match_clock="19:12" competitor="home" x="91" y="43" period="1" period_type="regular_period" home_score="1" away_score="0">
<players>
<player id="sr:player:1663313" name="Martinelli, Gabriel" type="scorer"/>
<player id="sr:player:1059325" name="Timber, Jurrien" type="assist"/>
</players>
<commentaries>
<commentary text="Gabriel Martinelli scores to make it 1-0 at Emirates Stadium."/>
<commentary text="That's a fine assist from Jurrien Timber."/>
</commentaries>
</event>
<event id="1856178647" type="yellow_card" time="2024-09-28T14:21:12+00:00" match_time="21" match_clock="20:53" competitor="away" period="1" period_type="regular_period">
<players>
<player id="sr:player:173827" name="Vardy, Jamie"/>
</players>
<commentaries>
<commentary text="Jamie Vardy for Leicester has been booked by Samuel Barrott and receives a first yellow card."/>
</commentaries>
</event>
<event id="1856178893" type="throw_in" time="2024-09-28T14:21:20+00:00" match_time="22" match_clock="21:04" competitor="home" x="70" y="0" period="1" period_type="regular_period">
<commentaries>
<commentary text="Can Arsenal get the ball into an attacking position from this throw-in in Leicester's half?"/>
</commentaries>
</event>
<event id="1856180943" type="corner_kick" time="2024-09-28T14:22:31+00:00" match_time="23" match_clock="22:16" competitor="home" x="100" y="0" period="1" period_type="regular_period">
<players>
<player id="sr:player:934552" name="Rice, Declan"/>
</players>
<commentaries>
<commentary text="Arsenal have been awarded a corner by Samuel Barrott."/>
</commentaries>
</event>
<event id="1856182673" type="free_kick" time="2024-09-28T14:23:34+00:00" match_time="24" match_clock="23:19" competitor="home" x="73" y="13" period="1" period_type="regular_period">
<players>
<player id="sr:player:2184938" name="Facundo, Buonanotte"/>
</players>
<commentaries>
<commentary text="Free kick Arsenal."/>
</commentaries>
</event>
<event id="1856184211" type="shot_on_target" time="2024-09-28T14:24:26+00:00" match_time="25" match_clock="24:11" competitor="home" x="82" y="51" period="1" period_type="regular_period">
<players>
<player id="sr:player:1297524" name="Calafiori, Riccardo"/>
</players>
<commentaries>
<commentary text="Arsenal's Riccardo Calafiori gets in a shot on goal at Emirates Stadium. But the effort is unsuccessful."/>
</commentaries>
</event>
<event id="1856184251" type="shot_saved" time="2024-09-28T14:24:27+00:00" match_time="25" match_clock="24:11" competitor="away" period="1" period_type="regular_period"/>
<event id="1856184687" type="shot_on_target" time="2024-09-28T14:24:46+00:00" match_time="25" match_clock="24:28" competitor="home" x="89" y="32" period="1" period_type="regular_period">
<players>
<player id="sr:player:1663313" name="Martinelli, Gabriel"/>
</players>
<commentaries>
<commentary text="Gabriel Martinelli for Arsenal drives towards goal at Emirates Stadium. But the finish is unsuccessful."/>
</commentaries>
</event>
<event id="1856184691" type="shot_saved" time="2024-09-28T14:24:46+00:00" match_time="25" match_clock="24:28" competitor="away" period="1" period_type="regular_period"/>
<event id="1856187081" type="corner_kick" time="2024-09-28T14:26:10+00:00" match_time="26" match_clock="25:55" competitor="home" x="100" y="0" period="1" period_type="regular_period">
<players>
<player id="sr:player:934552" name="Rice, Declan"/>
</players>
<commentaries>
<commentary text="Corner awarded to Arsenal."/>
</commentaries>
</event>
<event id="1856188599" type="throw_in" time="2024-09-28T14:27:05+00:00" match_time="27" match_clock="26:50" competitor="home" x="67" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Can Arsenal get the ball into an attacking position from this throw-in in Leicester's half?"/>
</commentaries>
</event>
<event id="1856200663" type="free_kick" time="2024-09-28T14:30:55+00:00" match_time="31" match_clock="30:41" competitor="home" x="70" y="34" period="1" period_type="regular_period">
<players>
<player id="sr:player:795266" name="Ndidi, Wilfred"/>
</players>
<commentaries>
<commentary text="In London a free kick has been awarded the home team."/>
</commentaries>
</event>
<event id="1856201557" type="yellow_card" time="2024-09-28T14:31:25+00:00" match_time="31" match_clock="30:57" competitor="away" period="1" period_type="regular_period">
<players>
<player id="sr:player:795266" name="Ndidi, Wilfred"/>
</players>
<commentaries>
<commentary text="Wilfred Ndidi is booked for the away team."/>
</commentaries>
</event>
<event id="1856205685" type="corner_kick" time="2024-09-28T14:33:45+00:00" match_time="34" match_clock="33:29" competitor="home" x="100" y="0" period="1" period_type="regular_period">
<players>
<player id="sr:player:934552" name="Rice, Declan"/>
</players>
<commentaries>
<commentary text="Arsenal have been awarded a corner by Samuel Barrott."/>
</commentaries>
</event>
<event id="1856206869" type="free_kick" time="2024-09-28T14:34:22+00:00" match_time="35" match_clock="34:06" competitor="home" x="71" y="96" period="1" period_type="regular_period">
<players>
<player id="sr:player:605338" name="Mavididi, Stephy"/>
</players>
<commentaries>
<commentary text="Samuel Barrott signals a free kick to Arsenal."/>
</commentaries>
</event>
<event id="1856207717" type="free_kick" time="2024-09-28T14:34:52+00:00" match_time="35" match_clock="34:38" competitor="away" x="83" y="66" period="1" period_type="regular_period">
<players>
<player id="sr:player:1297524" name="Calafiori, Riccardo"/>
</players>
<commentaries>
<commentary text="Samuel Barrott signals a free kick to Leicester in their own half."/>
</commentaries>
</event>
<event id="1856208565" type="free_kick" time="2024-09-28T14:35:20+00:00" match_time="36" match_clock="35:04" competitor="away" x="46" y="75" period="1" period_type="regular_period">
<players>
<player id="sr:player:316148" name="Partey, Thomas"/>
</players>
<commentaries>
<commentary text="Free kick for Leicester in the half of Arsenal."/>
</commentaries>
</event>
<event id="1856211423" type="shot_off_target" time="2024-09-28T14:36:49+00:00" match_time="37" match_clock="36:36" competitor="home" x="93" y="43" period="1" period_type="regular_period" outcome="miss">
<players>
<player id="sr:player:937210" name="Havertz, Kai"/>
</players>
<commentaries>
<commentary text="Kai Havertz (Arsenal) is first to the ball but his header is off-target."/>
</commentaries>
</event>
<event id="1856211449" type="goal_kick" time="2024-09-28T14:36:50+00:00" match_time="37" match_clock="36:36" competitor="away" x="95" y="50" period="1" period_type="regular_period">
<commentaries>
<commentary text="Leicester have a goal kick."/>
</commentaries>
</event>
<event id="1856212235" type="shot_off_target" time="2024-09-28T14:37:17+00:00" match_time="38" match_clock="37:01" competitor="home" x="92" y="44" period="1" period_type="regular_period" outcome="miss">
<players>
<player id="sr:player:1663313" name="Martinelli, Gabriel"/>
</players>
<commentaries>
<commentary text="Gabriel Martinelli for Arsenal gets in a strike but fails to hit the target."/>
</commentaries>
</event>
<event id="1856212317" type="goal_kick" time="2024-09-28T14:37:20+00:00" match_time="38" match_clock="37:06" competitor="away" x="95" y="50" period="1" period_type="regular_period">
<commentaries>
<commentary text="Goal kick for Leicester at Emirates Stadium."/>
</commentaries>
</event>
<event id="1856212683" type="throw_in" time="2024-09-28T14:37:32+00:00" match_time="38" match_clock="37:16" competitor="home" x="52" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Arsenal to take a throw-in in Leicester territory."/>
</commentaries>
</event>
<event id="1856213771" type="throw_in" time="2024-09-28T14:38:06+00:00" match_time="38" match_clock="37:52" competitor="home" x="94" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Samuel Barrott signals a throw-in for Arsenal, close to Leicester's area."/>
</commentaries>
</event>
<event id="1856215067" type="throw_in" time="2024-09-28T14:38:50+00:00" match_time="39" match_clock="38:36" competitor="home" x="93" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Throw-in for Arsenal close to the penalty box."/>
</commentaries>
</event>
<event id="1856215773" type="throw_in" time="2024-09-28T14:39:11+00:00" match_time="39" match_clock="38:56" competitor="home" x="88" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Throw-in high up the field for Arsenal in London."/>
</commentaries>
</event>
<event id="1856218955" type="corner_kick" time="2024-09-28T14:40:50+00:00" match_time="41" match_clock="40:37" competitor="home" x="100" y="0" period="1" period_type="regular_period">
<players>
<player id="sr:player:934552" name="Rice, Declan"/>
</players>
<commentaries>
<commentary text="Corner awarded to Arsenal."/>
</commentaries>
</event>
<event id="1856219623" type="free_kick" time="2024-09-28T14:41:09+00:00" match_time="41" match_clock="40:54" competitor="away" x="90" y="47" period="1" period_type="regular_period">
<players>
<player id="sr:player:1513599" name="Saliba, William"/>
</players>
<commentaries>
<commentary text="Free kick for Leicester in their own half."/>
</commentaries>
</event>
<event id="1856223313" type="throw_in" time="2024-09-28T14:43:10+00:00" match_time="43" match_clock="42:55" competitor="away" x="61" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Throw-in for Leicester at Emirates Stadium."/>
</commentaries>
</event>
<event id="1856225551" type="offside" time="2024-09-28T14:44:20+00:00" match_time="44" match_clock="43:00" competitor="away" x="47" y="53" period="1" period_type="regular_period">
<players>
<player id="sr:player:173827" name="Vardy, Jamie"/>
</players>
<commentaries>
<commentary text="Leicester are whistled for offside."/>
</commentaries>
</event>
<event id="1856224939" type="throw_in" time="2024-09-28T14:44:02+00:00" match_time="44" match_clock="43:47" competitor="away" x="57" y="100" period="1" period_type="regular_period">
<commentaries>
<commentary text="Samuel Barrott awards the away team a throw-in."/>
</commentaries>
</event>
<event id="1856228727" type="injury_time_shown" time="2024-09-28T14:45:54+00:00" match_time="45" match_clock="45:00" stoppage_time="1" stoppage_time_clock="0:40" period="1" period_type="regular_period" injury_time_announced="2"/>
<event id="1856229047" type="possible_goal" time="2024-09-28T14:46:03+00:00" match_time="45" match_clock="45:00" competitor="home" stoppage_time="1" stoppage_time_clock="0:45" period="1" period_type="regular_period"/>
<event id="1856229131" type="score_change" time="2024-09-28T14:46:06+00:00" match_time="45" match_clock="45:00" competitor="home" x="90" y="44" stoppage_time="1" stoppage_time_clock="0:51" period="1" period_type="regular_period" home_score="2" away_score="0">
<players>
<player id="sr:player:135666" name="Trossard, Leandro" type="scorer"/>
<player id="sr:player:1663313" name="Martinelli, Gabriel" type="assist"/>
</players>
<commentaries>
<commentary text="Great finish from Leandro Trossard to give Arsenal a 2-0 lead."/>
<commentary text="Gabriel Martinelli with an assist there."/>
</commentaries>
</event>
<event id="1856231731" type="video_assistant_referee" time="2024-09-28T14:47:29+00:00" match_time="45" match_clock="45:00" stoppage_time="3" stoppage_time_clock="2:14" period="1" period_type="regular_period" description="goal" competitor="home"/>
<event id="1856232219" type="video_assistant_referee_over" time="2024-09-28T14:47:46+00:00" match_time="45" match_clock="45:00" stoppage_time="3" stoppage_time_clock="2:31" period="1" period_type="regular_period" description="goal" competitor="home"/>
<event id="1856234181" type="corner_kick" time="2024-09-28T14:48:54+00:00" match_time="45" match_clock="45:00" competitor="home" x="100" y="0" stoppage_time="4" stoppage_time_clock="3:40" period="1" period_type="regular_period">
<players>
<player id="sr:player:934552" name="Rice, Declan"/>
</players>
<commentaries>
<commentary text="Arsenal have been awarded a corner by Samuel Barrott."/>
</commentaries>
</event>
<event id="1856234463" type="period_score" time="2024-09-28T14:49:07+00:00" period="1" period_type="regular_period">
<commentaries>
<commentary text="The first-half has ended."/>
</commentaries>
</event>
<event id="1856234467" type="break_start" time="2024-09-28T14:49:07+00:00" period_type="pause" break_name="pause"/>
<event id="1856257785" type="period_start" time="2024-09-28T15:04:54+00:00" period="2" period_type="regular_period" period_name="regular_period"/>
<event id="1856258469" type="free_kick" time="2024-09-28T15:05:16+00:00" match_time="46" match_clock="45:20" competitor="away" x="34" y="75" period="2" period_type="regular_period">
<players>
<player id="sr:player:1513599" name="Saliba, William"/>
</players>
<commentaries>
<commentary text="Samuel Barrott signals a free kick to Leicester."/>
</commentaries>
</event>
<event id="1856258983" type="yellow_card" time="2024-09-28T15:05:32+00:00" match_time="46" match_clock="45:30" competitor="home" period="2" period_type="regular_period">
<players>
<player id="sr:player:1513599" name="Saliba, William"/>
</players>
<commentaries>
<commentary text="William Saliba (Arsenal) has been booked and must now be careful not to get a second yellow card."/>
</commentaries>
</event>
<event id="1856260195" type="possible_goal" time="2024-09-28T15:06:10+00:00" match_time="47" match_clock="46:12" competitor="away" period="2" period_type="regular_period"/>
<event id="1856260243" type="score_change" time="2024-09-28T15:06:12+00:00" match_time="47" match_clock="46:12" competitor="away" x="9" y="47" period="2" period_type="regular_period" home_score="2" away_score="1" method="header">
<players>
<player id="sr:player:942498" name="Justin, James" type="scorer"/>
<player id="sr:player:2184938" name="Facundo, Buonanotte" type="assist"/>
</players>
<commentaries>
<commentary text="Goal! A headed strike from the away team reduces their deficit to 2-1. James Justin got above everyone else to nod it in."/>
<commentary text="Great play from Buonanotte Facundo to set up the goal."/>
</commentaries>
</event>
<event id="1856262211" type="throw_in" time="2024-09-28T15:07:13+00:00" match_time="48" match_clock="47:19" competitor="home" x="73" y="0" period="2" period_type="regular_period">
<commentaries>
<commentary text="Samuel Barrott signals a Arsenal throw-in in Leicester's half."/>
</commentaries>
</event>
<event id="1856264299" type="free_kick" time="2024-09-28T15:08:17+00:00" match_time="49" match_clock="48:17" competitor="away" x="52" y="21" period="2" period_type="regular_period">
<players>
<player id="sr:player:1297524" name="Calafiori, Riccardo"/>
</players>
<commentaries>
<commentary text="Leicester awarded a free kick in their own half."/>
</commentaries>
</event>
<event id="1856265313" type="yellow_card" time="2024-09-28T15:08:48+00:00" match_time="49" match_clock="48:41" competitor="home" period="2" period_type="regular_period">
<players>
<player id="sr:player:1297524" name="Calafiori, Riccardo"/>
</players>
<commentaries>
<commentary text="Riccardo Calafiori (Arsenal) gets a yellow card."/>
</commentaries>
</event>
<event id="1856266537" type="yellow_card" time="2024-09-28T15:09:28+00:00" match_time="50" match_clock="49:16" competitor="away" period="2" period_type="regular_period">
<players>
<player id="sr:player:1058725" name="Skipp, Oliver"/>
</players>
<commentaries>
<commentary text="At Emirates Stadium, Oliver Skipp has been yellow-carded for the away team."/>
</commentaries>
</event>
<event id="1856266773" type="free_kick" time="2024-09-28T15:09:35+00:00" match_time="50" match_clock="49:34" competitor="home" x="33" y="31" period="2" period_type="regular_period">
<players>
<player id="sr:player:1058725" name="Skipp, Oliver"/>
</players>
<commentaries>
<commentary text="Arsenal awarded a free kick in their own half."/>
</commentaries>
</event>
<event id="1856269731" type="corner_kick" time="2024-09-28T15:11:08+00:00" match_time="52" match_clock="51:12" competitor="home" x="100" y="100" period="2" period_type="regular_period">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Corner awarded to Arsenal."/>
</commentaries>
</event>
<event id="1856271005" type="corner_kick" time="2024-09-28T15:11:49+00:00" match_time="52" match_clock="51:51" competitor="home" x="100" y="100" period="2" period_type="regular_period">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Arsenal have been awarded a corner by Samuel Barrott."/>
</commentaries>
</event>
<event id="1856272267" type="shot_on_target" time="2024-09-28T15:12:29+00:00" match_time="53" match_clock="52:32" competitor="home" x="90" y="55" period="2" period_type="regular_period">
<players>
<player id="sr:player:1099395" name="Magalhaes, Gabriel"/>
</players>
<commentaries>
<commentary text="Arsenal push upfield and Gabriel Magalhaes gets his head to the ball. The attempt is cleared by an alert Leicester defence."/>
</commentaries>
</event>
<event id="1856272271" type="shot_saved" time="2024-09-28T15:12:29+00:00" match_time="53" match_clock="52:32" competitor="away" period="2" period_type="regular_period"/>
<event id="1856272441" type="shot_off_target" time="2024-09-28T15:12:36+00:00" match_time="53" match_clock="52:38" competitor="home" x="90" y="55" period="2" period_type="regular_period" outcome="miss">
<players>
<player id="sr:player:1059325" name="Timber, Jurrien"/>
</players>
<commentaries>
<commentary text="Jurrien Timber of Arsenal gets in a strike, but is off target."/>
</commentaries>
</event>
<event id="1856272489" type="goal_kick" time="2024-09-28T15:12:37+00:00" match_time="53" match_clock="52:38" competitor="away" x="95" y="50" period="2" period_type="regular_period">
<commentaries>
<commentary text="It's a goal kick for the away team in London."/>
</commentaries>
</event>
<event id="1856273879" type="shot_on_target" time="2024-09-28T15:13:27+00:00" match_time="54" match_clock="53:29" competitor="home" x="95" y="68" period="2" period_type="regular_period">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Arsenal's Bukayo Saka is on target but unsuccessful."/>
</commentaries>
</event>
<event id="1856273883" type="shot_saved" time="2024-09-28T15:13:27+00:00" match_time="54" match_clock="53:29" competitor="away" period="2" period_type="regular_period"/>
<event id="1856276233" type="shot_off_target" time="2024-09-28T15:14:46+00:00" match_time="55" match_clock="54:46" competitor="home" x="81" y="60" period="2" period_type="regular_period" outcome="miss">
<players>
<player id="sr:player:937210" name="Havertz, Kai"/>
</players>
<commentaries>
<commentary text="Arsenal are pushing forward but Kai Havertz's finish is wide of the goal."/>
</commentaries>
</event>
<event id="1856276265" type="goal_kick" time="2024-09-28T15:14:47+00:00" match_time="55" match_clock="54:46" competitor="away" x="95" y="50" period="2" period_type="regular_period">
<commentaries>
<commentary text="Leicester have a goal kick."/>
</commentaries>
</event>
<event id="1856277255" type="throw_in" time="2024-09-28T15:15:14+00:00" match_time="56" match_clock="55:20" competitor="home" x="53" y="0" period="2" period_type="regular_period">
<commentaries>
<commentary text="A throw-in for the home team on the opposite half."/>
</commentaries>
</event>
<event id="1856278331" type="shot_off_target" time="2024-09-28T15:15:47+00:00" match_time="56" match_clock="55:50" competitor="home" x="92" y="72" period="2" period_type="regular_period" outcome="miss">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Arsenal are coming forward and Bukayo Saka gets in a strike, it misses the target, however."/>
</commentaries>
</event>
<event id="1856278377" type="goal_kick" time="2024-09-28T15:15:48+00:00" match_time="56" match_clock="55:50" competitor="away" x="95" y="50" period="2" period_type="regular_period">
<commentaries>
<commentary text="Goal kick for Leicester at Emirates Stadium."/>
</commentaries>
</event>
<event id="1856280017" type="throw_in" time="2024-09-28T15:16:39+00:00" match_time="57" match_clock="56:41" competitor="home" x="70" y="100" period="2" period_type="regular_period">
<commentaries>
<commentary text="Throw-in for Arsenal in the half of Leicester."/>
</commentaries>
</event>
<event id="1856282123" type="shot_off_target" time="2024-09-28T15:17:48+00:00" match_time="58" match_clock="57:48" competitor="home" x="89" y="56" period="2" period_type="regular_period" outcome="post">
<players>
<player id="sr:player:135666" name="Trossard, Leandro"/>
</players>
<commentaries>
<commentary text="So close for Arsenal as Leandro Trossard's shot comes back off the post."/>
</commentaries>
</event>
<event id="1856282207" type="goal_kick" time="2024-09-28T15:17:51+00:00" match_time="58" match_clock="57:48" competitor="away" x="95" y="50" period="2" period_type="regular_period">
<commentaries>
<commentary text="It's a goal kick for the away team in London."/>
</commentaries>
</event>
<event id="1856282515" type="free_kick" time="2024-09-28T15:17:56+00:00" match_time="59" match_clock="58:00" competitor="away" x="81" y="9" period="2" period_type="regular_period">
<players>
<player id="sr:player:1663313" name="Martinelli, Gabriel"/>
</players>
<commentaries>
<commentary text="Samuel Barrott signals a free kick to Leicester in their own half."/>
</commentaries>
</event>
<event id="1856284009" type="throw_in" time="2024-09-28T15:18:43+00:00" match_time="59" match_clock="58:45" competitor="away" x="54" y="0" period="2" period_type="regular_period">
<commentaries>
<commentary text="Throw-in Leicester."/>
</commentaries>
</event>
<event id="1856288667" type="shot_off_target" time="2024-09-28T15:21:00+00:00" match_time="62" match_clock="61:06" competitor="away" x="10" y="69" period="2" period_type="regular_period" outcome="miss">
<players>
<player id="sr:player:2184938" name="Facundo, Buonanotte"/>
</players>
<commentaries>
<commentary text="Leicester's Buonanotte Facundo gets his shot away but it misses the target."/>
</commentaries>
</event>
<event id="1856288709" type="goal_kick" time="2024-09-28T15:21:01+00:00" match_time="62" match_clock="61:06" competitor="home" x="5" y="50" period="2" period_type="regular_period">
<commentaries>
<commentary text="Samuel Barrott awards Arsenal a goal kick."/>
</commentaries>
</event>
<event id="1856289175" type="free_kick" time="2024-09-28T15:21:16+00:00" match_time="62" match_clock="61:20" competitor="away" x="83" y="67" period="2" period_type="regular_period">
<players>
<player id="sr:player:135666" name="Trossard, Leandro"/>
</players>
<commentaries>
<commentary text="Free kick for Leicester in their own half."/>
</commentaries>
</event>
<event id="1856290543" type="shot_on_target" time="2024-09-28T15:22:00+00:00" match_time="63" match_clock="62:03" competitor="away" x="10" y="59" period="2" period_type="regular_period">
<players>
<player id="sr:player:2184938" name="Facundo, Buonanotte"/>
</players>
<commentaries>
<commentary text="In London Leicester drive forward through Buonanotte Facundo. His shot is on target but it's saved."/>
</commentaries>
</event>
<event id="1856290555" type="shot_saved" time="2024-09-28T15:22:00+00:00" match_time="63" match_clock="62:03" competitor="home" period="2" period_type="regular_period"/>
<event id="1856292143" type="possible_goal" time="2024-09-28T15:22:44+00:00" match_time="63" match_clock="62:41" competitor="away" period="2" period_type="regular_period"/>
<event id="1856292219" type="score_change" time="2024-09-28T15:22:47+00:00" match_time="63" match_clock="62:41" competitor="away" x="11" y="36" period="2" period_type="regular_period" home_score="2" away_score="2">
<players>
<player id="sr:player:942498" name="Justin, James" type="scorer"/>
<player id="sr:player:795266" name="Ndidi, Wilfred" type="assist"/>
</players>
<commentaries>
<commentary text="Goal! The away team draw level at 2-2 through James Justin."/>
<commentary text="Wilfred Ndidi instrumental with a fine assist."/>
</commentaries>
</event>
<event id="1856296039" type="throw_in" time="2024-09-28T15:24:56+00:00" match_time="66" match_clock="65:01" competitor="home" x="88" y="0" period="2" period_type="regular_period">
<commentaries>
<commentary text="Leicester needs to be cautious. Arsenal have an attacking throw-in."/>
</commentaries>
</event>
<event id="1856297203" type="throw_in" time="2024-09-28T15:25:34+00:00" match_time="66" match_clock="65:36" competitor="home" x="82" y="0" period="2" period_type="regular_period">
<commentaries>
<commentary text="Can Arsenal capitalize from this throw-in deep inside Leicester's half?"/>
</commentaries>
</event>
<event id="1856299281" type="corner_kick" time="2024-09-28T15:26:40+00:00" match_time="67" match_clock="66:40" competitor="home" x="100" y="100" period="2" period_type="regular_period">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Arsenal have been awarded a corner by Samuel Barrott."/>
</commentaries>
</event>
<event id="1856300339" type="corner_kick" time="2024-09-28T15:27:15+00:00" match_time="68" match_clock="67:19" competitor="home" x="100" y="0" period="2" period_type="regular_period">
<players>
<player id="sr:player:934552" name="Rice, Declan"/>
</players>
<commentaries>
<commentary text="Corner awarded to Arsenal."/>
</commentaries>
</event>
<event id="1856301139" type="throw_in" time="2024-09-28T15:27:39+00:00" match_time="68" match_clock="67:40" competitor="home" x="90" y="100" period="2" period_type="regular_period">
<commentaries>
<commentary text="Arsenal have a dangerous throw-in."/>
</commentaries>
</event>
<event id="1856301635" type="shot_on_target" time="2024-09-28T15:27:59+00:00" match_time="69" match_clock="68:04" competitor="home" x="90" y="41" period="2" period_type="regular_period">
<players>
<player id="sr:player:937210" name="Havertz, Kai"/>
</players>
<commentaries>
<commentary text="Arsenal pushes forward through Kai Havertz, whose finish on goal is saved."/>
</commentaries>
</event>
<event id="1856301693" type="shot_saved" time="2024-09-28T15:28:02+00:00" match_time="69" match_clock="68:04" competitor="away" period="2" period_type="regular_period"/>
<event id="1856302319" type="throw_in" time="2024-09-28T15:28:24+00:00" match_time="69" match_clock="68:27" competitor="away" x="60" y="0" period="2" period_type="regular_period">
<commentaries>
<commentary text="Throw-in for Leicester at Emirates Stadium."/>
</commentaries>
</event>
<event id="1856302541" type="shot_off_target" time="2024-09-28T15:28:35+00:00" match_time="69" match_clock="68:41" competitor="home" x="60" y="0" period="2" period_type="regular_period" outcome="miss">
<players>
<player id="sr:player:1297524" name="Calafiori, Riccardo"/>
</players>
<commentaries>
<commentary text="Arsenal's Riccardo Calafiori attacks the ball with his head but his effort fails to hit the target."/>
</commentaries>
</event>
<event id="1856305975" type="yellow_card" time="2024-09-28T15:30:30+00:00" match_time="70" match_clock="69:00" competitor="away" period="2" period_type="regular_period">
<players>
<player id="sr:player:2184938" name="Facundo, Buonanotte"/>
</players>
<commentaries>
<commentary text="Buonanotte Facundo (Leicester) has received a first yellow card."/>
</commentaries>
</event>
<event id="1856304173" type="free_kick" time="2024-09-28T15:29:32+00:00" match_time="70" match_clock="69:33" competitor="away" x="40" y="33" period="2" period_type="regular_period">
<players>
<player id="sr:player:1297524" name="Calafiori, Riccardo"/>
</players>
<commentaries>
<commentary text="In London a free kick has been awarded the away team."/>
</commentaries>
</event>
<event id="1856308583" type="corner_kick" time="2024-09-28T15:31:58+00:00" match_time="73" match_clock="72:02" competitor="home" x="100" y="0" period="2" period_type="regular_period">
<players>
<player id="sr:player:934552" name="Rice, Declan"/>
</players>
<commentaries>
<commentary text="Arsenal have been awarded a corner by Samuel Barrott."/>
</commentaries>
</event>
<event id="1856309273" type="shot_off_target" time="2024-09-28T15:32:20+00:00" match_time="73" match_clock="72:23" competitor="home" x="90" y="59" period="2" period_type="regular_period" outcome="miss">
<players>
<player id="sr:player:1099395" name="Magalhaes, Gabriel"/>
</players>
<commentaries>
<commentary text="Gabriel Magalhaes (Arsenal) wins the ball in the air but heads wide."/>
</commentaries>
</event>
<event id="1856309323" type="goal_kick" time="2024-09-28T15:32:23+00:00" match_time="73" match_clock="72:25" competitor="away" x="95" y="50" period="2" period_type="regular_period">
<commentaries>
<commentary text="Samuel Barrott awards Leicester a goal kick."/>
</commentaries>
</event>
<event id="1856309737" type="shot_on_target" time="2024-09-28T15:32:38+00:00" match_time="73" match_clock="72:39" competitor="home" x="82" y="33" period="2" period_type="regular_period">
<players>
<player id="sr:player:934552" name="Rice, Declan"/>
</players>
<commentaries>
<commentary text="Declan Rice for Arsenal drives towards goal at Emirates Stadium. But the finish is unsuccessful."/>
</commentaries>
</event>
<event id="1856309827" type="shot_saved" time="2024-09-28T15:32:40+00:00" match_time="73" match_clock="72:39" competitor="away" period="2" period_type="regular_period"/>
<event id="1856310665" type="shot_on_target" time="2024-09-28T15:33:07+00:00" match_time="74" match_clock="73:09" competitor="home" x="89" y="41" period="2" period_type="regular_period">
<players>
<player id="sr:player:135666" name="Trossard, Leandro"/>
</players>
<commentaries>
<commentary text="Leandro Trossard gets his shot on target but fails to score for Arsenal."/>
</commentaries>
</event>
<event id="1856310699" type="shot_saved" time="2024-09-28T15:33:08+00:00" match_time="74" match_clock="73:09" competitor="away" period="2" period_type="regular_period"/>
<event id="1856311511" type="substitution" time="2024-09-28T15:33:36+00:00" match_time="74" match_clock="73:37" competitor="home" period="2" period_type="regular_period">
<players>
<player id="sr:player:1663313" name="Martinelli, Gabriel" type="substituted_out"/>
<player id="sr:player:138534" name="Sterling, Raheem" type="substituted_in"/>
</players>
<commentaries>
<commentary text="Mikel Arteta (Arsenal) is making a first substitution, with Raheem Sterling replacing Gabriel Martinelli."/>
</commentaries>
</event>
<event id="1856311761" type="corner_kick" time="2024-09-28T15:33:43+00:00" match_time="74" match_clock="73:43" competitor="home" x="100" y="0" period="2" period_type="regular_period">
<players>
<player id="sr:player:934552" name="Rice, Declan"/>
</players>
<commentaries>
<commentary text="Corner awarded to Arsenal."/>
</commentaries>
</event>
<event id="1856312599" type="shot_on_target" time="2024-09-28T15:34:11+00:00" match_time="75" match_clock="74:15" competitor="home" x="89" y="73" period="2" period_type="regular_period">
<players>
<player id="sr:player:1099395" name="Magalhaes, Gabriel"/>
</players>
<commentaries>
<commentary text="Gabriel Magalhaes of Arsenal smashes in a shot on target. The keeper saves, though."/>
</commentaries>
</event>
<event id="1856312627" type="shot_saved" time="2024-09-28T15:34:12+00:00" match_time="75" match_clock="74:15" competitor="away" period="2" period_type="regular_period"/>
<event id="1856313485" type="throw_in" time="2024-09-28T15:34:40+00:00" match_time="75" match_clock="74:43" competitor="home" x="55" y="100" period="2" period_type="regular_period">
<commentaries>
<commentary text="Can Arsenal get the ball into an attacking position from this throw-in in Leicester's half?"/>
</commentaries>
</event>
<event id="1856315051" type="throw_in" time="2024-09-28T15:35:27+00:00" match_time="76" match_clock="75:29" competitor="away" x="88" y="100" period="2" period_type="regular_period">
<commentaries>
<commentary text="Leicester awarded a throw-in in their own half."/>
</commentaries>
</event>
<event id="1856316175" type="throw_in" time="2024-09-28T15:36:03+00:00" match_time="77" match_clock="76:08" competitor="home" x="61" y="100" period="2" period_type="regular_period">
<commentaries>
<commentary text="Arsenal to take a throw-in in Leicester territory."/>
</commentaries>
</event>
<event id="1856317703" type="goal_kick" time="2024-09-28T15:36:57+00:00" match_time="78" match_clock="77:02" competitor="home" x="5" y="50" period="2" period_type="regular_period">
<commentaries>
<commentary text="It's a goal kick for the home team in London."/>
</commentaries>
</event>
<event id="1856320561" type="corner_kick" time="2024-09-28T15:38:28+00:00" match_time="79" match_clock="78:29" competitor="home" x="100" y="100" period="2" period_type="regular_period">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Arsenal have been awarded a corner by Samuel Barrott."/>
</commentaries>
</event>
<event id="1856321133" type="throw_in" time="2024-09-28T15:38:48+00:00" match_time="79" match_clock="78:46" competitor="away" x="83" y="0" period="2" period_type="regular_period">
<commentaries>
<commentary text="Throw-in for Leicester in their own half."/>
</commentaries>
</event>
<event id="1856322885" type="injury" time="2024-09-28T15:39:46+00:00" match_time="80" match_clock="79:49" competitor="away" x="83" y="0" period="2" period_type="regular_period">
<players>
<player id="sr:player:1061592" name="Hermansen, Mads"/>
</players>
<commentaries>
<commentary text="Mads Hermansen is down and play has been interrupted for a few moments."/>
</commentaries>
</event>
<event id="1856325537" type="injury_return" time="2024-09-28T15:41:17+00:00" match_time="82" match_clock="81:21" competitor="away" period="2" period_type="regular_period">
<players>
<player id="sr:player:1061592" name="Hermansen, Mads"/>
</players>
<commentaries>
<commentary text="Mads Hermansen returns to the field for Leicester after picking up a slight injury."/>
</commentaries>
</event>
<event id="1856326235" type="throw_in" time="2024-09-28T15:41:42+00:00" match_time="82" match_clock="81:43" competitor="home" x="90" y="0" period="2" period_type="regular_period">
<commentaries>
<commentary text="Throw-in for Arsenal close to the penalty box."/>
</commentaries>
</event>
<event id="1856328871" type="goal_kick" time="2024-09-28T15:43:17+00:00" match_time="84" match_clock="83:19" competitor="away" x="95" y="50" period="2" period_type="regular_period">
<commentaries>
<commentary text="Ball goes out of play for a Leicester goal kick."/>
</commentaries>
</event>
<event id="1856330303" type="substitution" time="2024-09-28T15:44:01+00:00" match_time="85" match_clock="84:06" competitor="away" period="2" period_type="regular_period">
<players>
<player id="sr:player:2184938" name="Facundo, Buonanotte" type="substituted_out"/>
<player id="sr:player:103045" name="Ayew, Jordan" type="substituted_in"/>
</players>
<commentaries>
<commentary text="Leicester make their first substitution with Jordan Ayew replacing Buonanotte Facundo."/>
</commentaries>
</event>
<event id="1856330981" type="substitution" time="2024-09-28T15:44:25+00:00" match_time="85" match_clock="84:28" competitor="home" period="2" period_type="regular_period">
<players>
<player id="sr:player:316148" name="Partey, Thomas" type="substituted_out"/>
<player id="sr:player:2447727" name="Nwaneri, Ethan" type="substituted_in"/>
</players>
<commentaries>
<commentary text="Mikel Arteta is making the team's second substitution at Emirates Stadium with Ethan Nwaneri replacing Thomas Partey."/>
</commentaries>
</event>
<event id="1856332613" type="shot_on_target" time="2024-09-28T15:45:14+00:00" match_time="86" match_clock="85:15" competitor="home" x="82" y="65" period="2" period_type="regular_period">
<players>
<player id="sr:player:2447727" name="Nwaneri, Ethan"/>
</players>
<commentaries>
<commentary text="In London Arsenal drive forward through Ethan Nwaneri. His shot is on target but it's saved."/>
</commentaries>
</event>
<event id="1856332665" type="shot_saved" time="2024-09-28T15:45:15+00:00" match_time="86" match_clock="85:15" competitor="away" period="2" period_type="regular_period"/>
<event id="1856332737" type="throw_in" time="2024-09-28T15:45:17+00:00" match_time="86" match_clock="85:17" competitor="home" x="79" y="0" period="2" period_type="regular_period">
<commentaries>
<commentary text="Throw-in for Arsenal in the half of Leicester."/>
</commentaries>
</event>
<event id="1856336003" type="corner_kick" time="2024-09-28T15:47:03+00:00" match_time="88" match_clock="87:08" competitor="home" x="100" y="100" period="2" period_type="regular_period">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Corner awarded to Arsenal."/>
</commentaries>
</event>
<event id="1856336743" type="shot_on_target" time="2024-09-28T15:47:28+00:00" match_time="88" match_clock="87:28" competitor="home" x="92" y="40" period="2" period_type="regular_period">
<players>
<player id="sr:player:1297524" name="Calafiori, Riccardo"/>
</players>
<commentaries>
<commentary text="In London, Riccardo Calafiori (Arsenal) gets his head to the ball but the strike is cleared by an untiring defence."/>
</commentaries>
</event>
<event id="1856336777" type="shot_saved" time="2024-09-28T15:47:29+00:00" match_time="88" match_clock="87:28" competitor="away" period="2" period_type="regular_period"/>
<event id="1856336919" type="corner_kick" time="2024-09-28T15:47:35+00:00" match_time="88" match_clock="87:33" competitor="home" x="100" y="100" period="2" period_type="regular_period">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Corner awarded to Arsenal."/>
</commentaries>
</event>
<event id="1856337903" type="corner_kick" time="2024-09-28T15:48:10+00:00" match_time="89" match_clock="88:13" competitor="home" x="100" y="0" period="2" period_type="regular_period">
<players>
<player id="sr:player:934552" name="Rice, Declan"/>
</players>
<commentaries>
<commentary text="Arsenal have been awarded a corner by Samuel Barrott."/>
</commentaries>
</event>
<event id="1856338285" type="throw_in" time="2024-09-28T15:48:22+00:00" match_time="89" match_clock="88:22" competitor="home" x="82" y="100" period="2" period_type="regular_period">
<commentaries>
<commentary text="Leicester needs to be cautious. Arsenal have an attacking throw-in."/>
</commentaries>
</event>
<event id="1856338893" type="shot_off_target" time="2024-09-28T15:48:44+00:00" match_time="89" match_clock="88:43" competitor="home" x="91" y="48" period="2" period_type="regular_period" outcome="miss"/>
<event id="1856338965" type="goal_kick" time="2024-09-28T15:48:47+00:00" match_time="89" match_clock="88:43" competitor="away" x="95" y="50" period="2" period_type="regular_period">
<commentaries>
<commentary text="Goal kick for Leicester at Emirates Stadium."/>
</commentaries>
</event>
<event id="1856340055" type="injury" time="2024-09-28T15:49:26+00:00" match_time="90" match_clock="89:29" competitor="away" x="95" y="50" period="2" period_type="regular_period"/>
<event id="1856341371" type="substitution" time="2024-09-28T15:50:19+00:00" match_time="90" match_clock="90:00" competitor="away" stoppage_time="1" period="2" period_type="regular_period">
<players>
<player id="sr:player:605338" name="Mavididi, Stephy" type="substituted_out"/>
<player id="sr:player:151499" name="De Cordova-Reid, Bobby" type="substituted_in"/>
</players>
<commentaries>
<commentary text="Bobby De Cordova-Reid is replacing Stephy Mavididi for Leicester at Emirates Stadium."/>
</commentaries>
</event>
<event id="1856341713" type="substitution" time="2024-09-28T15:50:31+00:00" match_time="90" match_clock="90:00" competitor="away" stoppage_time="1" period="2" period_type="regular_period">
<players>
<player id="sr:player:1058725" name="Skipp, Oliver" type="substituted_out"/>
<player id="sr:player:2298727" name="El Khannouss, Bilal" type="substituted_in"/>
</players>
<commentaries>
<commentary text="Bilal El Khannouss is on a sub for Oliver Skipp for Leicester."/>
</commentaries>
</event>
<event id="1856341971" type="injury_time_shown" time="2024-09-28T15:50:41+00:00" match_time="90" match_clock="90:00" stoppage_time="1" stoppage_time_clock="0:43" period="2" period_type="regular_period" injury_time_announced="7"/>
<event id="1856342489" type="goal_kick" time="2024-09-28T15:51:01+00:00" match_time="90" match_clock="90:00" competitor="home" x="5" y="50" stoppage_time="2" stoppage_time_clock="1:06" period="2" period_type="regular_period">
<commentaries>
<commentary text="Arsenal have a goal kick."/>
</commentaries>
</event>
<event id="1856346215" type="corner_kick" time="2024-09-28T15:53:37+00:00" match_time="90" match_clock="90:00" competitor="home" x="100" y="100" stoppage_time="4" stoppage_time_clock="3:37" period="2" period_type="regular_period">
<players>
<player id="sr:player:1479630" name="Saka, Bukayo"/>
</players>
<commentaries>
<commentary text="Corner awarded to Arsenal."/>
</commentaries>
</event>
<event id="1856346603" type="possible_goal" time="2024-09-28T15:53:50+00:00" match_time="90" match_clock="90:00" competitor="home" stoppage_time="4" stoppage_time_clock="3:50" period="2" period_type="regular_period"/>
<event id="1856346809" type="score_change" time="2024-09-28T15:53:59+00:00" match_time="90" match_clock="90:00" competitor="home" x="94" y="30" stoppage_time="4" stoppage_time_clock="3:57" period="2" period_type="regular_period" home_score="3" away_score="2" method="own_goal">
<players>
<player id="sr:player:795266" name="Ndidi, Wilfred" type="scorer"/>
</players>
</event>
<event id="1856349475" type="free_kick" time="2024-09-28T15:55:58+00:00" match_time="90" match_clock="90:00" competitor="home" x="31" y="64" stoppage_time="6" stoppage_time_clock="5:59" period="2" period_type="regular_period">
<players>
<player id="sr:player:2032765" name="Kristiansen, Victor"/>
</players>
<commentaries>
<commentary text="Free kick for Arsenal in their own half."/>
</commentaries>
</event>
<event id="1856350571" type="substitution" time="2024-09-28T15:56:55+00:00" match_time="90" competitor="home" stoppage_time="7" period="2" period_type="regular_period">
<players>
<player id="sr:player:135666" name="Trossard, Leandro" type="substituted_out"/>
<player id="sr:player:835751" name="Jesus, Gabriel" type="substituted_in"/>
</players>
<commentaries>
<commentary text="The home team have replaced Leandro Trossard with Gabriel Jesus. This is the third substitution made today by Mikel Arteta."/>
</commentaries>
</event>
<event id="1856351437" type="substitution" time="2024-09-28T15:57:38+00:00" match_time="90" match_clock="90:00" competitor="away" stoppage_time="8" period="2" period_type="regular_period">
<players>
<player id="sr:player:795266" name="Ndidi, Wilfred" type="substituted_out"/>
<player id="sr:player:769147" name="Edouard, Odsonne" type="substituted_in"/>
</players>
<commentaries>
<commentary text="The away team replace Wilfred Ndidi with Odsonne Edouard."/>
</commentaries>
</event>
<event id="1856351659" type="substitution" time="2024-09-28T15:57:52+00:00" match_time="90" match_clock="90:00" competitor="away" stoppage_time="8" period="2" period_type="regular_period">
<players>
<player id="sr:player:1654317" name="Okoli, Caleb" type="substituted_out"/>
<player id="sr:player:2140422" name="Fatawu, Issahaku" type="substituted_in"/>
</players>
<commentaries>
<commentary text="Issahaku Fatawu is replacing Caleb Okoli for the away team."/>
</commentaries>
</event>
<event id="1856351791" type="free_kick" time="2024-09-28T15:58:00+00:00" match_time="90" match_clock="90:00" competitor="away" x="90" y="62" stoppage_time="9" stoppage_time_clock="8:04" period="2" period_type="regular_period">
<players>
<player id="sr:player:835751" name="Jesus, Gabriel"/>
</players>
<commentaries>
<commentary text="Samuel Barrott signals a free kick to Leicester in their own half."/>
</commentaries>
</event>
<event id="1856352029" type="shot_off_target" time="2024-09-28T15:58:11+00:00" match_time="90" match_clock="90:00" competitor="home" x="86" y="47" stoppage_time="9" stoppage_time_clock="8:17" period="2" period_type="regular_period" outcome="miss">
<players>
<player id="sr:player:937210" name="Havertz, Kai"/>
</players>
<commentaries>
<commentary text="Kai Havertz's header is off-target for Arsenal."/>
</commentaries>
</event>
<event id="1856352063" type="throw_in" time="2024-09-28T15:58:13+00:00" match_time="90" match_clock="90:00" competitor="away" x="52" y="100" stoppage_time="9" stoppage_time_clock="8:13" period="2" period_type="regular_period">
<commentaries>
<commentary text="Ball safe as Leicester is awarded a throw-in in their half."/>
</commentaries>
</event>
<event id="1856353179" type="possible_goal" time="2024-09-28T15:59:14+00:00" match_time="90" match_clock="90:00" competitor="home" stoppage_time="10" stoppage_time_clock="9:15" period="2" period_type="regular_period"/>
<event id="1856353359" type="video_assistant_referee" time="2024-09-28T15:59:25+00:00" match_time="90" match_clock="90:00" stoppage_time="10" stoppage_time_clock="9:27" period="2" period_type="regular_period" description="goal" competitor="home"/>
<event id="1856353737" type="video_assistant_referee_over" time="2024-09-28T15:59:49+00:00" match_time="90" match_clock="90:00" stoppage_time="10" stoppage_time_clock="9:50" period="2" period_type="regular_period" description="goal" competitor="home"/>
<event id="1856353871" type="score_change" time="2024-09-28T15:59:56+00:00" match_time="90" match_clock="90:00" competitor="home" x="96" y="48" stoppage_time="10" stoppage_time_clock="9:55" period="2" period_type="regular_period" home_score="4" away_score="2">
<players>
<player id="sr:player:937210" name="Havertz, Kai" type="scorer"/>
</players>
<commentaries>
<commentary text="Goal! Kai Havertz extends Arsenal's lead to 4-2."/>
</commentaries>
</event>
<event id="1856355427" type="throw_in" time="2024-09-28T16:00:52+00:00" match_time="90" match_clock="90:00" competitor="home" x="57" y="100" stoppage_time="11" stoppage_time_clock="10:55" period="2" period_type="regular_period">
<commentaries>
<commentary text="A throw-in for the home team on the opposite half."/>
</commentaries>
</event>
<event id="1856355989" type="match_ended" time="2024-09-28T16:01:10+00:00" match_clock="90:00"/>
</timeline>
</sport_event_timeline><season_competitor_statistics
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://schemas.sportradar.com/sportsapi/soccer-extended/v4" generated_at="2024-10-07T12:57:11+00:00" xsi:schemaLocation="http://schemas.sportradar.com/sportsapi/soccer-extended/v4 https://d1woxfzdkvuts1.cloudfront.net/bsa-7075/soccer-extended/v4/schemas/season_competitor_statistics.xsd">
<season id="sr:season:118689" name="Premier League 24/25" start_date="2024-08-16" end_date="2025-05-25" year="24/25" competition_id="sr:competition:17">
<sport id="sr:sport:1" name="Soccer"/>
</season>
<competitor id="sr:competitor:42" name="Arsenal FC" country="England" country_code="ENG" abbreviation="ARS" gender="male">
<statistics average_ball_possession="51" cards_given="21" chances_created="74" clearances="199" corner_kicks="50" crosses_successful="37" crosses_total="159" crosses_unsuccessful="122" defensive_blocks="55" diving_saves="6" dribbles="18" free_kicks="73" goals_by_foot="11" goals_by_head="3" goals_conceded="6" goals_conceded_first_half="1" goals_conceded_second_half="5" goals_scored="15" goals_scored_first_half="6" goals_scored_second_half="9" interceptions="29" long_passes_successful="71" long_passes_total="179" long_passes_unsuccessful="108" loss_of_possession="168" matches_played="7" offsides="9" passes_successful="2369" passes_total="2579" passes_unsuccessful="210" red_cards="0" shots_blocked="26" shots_off_target="35" shots_on_bar="2" shots_on_post="1" shots_on_target="42" shots_total="103" tackles_successful="66" tackles_total="84" tackles_unsuccessful="18" was_fouled="61" yellow_cards="19" yellow_red_cards="2"/>
<players>
<player id="sr:player:132874" name="Jorginho">
<statistics assists="0" cards_given="1" chances_created="0" clean_sheets="2" clearances="1" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="1" long_passes_unsuccessful="1" loss_of_possession="4" matches_played="2" minutes_played="151" own_goals="0" passes_successful="56" passes_total="62" passes_unsuccessful="6" penalties_missed="0" red_cards="0" shots_faced="0" shots_off_target="1" substituted_in="0" substituted_out="1" tackles_successful="0" tackles_total="2" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:135666" name="Trossard, Leandro">
<statistics assists="0" cards_given="1" chances_created="10" clean_sheets="8" clearances="3" corner_kicks="1" crosses_successful="4" crosses_total="10" dribbles_completed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="2" interceptions="1" long_passes_successful="5" long_passes_total="6" long_passes_unsuccessful="1" loss_of_possession="11" matches_played="7" minutes_played="338" offsides="1" own_goals="0" passes_successful="70" passes_total="87" passes_unsuccessful="17" penalties_missed="0" red_cards="0" shots_blocked="3" shots_faced="0" shots_off_target="3" shots_on_target="4" substituted_in="3" substituted_out="3" tackles_successful="4" tackles_total="4" yellow_cards="0" yellow_red_cards="1"/>
</player>
<player id="sr:player:138534" name="Sterling, Raheem">
<statistics assists="0" chances_created="0" clean_sheets="4" clearances="0" crosses_successful="0" crosses_total="7" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="1" loss_of_possession="5" matches_played="3" minutes_played="87" own_goals="0" passes_successful="25" passes_total="25" passes_unsuccessful="0" penalties_missed="0" red_cards="0" shots_blocked="1" shots_faced="0" shots_off_target="1" substituted_in="2" substituted_out="1" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:287643" name="Zinchenko, Oleksandr">
<statistics assists="0" chances_created="0" clean_sheets="4" clearances="2" crosses_successful="0" crosses_total="1" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" loss_of_possession="1" matches_played="2" minutes_played="79" own_goals="0" passes_successful="45" passes_total="53" passes_unsuccessful="8" penalties_missed="0" red_cards="0" shots_faced="0" substituted_in="1" substituted_out="1" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:316148" name="Partey, Thomas">
<statistics assists="0" cards_given="2" chances_created="5" clean_sheets="6" clearances="20" crosses_successful="1" crosses_total="3" dribbles_completed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="1" interceptions="9" long_passes_successful="2" long_passes_total="7" long_passes_unsuccessful="5" loss_of_possession="9" matches_played="7" minutes_played="619" own_goals="0" passes_successful="289" passes_total="314" passes_unsuccessful="25" penalties_missed="0" red_cards="0" shots_blocked="1" shots_faced="0" shots_off_target="2" shots_on_target="2" substituted_in="0" substituted_out="2" tackles_successful="10" tackles_total="13" yellow_cards="2" yellow_red_cards="0"/>
</player>
<player id="sr:player:547410" name="Odegaard, Martin">
<statistics assists="0" cards_given="1" chances_created="5" clean_sheets="4" clearances="1" corner_kicks="1" crosses_successful="0" crosses_total="7" dribbles_completed="2" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" loss_of_possession="8" matches_played="3" minutes_played="253" own_goals="0" passes_successful="85" passes_total="99" passes_unsuccessful="14" penalties_missed="0" red_cards="0" shots_faced="0" shots_off_target="1" shots_on_target="2" substituted_in="0" substituted_out="1" tackles_successful="1" tackles_total="1" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:581310" name="Raya, David">
<statistics assists="0" cards_given="1" chances_created="0" clean_sheets="6" clearances="5" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="31" long_passes_total="101" long_passes_unsuccessful="70" loss_of_possession="0" matches_played="7" minutes_played="630" own_goals="0" passes_successful="104" passes_total="105" passes_unsuccessful="1" penalties_missed="0" red_cards="0" shots_faced="0" substituted_in="0" substituted_out="0" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:592010" name="Merino, Mikel">
<statistics assists="0" chances_created="1" clean_sheets="2" clearances="0" crosses_successful="0" crosses_total="1" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="1" long_passes_total="2" long_passes_unsuccessful="1" loss_of_possession="0" matches_played="1" minutes_played="29" own_goals="0" passes_successful="10" passes_total="11" passes_unsuccessful="1" penalties_missed="0" red_cards="0" shots_faced="0" substituted_in="1" substituted_out="0" tackles_successful="0" tackles_total="1" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:772819" name="Tomiyasu, Takehiro">
<statistics assists="0" chances_created="0" clean_sheets="2" clearances="1" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="1" long_passes_unsuccessful="1" loss_of_possession="0" matches_played="1" minutes_played="6" own_goals="0" passes_successful="2" passes_total="2" passes_unsuccessful="0" penalties_missed="0" red_cards="0" shots_faced="0" shots_off_target="1" substituted_in="1" substituted_out="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:835751" name="Jesus, Gabriel">
<statistics assists="0" cards_given="2" chances_created="3" clean_sheets="6" clearances="0" crosses_successful="0" crosses_total="1" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="2" loss_of_possession="3" matches_played="5" minutes_played="79" offsides="1" own_goals="0" passes_successful="15" passes_total="17" passes_unsuccessful="2" penalties_missed="0" red_cards="0" shots_blocked="1" shots_faced="0" shots_off_target="2" substituted_in="4" substituted_out="1" tackles_successful="2" tackles_total="3" yellow_cards="2" yellow_red_cards="0"/>
</player>
<player id="sr:player:934552" name="Rice, Declan">
<statistics assists="0" cards_given="3" chances_created="11" clean_sheets="6" clearances="7" corner_kicks="22" crosses_successful="6" crosses_total="38" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="2" long_passes_successful="7" long_passes_total="11" long_passes_unsuccessful="4" loss_of_possession="9" matches_played="6" minutes_played="494" offsides="1" own_goals="0" passes_successful="179" passes_total="194" passes_unsuccessful="15" penalties_missed="0" red_cards="0" shots_blocked="3" shots_faced="0" shots_off_target="2" shots_on_target="2" substituted_in="0" substituted_out="1" tackles_successful="3" tackles_total="5" yellow_cards="2" yellow_red_cards="1"/>
</player>
<player id="sr:player:936316" name="Nelson, Reiss">
<statistics assists="0" chances_created="0" clean_sheets="2" clearances="0" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" loss_of_possession="0" matches_played="1" minutes_played="2" own_goals="0" penalties_missed="0" red_cards="0" shots_faced="0" substituted_in="1" substituted_out="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:937210" name="Havertz, Kai">
<statistics assists="1" chances_created="2" clean_sheets="6" clearances="7" crosses_successful="1" crosses_total="5" dribbles_completed="1" goals_by_head="1" goals_by_penalty="0" goals_conceded="0" goals_scored="4" interceptions="3" long_passes_successful="1" long_passes_total="2" long_passes_unsuccessful="1" loss_of_possession="41" matches_played="7" minutes_played="630" offsides="3" own_goals="0" passes_successful="120" passes_total="143" passes_unsuccessful="23" penalties_missed="0" red_cards="0" shots_blocked="4" shots_faced="0" shots_off_target="8" shots_on_target="7" substituted_in="0" substituted_out="0" tackles_successful="3" tackles_total="3" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:1015179" name="White, Ben">
<statistics assists="0" chances_created="0" clean_sheets="6" clearances="20" crosses_successful="0" crosses_total="2" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="1" long_passes_total="5" long_passes_unsuccessful="4" loss_of_possession="7" matches_played="5" minutes_played="405" offsides="1" own_goals="0" passes_successful="140" passes_total="157" passes_unsuccessful="17" penalties_missed="0" red_cards="0" shots_blocked="1" shots_faced="0" shots_off_target="1" substituted_in="1" substituted_out="0" tackles_successful="4" tackles_total="5" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:1059325" name="Timber, Jurrien">
<statistics assists="1" cards_given="2" chances_created="7" clean_sheets="6" clearances="24" crosses_successful="1" crosses_total="9" dribbles_completed="2" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="2" long_passes_total="7" long_passes_unsuccessful="5" loss_of_possession="13" matches_played="6" minutes_played="450" own_goals="0" passes_successful="149" passes_total="167" passes_unsuccessful="18" penalties_missed="0" red_cards="0" shots_blocked="1" shots_faced="0" shots_off_target="1" substituted_in="1" substituted_out="3" tackles_successful="7" tackles_total="9" yellow_cards="2" yellow_red_cards="0"/>
</player>
<player id="sr:player:1091644" name="Kiwior, Jakub">
<statistics assists="0" chances_created="0" clean_sheets="2" clearances="0" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" long_passes_successful="0" long_passes_total="1" long_passes_unsuccessful="1" loss_of_possession="0" matches_played="2" minutes_played="16" own_goals="0" passes_successful="3" passes_total="4" passes_unsuccessful="1" penalties_missed="0" red_cards="0" shots_faced="0" substituted_in="2" substituted_out="0" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:1099395" name="Magalhaes, Gabriel">
<statistics assists="0" cards_given="1" chances_created="1" clean_sheets="6" clearances="47" crosses_successful="0" crosses_total="2" dribbles_completed="0" goals_by_head="2" goals_by_penalty="0" goals_conceded="0" goals_scored="2" interceptions="3" long_passes_successful="11" long_passes_total="21" long_passes_unsuccessful="10" loss_of_possession="3" matches_played="7" minutes_played="630" own_goals="0" passes_successful="303" passes_total="313" passes_unsuccessful="10" penalties_missed="0" red_cards="0" shots_blocked="1" shots_faced="0" shots_off_target="4" shots_on_target="5" substituted_in="0" substituted_out="0" tackles_successful="4" tackles_total="4" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:1297524" name="Calafiori, Riccardo">
<statistics assists="0" cards_given="1" chances_created="2" clean_sheets="4" clearances="15" crosses_successful="0" crosses_total="3" dribbles_completed="2" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="1" interceptions="2" long_passes_successful="4" long_passes_total="4" long_passes_unsuccessful="0" loss_of_possession="2" matches_played="5" minutes_played="296" own_goals="0" passes_successful="127" passes_total="137" passes_unsuccessful="10" penalties_missed="0" red_cards="0" shots_faced="0" shots_off_target="1" shots_on_target="3" substituted_in="2" substituted_out="2" tackles_successful="7" tackles_total="9" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:1479630" name="Saka, Bukayo">
<statistics assists="7" cards_given="1" chances_created="18" clean_sheets="6" clearances="4" corner_kicks="25" crosses_successful="16" crosses_total="49" dribbles_completed="5" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="2" interceptions="1" long_passes_successful="0" long_passes_total="2" long_passes_unsuccessful="2" loss_of_possession="28" matches_played="7" minutes_played="569" offsides="1" own_goals="0" passes_successful="178" passes_total="194" passes_unsuccessful="16" penalties_missed="0" red_cards="0" shots_blocked="9" shots_faced="0" shots_off_target="3" shots_on_target="11" substituted_in="0" substituted_out="4" tackles_successful="6" tackles_total="7" yellow_cards="1" yellow_red_cards="0"/>
</player>
<player id="sr:player:1513599" name="Saliba, William">
<statistics assists="0" cards_given="2" chances_created="0" clean_sheets="6" clearances="33" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="4" long_passes_successful="4" long_passes_total="6" long_passes_unsuccessful="2" loss_of_possession="2" matches_played="7" minutes_played="630" own_goals="0" passes_successful="369" passes_total="378" passes_unsuccessful="9" penalties_missed="0" red_cards="0" shots_faced="0" substituted_in="0" substituted_out="0" tackles_successful="10" tackles_total="13" yellow_cards="2" yellow_red_cards="0"/>
</player>
<player id="sr:player:1663313" name="Martinelli, Gabriel">
<statistics assists="2" chances_created="9" clean_sheets="10" clearances="7" corner_kicks="1" crosses_successful="7" crosses_total="20" dribbles_completed="3" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="2" interceptions="1" long_passes_successful="2" long_passes_total="2" long_passes_unsuccessful="0" loss_of_possession="20" matches_played="7" minutes_played="442" offsides="1" own_goals="0" passes_successful="92" passes_total="109" passes_unsuccessful="17" penalties_missed="0" red_cards="0" shots_faced="0" shots_off_target="2" shots_on_target="5" substituted_in="2" substituted_out="4" tackles_successful="4" tackles_total="4" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:2447727" name="Nwaneri, Ethan">
<statistics assists="0" chances_created="0" clean_sheets="4" clearances="1" crosses_successful="1" crosses_total="1" dribbles_completed="1" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" loss_of_possession="2" matches_played="2" minutes_played="9" own_goals="0" passes_successful="7" passes_total="7" passes_unsuccessful="0" penalties_missed="0" red_cards="0" shots_faced="0" shots_on_target="1" substituted_in="2" substituted_out="0" tackles_successful="1" tackles_total="1" yellow_cards="0" yellow_red_cards="0"/>
</player>
<player id="sr:player:2518835" name="Lewis-Skelly, Myles">
<statistics assists="0" cards_given="1" chances_created="0" clean_sheets="0" clearances="1" dribbles_completed="0" goals_by_head="0" goals_by_penalty="0" goals_conceded="0" goals_scored="0" interceptions="0" loss_of_possession="0" matches_played="1" minutes_played="0" own_goals="0" passes_successful="1" passes_total="1" passes_unsuccessful="0" penalties_missed="0" red_cards="0" shots_faced="0" substituted_in="1" substituted_out="0" yellow_cards="1" yellow_red_cards="0"/>
</player>
</players>
</competitor>
</season_competitor_statistics>Gender & Age Group
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 09/10/2024 | Season Competitors | We added competitor This info was previously available in other endpoints. |
<competitor id="sr:competitor:4" name="Milton Keynes Dons" short_name="Milton Keynes" abbreviation="MKD" gender="male"/>
<competitor id="sr:competitor:5" name="Bolton Wanderers" short_name="Bolton" abbreviation="BOL" gender="male"/>
<competitor id="sr:competitor:9" name="Birmingham City" short_name="Birmingham" abbreviation="BC" gender="male"/>
<competitor id="sr:competitor:10" name="Stockport County FC" short_name="Stockport" abbreviation="STO" gender="male"/>
<competitor id="sr:competitor:13" name="Rotherham United" short_name="Rotherham" abbreviation="ROU" gender="male"/>
<competitor id="sr:competitor:18" name="Grimsby Town" short_name="Grimsby" abbreviation="GRI" gender="male"/>
<competitor id="sr:competitor:19" name="Crewe Alexandra" short_name="Crewe" abbreviation="CRE" gender="male"/>
<competitor id="sr:competitor:20" name="Gillingham FC" short_name="Gillingham" abbreviation="GIL" gender="male"/>
<competitor id="sr:competitor:22" name="Bradford City" short_name="Bradford" abbreviation="BRA" gender="male"/>
<competitor id="sr:competitor:23" name="Barnsley" short_name="Barnsley" abbreviation="BAR" gender="male"/>"season_competitors": [
{
"id": "sr:competitor:4",
"name": "Milton Keynes Dons",
"short_name": "Milton Keynes",
"abbreviation": "MKD",
"gender": "male"
},
{
"id": "sr:competitor:5",
"name": "Bolton Wanderers",
"short_name": "Bolton",
"abbreviation": "BOL",
"gender": "male"
},
{
"id": "sr:competitor:9",
"name": "Birmingham City",
"short_name": "Birmingham",
"abbreviation": "BC",
"gender": "male"
},
{
"id": "sr:competitor:10",
"name": "Stockport County FC",
"short_name": "Stockport",
"abbreviation": "STO",
"gender": "male"
},
{
"id": "sr:competitor:13",
"name": "Rotherham United",
"short_name": "Rotherham",
"abbreviation": "ROU",
"gender": "male"
},
{
"id": "sr:competitor:18",
"name": "Grimsby Town",
"short_name": "Grimsby",
"abbreviation": "GRI",
"gender": "male"
},
{
"id": "sr:competitor:19",
"name": "Crewe Alexandra",
"short_name": "Crewe",
"abbreviation": "CRE",
"gender": "male"
},
{
"id": "sr:competitor:20",
"name": "Gillingham FC",
"short_name": "Gillingham",
"abbreviation": "GIL",
"gender": "male"
},
{
"id": "sr:competitor:22",
"name": "Bradford City",
"short_name": "Bradford",
"abbreviation": "BRA",
"gender": "male"
},
{
"id": "sr:competitor:23",
"name": "Barnsley",
"short_name": "Barnsley",
"abbreviation": "BAR",
"gender": "male"
},Competitor Short Name
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 07/23/2024 | Competitor Profile | We added competitor This was previously available in the Season Competitors and Seasonal Competitor Players endpoints. |
<competitor id="sr:competitor:3" name="Wolverhampton Wanderers" short_name="Wolverhampton" country="England" country_code="ENG" abbreviation="WOL" gender="male"/>
<category id="sr:category:1" name="England" country_code="ENG"/>
<sport id="sr:sport:1" name="Soccer"/>{
"competitor":
{
"id": "sr:competitor:3",
"name": "Wolverhampton Wanderers",
"short_name": "Wolverhampton",
"country": "England",
"country_code": "ENG",
"abbreviation": "WOL",
"gender": "male"
},
"category":
{
"id": "sr:category:1",
"name": "England",
"country_code": "ENG"
},
"sport":
{
"id": "sr:sport:1",
"name": "Soccer"
},
}Pagination Update
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 02/26/2024 | Daily Summaries Season Schedules Season Summaries | We have amended or added pagination to the below endpoints. Daily Summaries: Adjusted pagination from 200 to 100 events. Season Schedules: Added pagination to this endpoint at 1,000 events. Season Summaries: Adjusted pagination from 200 to 100 events. |
Active Season Indicator
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 08/28/2023 | Sport Events Created | Added a active_season attribute for newly created matches appearing in the Sport Events Created endpoint.When marked as true this will signify that an added match is part of an active season. |
<sport_event_created id="sr:sport_event:43393169" active_season="true" created_at="2023-08-30T14:42:39+00:00"/>
<sport_event_created id="sr:sport_event:43393167" active_season="true" created_at="2023-08-30T14:42:39+00:00"/>
<sport_event_created id="sr:sport_event:43393165" active_season="true" created_at="2023-08-30T14:42:38+00:00"/>
<sport_event_created id="sr:sport_event:43393163" active_season="true" created_at="2023-08-30T14:42:37+00:00"/>
<sport_event_created id="sr:sport_event:43393029" active_season="true" created_at="2023-08-30T14:37:40+00:00"/>{
"generated_at": "2023-08-30T14:47:30+00:00",
"sport_events_created": [
{
"id": "sr:sport_event:43393169",
"active_season": true,
"created_at": "2023-08-30T14:42:39+00:00"
},
{
"id": "sr:sport_event:43393167",
"active_season": true,
"created_at": "2023-08-30T14:42:39+00:00"
},
{
"id": "sr:sport_event:43393165",
"active_season": true,
"created_at": "2023-08-30T14:42:38+00:00"
},
{
"id": "sr:sport_event:43393163",
"active_season": true,
"created_at": "2023-08-30T14:42:37+00:00"
},'Season Form Standings' Endpoint
| Release Date | Feeds Affected | Benefit |
| 06/14/2023 | Season Form Standings | Released a new Season Form Standings endpoint. This endpoint provides a form table of game results and splits for a given season. It can be leveraged to easily display the W/D/L (win/draw/loss) of each team's recent matches among a variety of splits (total, home, away, 1st half total, 1st half home, 1st half away). |
Assist Coverage Indicator
| Release Date | Feeds Affected | Benefit |
| 05/25/2023 | Season Info | Added an assists Boolean value at the season level to indicate whether assists are provided for a season.
|
Cup Round Data
| Release Date | Feeds Affected | Benefit |
| 03/20/2023 | Season Links | Added order, state, and winner_id to cup rounds in the Season Links endpoint.These new fields can be leveraged to determine the status, order, and winner of a cup round within a season/tournament. |
Pagination Update to Season Probabilities
| Release Date | Feeds Affected | Benefit |
| 03/03/2023 | Season Probabilities | Added pagination to the Season Probabilities endpoint for several APIs. Going forward, the first 200 events will be displayed. To retrieve further events additional query string parameters will be required. For example, to load the next 200 events you will need to append &start=200 to the call and to load the next 200 add &start=400 and so on. |
Category Data
| Release Date | Feeds Affected | Benefit |
| 01/20/2023 | Competition Info | Added the category element to the Competition Info endpoint. This includes category id, name, and country_code. The category will be represented by the country or International to better distinguish the country designation. |
'updated' Attributes for Push Feeds
| Release Date | Feeds Affected | Benefit |
| 11/29/2022 | Push Events | Added updated and updated_time flags to the Push Events feed. This update will better display which game events have been updated. |
'Lineups Confirmed' Attribute
| Release Date | Feeds Affected | Benefit |
| 10/11/2022 | Competitor Summaries Competitor vs Competitor Daily Summaries League Timeline Live Summaries Player Summaries Season Lineups Season Probabilities Season Summaries Sport Event Lineups Sport Event Summary Sport Event Timeline Live Probabilities Sport Event Probabilities Timeline Probabilities | Added a boolean lineups - confirmed attribute to all relevant sport event endpoints. This update will signify lineups have been entered and confirmed for a match. |
Venue Attribute
| Release Date | Feeds Affected | Benefit |
| 09/09/2022 | Competitor Summaries Competitor vs Competitor Daily Summaries League Timeline Live Summaries Player Summaries Season Info Season Lineups Season Probabilities Season Schedules Season Summaries Sport Event Lineups Sport Event Summary Sport Event Timeline Live Probabilities Sport Event Probabilities Timeline Probabilities | Added a boolean venue attribute to all relevant summary and season endpoints. This will indicate whether venue information is available for a certain match. |
Competition Sport Event Number
| Release Date | Feeds Affected | Benefit |
| 08/18/2022 | Competitor Summaries Competitor vs Competitor Daily Summaries League Timeline Live Summaries Player Summaries Season Lineups Season Probabilities Season Summaries Sport Event Lineups Sport Event Summary Sport Event Timeline Live Probabilities Sport Event Probabilities Timeline Probabilities | Added a competition_sport_event_number attribute to relevant match and season endpoints. This attribute helps to support tournaments with fixed match numbers, such as the World Cup. |
Order Added to Stages (Season Links)
| Release Date | Feeds Affected | Benefit |
| 07/12/2022 | Season Links | Added order to stages in the Season Links endpoint. This mirrors the behavior of the Season Info endpoint, providing a structure of stages (e.g., cup -> playoffs). |
'Sport Events Created' Endpoint
| Release Date | Feeds Affected | Benefit |
| 06/22/2022 | Sport Events Created | Our new Sport Events Created endpoint provides a list of all events created within the last 24 hours. Send requests to this endpoint as needed to assist in locating and storing newly created events. |
'Season Transfers' Endpoint
| Release Date | Feeds Affected | Benefit |
| 05/26/2022 | Season Transfers | Added a Season Transfers endpoint to display changes in player roles (transfers/loans/new first-team players) in a given season. |
Added 'start date' for Players
| Release Date | Feeds Affected | Benefit |
| 05/18/2022 | Missing Players | Added a start date for each injury/absence in the Missing Players feed, allowing for a timeline of their absence. |
Ball Situation Status
| Release Date | Feeds Affected | Benefit |
| 05/12/2022 | Competitor Summaries Competitor vs Competitor Daily Summaries League Timeline Live Summaries Live Timelines Live Timelines Delta Player Summaries Season Lineups Season Probabilities Season Schedules Season Summaries Sport Event Lineups Sport Event Summary Sport Event Timelines Push Events Push Statistics Live Probabilities Sport Event Probabilities Timeline Probabilities | Added a data point (match_situation) to display the ball situation during a live match (safe, dangerous, attack). |
Virtual Competitor Signifier
| Release Date | Feeds Affected | Benefit |
| 01/24/2022 | Season Competitors | Added a virtual competitor signifier to the Season Competitors feed. |
Seasonal Statistics
| Release Date | Feeds Affected | Benefit |
| 01/04/2022 | Season Over/Under Statistics | Added support for 1st half and 2nd half totals in the Season Over/Under Statistics feed. |
'Season Over/Under Statistics' Endpoint
| Release Date | Feeds Affected | Benefit |
| 11/09/2021 | Season Over/Under Statistics | Added data points to support the new Season Over/Under Statistics feed. |
'Competitor Merge Mappings' Endpoint
| Release Date | Feeds Affected | Benefit |
| 11/02/2021 | Competitor Merge Mappings | Added data points to support the new Competitor Merge Mappings feed. |
Competition Gender
| Release Date | Feeds Affected | Benefit |
| 11/02/2021 | Competition Info Competitions Competitor Summaries Competitor vs Competitor Daily Summaries League Timeline Live Summaries Player Summaries Season Info Season Lineups Season Probabilities Season Schedules Season Summaries Sport Event Lineups Sport Event Summary Sport Event Timeline Live Probabilities Sport Event Probabilities Timeline Probabilities | Added competition gender to several endpoints. |
Category Info
| Release Date | Feeds Affected | Benefit |
| 11/02/2021 | Competitions | Added category id, category name, and category country_code to the Competitions feed. |
Pagination Update
| Release Date | Feeds Affected | Benefit |
| 10/15/2021 | Daily Summaries Live Summaries Season Summaries Sport Events Updated | Added a pagination support description for the following feeds: Daily Summaries, Live Summaries, Season Summaries, Sport Events Updated. |
Standings Types
| Release Date | Feeds Affected | Benefit |
| 10/06/2021 | Season Standings | Added support for additional standings types. |
Probability Match Times
| Release Date | Feeds Affected | Benefit |
| 09/22/2021 | Live Probabilities Sport Event Probabilities Timeline Probabilities | Added match_time for relevant Probability feeds. |
Season Endpoints
| Release Date | Feeds Affected | Benefit |
| 08/20/2021 | Season Competitors Season Players Seasonal Competitor Players | Added data points in support of the new feeds. |
Team & Player Stats
| Release Date | Feeds Affected | Benefit |
| 08/20/2021 | League Timeline | Added additional statistics for teams: ball_possessions, blocked_shots, corner_kicks, fouls, fouls_suffered, offsides, saves, shots, shots_off_goal, shots_on_goal, substitutions. Added additional statistics for players: corner_kicks, fouls_suffered, offsides, own_goals, shots. |
Probability Package
| Release Date | Feeds Affected | Benefit |
| 05/14/2021 | Live Probabilities Season Outright Probabilities Sport Event Probabilities Sport Event Upcoming Probabilities Timeline Probabilities | Added data points to support the addition of the probabilities package feeds. |
'Season Links' Endpoint
| Release Date | Feeds Affected | Benefit |
| 05/14/2021 | Season Links | Added data points to support the addition of the Season Links feed. |
Stoppage Time
| Release Date | Feeds Affected | Benefit |
| 05/14/2021 | League Timeline Live Timelines Live Timelines Delta Sport Event Timelines Push Events | Added stoppage_time_clock to the timeline feeds and push events. |
Aggregate Scores
| Release Date | Feeds Affected | Benefit |
| 05/14/2021 | Competitor Summaries Competitor vs Competitor Daily Summaries League Timeline Live Summaries Live Timelines Live Timelines Delta Player Summaries Season Lineups Season Probabilities Season Schedules Season Summaries Sport Event Lineups Sport Event Summary Sport Event Timeline Push Events Push Statistics | Added aggregate away and home scores, and aggregate winner info. |
Standings Updates
| Release Date | Feeds Affected | Benefit |
| 10/07/2020 | Season Standings | Added group comment text and competitor form to the Season Standings feed. |
Match Substitution Stats
| Release Date | Feeds Affected | Benefit |
| 10/07/2020 | Competitor Summaries Competitor vs Competitor Daily Summaries Live Summaries Player Summaries Season Summaries Sport Event Summary Sport Event Timeline Push Statistics | Added substitutions statistics to all summary and timeline feeds. |
'Season Schedules' Endpoint
| Release Date | Feeds Affected | Benefit |
| 07/07/2020 | Season Schedules | Added data points to support the new Season Schedules feed. |
Competitor Data
| Release Date | Feeds Affected | Benefit |
| 07/07/2020 | Seasonal Competitor Statistics | Added competitor data points to the Seasonal Competitor Statistics feed. |
Match Tie Boolean Value
| Release Date | Feeds Affected | Benefit |
| 07/07/2020 | Competitor Summaries Competitor vs Competitor Daily Summaries League Timeline Live Summaries Live Timelines Live Timelines Delta Player Summaries Season Lineups Season Probabilities Season Schedules Season Summaries Sport Event Lineups Sport Event Summary Sport Event Timeline Push Events Push Statistics | Added match_tie boolean value to sport_event_status. |
Season Data
| Release Date | Feeds Affected | Benefit |
| 04/30/2020 | Season Info | Added the following data points: competition_status and competitor other_season_id. |
Match Tie Boolean Value
| Release Date | Feeds Affected | Benefit |
| 04/30/2020 | Competitor Summaries Competitor vs Competitor Daily Summaries League Timeline Live Summaries Live Timelines Live Timelines Delta Player Summaries Season Info Season Lineups Season Probabilities Season Schedules Season Summaries Sport Event Lineups Sport Event Summary Sport Event Timeline Push Events Push Statistics | Added the following venue data points: changed, reduced_capacity, and reduced_capacity_max. |
Leaders Endpoint Update
| Release Date | Feeds Affected | Benefit |
| 04/30/2020 | Season Leaders | Added player multiple_competitors to the Season Leaders feed to denote when a player has played for multiple teams. |
Group IDs
| Release Date | Feeds Affected | Benefit |
| 04/30/2020 | Season Standings | Updated group ids in the Season Standings feed to include “sr:group:” |
'League Timeline' Endpoint
| Release Date | Feeds Affected | Benefit |
| 03/17/2020 | League Timeline | Added data points in support of the new League Timeline feed. |
Push Feeds Release
| Release Date | Feeds Affected | Benefit |
| 03/09/2020 | Push Events Push Statistics | Added data points in support of the new Push Events and Push Statistics feeds |
Round Updates
| Release Date | Feeds Affected | Benefit |
| 01/08/2020 | Competitor Summaries Competitor vs Competitor Daily Summaries Live Summaries Player Summaries Season Lineups Season Probabilities Season Summaries Sport Event Lineups Sport Event Summary Sport Event Timeline | Added additional round data, including: cup_round_number_of_sport_events, cup_round_sport_event_number, and other_sport_event_id. Added ground – neutral boolean flag. |
Lineup Availability Support
| Release Date | Feeds Affected | Benefit |
| 09/30/2019 | Competitor Summaries Competitor vs Competitor Daily Summaries Live Summaries Player Summaries Season Info Season Lineups Season Probabilities Season Summaries Sport Event Lineups Sport Event Summary Sport Event Timeline | Added the Lineup Availability data point for Sport Event Properties. |
Missed Penalty Shots
| Release Date | Feeds Affected | Benefit |
| 09/30/2019 | Competitor Summaries Competitor vs Competitor Daily Summaries Live Summaries Player Summaries Season Summaries Sport Event Summary Sport Event Timeline | Added the Penalties Missed data point. |
Seasonal Competitor Stats
| Release Date | Feeds Affected | Benefit |
| 09/30/2019 | Seasonal Competitor Statistics | Added the following data points: Goals Conceded First Half, Goals Conceded Second Half, Goals Scored First Half, and Goals Scored Second Half. |
API Release
| Release Date | Feeds Affected | Benefit |
| 07/23/2019 | All | Initial release of Soccer Extended v4. |
