Docs
Coverage MatrixDocumentationRelease LogLog InContact Us

Push Statistics

Provides real-time team and player match-level statistics for all live matches.

Syntax

https://api.sportradar.com/soccer/{access_level}/{version}/stream/statistics/subscribe?api_key={your_api_key}

Replace placeholders with the following query parameters:

ParameterDescription
access_levelDefines the access level of your API key as Production (production) or Trial (trial).
versionVersion number of the API you are accessing (Current Version: v4).
your_api_keyYour API key.

Optional Query String Parameters

In addition to the URL parameters listed above, you can filter the Events information with one or more of the following optional query string parameters.

📘

Optional query string parameters must be added after your API key with an ampersand (&). If you are filtering for more than one result, separate the results with a comma (,) and no spaces.

Replace placeholders with the following query parameters:

ParameterDescription
competition_idCompetition id expressed as: {competition_id}.
Example: competition_id=sr:competition:204
event_idEvent type expressed as: {event_type}.
Example: event_id=free_kick
formatFormat type expressed as: {format}.
Example: format=json
season_idSeason id expressed as: {season_id}.
Example: season_id=sr:season:50039
sport_event_idSport event id expressed as: {sport_event_id}.
Example: sport_event_id=sr:sport_event_id:13644241


Code Samples

require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://api.sportradar.com/soccer/trial/v4/stream/statistics/subscribe?api_key={your_api_key}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
import requests
import json

r = requests.get("https://api.sportradar.com/soccer/trial/v4/stream/statistics/subscribe",
    params = {'api_key': 'your_api_key'},
    allow_redirects=False)

redirect_url = r.headers['Location']
r = requests.get(redirect_url, stream=True)

for line in r.iter_lines():
    # filter out keep-alive new lines
    if line:
        decoded_line = line.decode('utf-8')
        print(json.loads(decoded_line))
curl -L "https://api.sportradar.com/soccer/trial/v4/stream/statistics/subscribe?api_key={your_api_key}"

Samples with Query String Params

require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://api.sportradar.com/soccer/trial/v4/stream/statistics/subscribe?api_key={your_api_key}&format=json&sport_event_id=sr:match:13468929")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
import requests
import json

r = requests.get("https://api.sportradar.com/soccer/trial/v4/stream/statistics/subscribe",
    params = {'api_key': 'your_api_key', 'format': 'json', 'sr:match:13468929': 'test_this_thing'},
    allow_redirects=False)

redirect_url = r.headers['Location']
r = requests.get(redirect_url, stream=True)

for line in r.iter_lines():
    # filter out keep-alive new lines
    if line:
        decoded_line = line.decode('utf-8')
        print(json.loads(decoded_line))
curl -L GET 'api.sportradar.com/soccer/trial/v4/stream/statistics/subscribe?api_key={your_api_key}&format=json&sport_event_id=sr:match:13468929'


Response Sample

The above commands return json like this.



Data Points

Metadata:
AttributeParent ElementTypeDescription
channelmetadataStringSport of the stream connection
ex. soccer
competition_idmetadataStringUnique Id of a competition
ex. sr:competition:23
event_idmetadataStringDescription of a push statistic event
match_started, match_ended, period_start, period_score, score_change, yellow_card, yellow_red_card, red_card, substitution, injury_time_shown, free_kick, goal_kick, throw_in, offside, corner_kick, shot_on_target, shot_off_target, save, injury, penalty_kick, player_back_from_injury, penalty_missed, penalty_shootout, decision_to_var, decision_to_var_over, possible_decision_to_var, canceled_decision_to_var, break_start, injury_return, video_assistant_referee, video_assistant_referee_over, penalty_awarded, shot_saved, possible_goal
formatmetadataStringFormat type of the response
json, xml
season_idmetadataStringUnique Id of a season
ex. sr:season:106499
sport_event_idmetadataStringUnique Id of a sport event
ex. sr:sport_event_id:42134765
sport_idmetadataStringUnique Id of a sport
ex. sr:sport:1
fromheartbeatIntegerUnix timestamp of the beginning of a heartbeat message
ex. 1713804799
toheartbeatIntegerUnix timestamp of the end of a heartbeat message
ex. 1713804804
intervalheartbeatIntegerInterval of a heartbeat message in seconds
typeheartbeatStringType of heartbeat message
ex. events, statistics
packageheartbeatStringPackage of a heartbeat message
ex. soccer-v4
Sport Event Status:

| aggregate_away_score | sport_event_status | Integer | Aggregate score (of multiple sport events) for the away team |
| aggregate_home_score | sport_event_status | Integer | Aggregate score (of multiple sport events) for the home team |
| aggregate_winner_id | sport_event_status | String | Unique ID of the aggregate score winner
ex. sr:competitor:44 |
| away_normaltime_score | sport_event_status | Integer | Score for the away team in normal time |
| away_overtime_score | sport_event_status | Integer | Score for the away team in overtime |
| away_score | sport_event_status | Integer | Total score for the away team in the match |
| home_normaltime_score | sport_event_status | Integer | Score for the home team in normal time |
| home_overtime_score | sport_event_status | Integer | Score for the home team in overtime |
| home_score | sport_event_status | Integer | Total score for the home team in the match |
| match_status | sport_event_status | String | Status within a match. Provides more detail on the state of a match when live than status
ex. not_started, 2nd_half, ended, awaiting_penalties

See our FAQ for a complete list of statuses and their definitions. |
| match_tie | sport_event_status | Boolean | Signifies a match ended in a tie when true |
| scount_abandoned | sport_event_status | Boolean | Signifies a match was abandoned by a scout when true |
| status | sport_event_status | String | Status of a match
ex. not_started, 2nd_half, ended, awaiting_penalties

See our FAQ for a complete list of statuses and their definitions. |
| winner_id | sport_event_status | String | Unique ID of the match winner
ex. sr:competitor:44 |

Ball Location:

Visit our FAQ for additional information on ball location data.

AttributeParent ElementTypeDescription
ordersport_event_status - ball_locations - ball_locationIntegerSequential order of a ball location event. The most recent location is 4 and the oldest location is 1.
qualifiersport_event_status - ball_locations - ball_locationStringDesignation of a competitor for a ball location entry
home, away
xsport_event_status - ball_locations - ball_locationStringHorizontal X coordinate of the pitch. x is a number between 0 and 100. The reference point 0 is at the home team’s goal.
ysport_event_status - ball_locations - ball_locationStringVertical Y coordinate of the pitch. y is a number between 0 and 100. The reference point 0 is on the top of the pitch where the home team’s goal is on the left hand side.
Sport Event Situation:
AttributeParent ElementTypeDescription
playedsport_event_status - clockStringMatch clock time in minutes
90:00
stoppage_time_playedsport_event_status - clockStringStoppage time played in minutes
5:49
stoppage_time_announcedsport_event_status - clockStringStoppage time announced in minutes
5:00
statussport_event_status - match_situationStringCurrent situtation status of a match
safe, dangerous, attack
qualifiersport_event_status - match_situationStringDefines the team in the current situation status
home, away
updated_atsport_event_status - match_situationDate-TimeTimestamp of the most recent match situation update
ex. 2024-04-14T14:57:28+00:00
away_scoresport_event_status - period_scoresIntegerAway team period score
home_scoresport_event_status - period_scoresIntegerHome team period score
numbersport_event_status - period_scoresIntegerPeriod number
typesport_event_status - period_scoresStringPeriod type
regular_period, overtime, penalties, pause, awaiting_extra, extra_time_halftime, interrupted
Competitor:
AttributeParent ElementTypeDescription
abbreviationstatistics - competitorsStringAbbreviation for a competitor name
ex. LIV (Liverpool FC)
age_groupstatistics - competitorsStringAge group of a competitor, when applicable
ex. U23
countrystatistics - competitorsStringCountry of a competitor
ex. England
country_codestatistics - competitorsStringCountry code of a competitor
ex. ENG (England)
genderstatistics - competitorsStringGender for a competitor
male, female
idstatistics - competitorsStringUnique ID for a competitor
ex. sr:competitor:44 (Liverpool FC)
namestatistics - competitorsStringName for a competitor
ex. Liverpool FC
qualifierstatistics - competitorsStringDesignation of a competitor for a sport event
home, away
virtualstatistics - competitorsBooleanSignifies a competitor is a virtual team whan true. Used for placeholder teams in TBD vs TBD matchups.
Match Stats (Team):
AttributeParent ElementTypeDescription
ball_posessioncompetitor - statisticsIntegerPercentage of team ball possession for a match.
ex. 43
cards_givencompetitor - statisticsIntegerTotal cards given to a team in a match
corner_kickscompetitor - statisticsIntegerTotal team corner kicks for a match
foulscompetitor - statisticsIntegerTotal number of fouls awarded against a team (including those which draw cards)
free_kickscompetitor - statisticsIntegerTeam free kicks for a match. In accordance with the rules, a free kick stat counted for the team who executes a free kick. Direct or indirect free kicks are all counted as free kicks.
goal_kickscompetitor - statisticsIntegerTeam goal kicks for a match. Total number of kicks awarded to the team as a result of the ball traveling out of bounds over the goal line of the defending team.
injuriescompetitor - statisticsIntegerTotal team injuries for a match
offsidescompetitor - statisticsIntegerTotal team offside infringements for a match
penalties_missedcompetitor - statisticsIntegerTotal team penalty shots missed for a match
red_cardscompetitor - statisticsIntegerTotal team red cards for a match
shots_blockedcompetitor - statisticsIntegerTotal team shots blocked for a match
shots_off_targetcompetitor - statisticsIntegerTotal team off-target shots for a match
shots_on_targetcompetitor - statisticsIntegerTotal team on-target shots for a match
shots_savedcompetitor - statisticsIntegerTotal number of goal keeper saves attributed to a team for a match
shots_totalcompetitor - statisticsIntegerTotal number of shots attributed to a team for a match
substitutionscompetitor - statisticsIntegerTotal number player subsitutions in a match
throw_inscompetitor - statisticsIntegerTotal number of throw-in events for a team during a match
yellow_cardscompetitor - statisticsIntegerTotal team yellow cards for a match
yellow_red_cardscompetitor - statisticsIntegerPlayer red cards for a match resulting from two yellow cards
Player:
AttributeParent ElementTypeDescription
idstatistics - competitor - playersStringUnique ID of a player
ex. sr:player:159665
namestatistics - competitor - playersStringName of a player
ex. Salah, Mohamed
starterstatistics - competitor - playersBooleanSignifies a player is in the starting lineup for a sport event when true
Match Stats (Player):
AttributeParent ElementTypeDescription
assistsplayers - statisticsIntegerPlayer assists for a match
corner_kicksplayers - statisticsIntegerPlayer corner kicks for a match
goals_scoredplayers - statisticsIntegerPlayer goals scored for a match
offsidesplayers - statisticsIntegerPlayer offsides for a match
own_goalsplayers - statisticsIntegerPlayer own goals for a match
penalties_missedplayers - statisticsIntegerPlayer penalty shots missed for a match
red_cardsplayers - statisticsIntegerPlayer red cards for a match
shots_blockedplayers - statisticsIntegerPlayer shots blocked for a match
shots_off_targetplayers - statisticsIntegerPlayer shots off target for a match
shots_on_targetplayers - statisticsIntegerPlayer shots on target for a match
substituted_inplayers - statisticsIntegerSignifies a player was substituted in during a match when 1
substituted_outplayers - statisticsIntegerSignifies a player was substituted out during a match when 1
yellow_cardsplayers - statisticsIntegerPlayer yellow cards for a match
yellow_red_cardsplayers - statisticsIntegerTotal team red cards for a match which resulted from two yellow cards