USFL Push Events provides detailed, real-time information on every live game event.
Syntax
https://api.sportradar.com/usfl/official/{access_level}/stream/{language_code}/events/subscribe?api_key={your_api_key} |
Replace placeholders with the following query parameters:
Parameter | Description |
---|---|
access_level | Defines the access level of your API key as Production (production), or Trial (trial). |
language_code | Optional code for supported languages: en (English). |
your_api_key | Your 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:
Parameter | Description |
---|---|
event_category | Event category expressed as: {event_category}. Example: event_category=redzone Valid event categories: redzone, two_minute, scoring_play, big_play, turnover |
event_type | Event type expressed as: {event_type}. Example: event_type=timeout Valid event types: setup, timeout, tv_timeout, two_minute_warning, comment, period_end, game_over |
locale | Locale expressed as 2 letter code: locale={language_code} Example: locale:en |
match | Match id expressed as: sd:match:{match_id}. Example: sd:match:673b459c-7506-4c11-9273-1b9502537f1d |
status | Status type expressed as: inprogress or created. Example: status=inprogress |
team | Team id expressed as: sd:team:{team_id}. Example: sd:team:4415b0a7-0f24-11e2-8525-18a905767e44 |
Code Samples
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://api.sportradar.us/usfl/trial/stream/en/events/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/usfl/trial/stream/en/events/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 GET 'api.sportradar.us/usfl/trial/stream/en/events/subscribe?api_key={your_api_key}'
Samples with Query String Params
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://api.sportradar.us/usfl/trial/stream/en/events/subscribe?api_key={your_api_key}&status=inprogress&match=sd:match:673b459c-7506-4c11-9273-1b9502537f1d")
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/usfl/trial/stream/en/events/subscribe",
params = {'api_key': 'your_api_key', 'status': 'inprogress', 'match': 'sd:match:673b459c-7506-4c11-9273-1b9502537f1d'},
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.us/usfl/trial/stream/en/events/subscribe?api_key={your_api_key}&status=inprogress&match=sd:match:673b459c-7506-4c11-9273-1b9502537f1d'
Response Sample
The above commands return json like this.
Data Points
Boxscore:
Attribute | Parent Element | Type | Description |
---|---|---|---|
attendance | game | Integer | Attendance of a game ex. 73242 |
remaining_timeouts | away | Integer | Away team timeouts remaining |
used_timeouts | away | Integer | Away team timeouts used |
points | away | Integer | Away team total points |
points | home | Integer | Home team total points |
clock | game | String | Clock value of the game ex. 12:37 |
remaining_timeouts | home | Integer | Home team timeouts remaining |
used_timeouts | home | Integer | Home team timeouts used |
quarter | game | Integer | Quarter number of the game |
Game:
Attribute | Parent Element | Type | Description |
---|---|---|---|
alias | away | String | Away team alias ex. NO (New Orleans) |
id | away | GUID | Unique ID of the away team ex. 51da96b0-9676-11ec-9ad0-d3ebe46bbb12 |
market | away | String | Away team market name ex. New Orleans |
name | away | String | Away team name ex. Breakers |
sr_id | away | String | Unique Sportradar ID of the away team ex. sr:competitor:882413 |
duration | game | String | Duration of the game ex. 2:52 |
entry_mode | game | String | Type of data entry for the gameLDE (Live Data Entry) |
alias | home | String | Home team alias ex. TB (Tampa Bay) |
id | home | GUID | Unique ID of the home team ex. 6b5d0b90-9676-11ec-9ad0-d3ebe46bbb12 |
market | home | String | Home team market name ex. Tampa Bay |
name | home | String | Home team name ex. Bandits |
sr_id | home | String | Unique Sportradar ID of the home team ex. sr:competitor:882415 |
id | game | GUID | Unique ID of a game ex. 13025660-aa95-4885-b33e-3a3554d4c4c3 |
scheduled | game | Date/Time | Scheduled date and time of a game ex. 2022-09-25T20:10:00+00:00 |
sr_id | game | String | Unique Sportradar ID of a game ex. sr:match:33623305 |
status | game | String | Game status scheduled , created , inprogress , halftime , complete , closed , cancelled , delayed , suspended , postponed , time-tbd See our USFL FAQ for game status descriptions |
weather | game | String | Weather description for a game ex. Sunny Temp: 69 F, Humidity: 70%, Wind: WSW 9 mph |
wx_condition | game | String | Weather conditions for a game ex. Partly cloudy |
wx_humidity | game | Byte | Humidity conditions for a game ex. 44 |
wx_temp | game | Byte | Temperature of a game in Fahrenheit ex. 57 |
wx_wind_direction | game | String | Wind direction for a game ex. N |
wx_wind_speed | game | Byte | Wind speed for a game in MPH |
Metadata:
Attribute | Parent Element | Type | Description |
---|---|---|---|
event_category | metadata | String | Category of an event ex. scoring_play |
event_type | metadata | String | Type of an event ex. pass or field_goal |
league | metadata | String | Alias of a league ex. usfl |
locale | metadata | String | Language code ex. en (English) |
match | metadata | GUID | Unique ID(s) of a game ex. sd:match:932eea38-0d94-4db5-b861-69b1a0ca47dc,sr:match:325678 |
operation | metadata | String | Operation of an updateupdate , delete |
status | metadata | String | The status of a gamescheduled , created , inprogress , halftime , complete , closed , cancelled , postponed , delayed , flex-schedule , time-tbd |
team | metadata | GUID | Unique ID(s) of a team ex. sd:team:c8797380-9677-11ec-9193-6b32ce92fd29,sr:competitor:882423 |
version | metadata | String | Version of the API ex. v6 |
Play-by-Play Details:
Attribute | Parent Element | Type | Description |
---|---|---|---|
category | details | String | Play detail category ex. kick_off , kick_off_return , tackle |
description | - | String | Text description of a play ex. G.Groshek rushed to PIT 37 for 7 yards. Tackled by TB at PIT 37. |
direction | details | String | Direction of action for a play Rush: short left , short right , short middle , deep right , deep left , deep middle , left , right , middle Pass: backward pass , handoff , lateral , reverse , left tackle , left guard , up the middle , right guard , right tackle , right end , left end , kneels |
alias | end_location | String | Team alias of the location of the ball at the conclusion of a play ex. PIT (Pittsburgh) |
yardline | end_location | Integer | Yardline location of the ball at the conclusion of a play ex. 45 |
onside | details | String | Signifies an onside kick |
description | penalty | String | Text description of a penalty ex. ENALTY on TB-D.Mack, Defensive Holding, 5 yards, accepted. |
no_play | penalty | String | Signifies a nullified play due to a penalty |
result | penalty | String | Result of a penaltyaccepted , declined , offset |
safety | penalty | Boolean | Signifies a play ending in a safety |
yards | penalty | Integer | Number of yards penalized on the play |
result | details | String | Result of the play |
sequence | details | Integer | Sequence number of the play detail |
alias | start_location | String | Team alias of the location of the ball at the beginning of a play ex. PIT (Pittsburgh) |
yardline | start_location | Integer | Yardline location of the ball at the beginning of a play ex. 45 |
yards | details | Integer | Yards gained or lost on the play |
Play-by-Play Drive:
Attribute | Parent Element | Type | Description |
---|---|---|---|
created_at | drive | Date/Time | Timestamp of the start of a drive ex. 2022-10-09T17:03:16+00:00 |
duration | drive | String | Duration of a drive in MM:SS format |
end_reason | drive | String | End result of a drive ex. Touchdown See our FAQ for a list of valid end reasons and their definitions |
first_downs | drive | Integer | Number of first downs in a drive |
gain | drive | Integer | Number of yards gained in a drive |
id | drive | GUID | Unique ID a drive ex. 4b4e0d76-65ed-46f2-a894-14bacb5fe909 |
inside_20 | drive | Boolean | Signifies a drive which ends inside the opponent's 20 yardline |
penalty_yards | drive | Integer | Number of penalty yards |
play_count | drive | Integer | Number of plays in a drive |
scoring_drive | drive | Boolean | Signifies a drive which ends in a score |
sequence | drive | Integer | Sequential number of the drive within a game |
start_reason | drive | String | Start reason of a drive ex. Field Goal See our FAQ for a list of valid start reasons and their definitions |
updated_at | drive | Date/Time | Timestamp of the last update of a drive ex. 2022-10-09T17:11:59+00:00 |
Play-by-Play Ending Situation:
Attribute | Parent Element | Type | Description |
---|---|---|---|
clock | end_situation | String | Game clock value at the end of a play ex. 14:55 |
down | end_situation | Integer | Down at the end of a play |
alias | end_situation - location | String | Team alias of the location of the ball at the end of a play ex. PIT (Pittsburgh) |
id | end_situation - location | GUID | Unique ID of a team of the team with possession at the end of a play ex. 7b112545-38e6-483c-a55c-96cf6ee49cb8 |
market | end_situation - location | String | Team market name ex. Pittsburgh |
name | end_situation - location | String | Team name ex. Maulers |
sr_id | end_situation - location | GUID | Unique Sportradar ID of the team with possession at the end of a play ex. sr:competitor:882423 |
yardline | end_situation - location | Integer | Yardline of the ball at the end of a play |
alias | end_situation - possession | String | Team alias of the possession of the ball at the end of a play ex. PIT (Pittsburgh) |
id | end_situation - possession | GUID | Unique ID of a team of the team with possession at the end of a play ex. 7b112545-38e6-483c-a55c-96cf6ee49cb8 |
market | end_situation - possession | String | Team market name ex. Pittsburgh |
name | end_situation - possession | String | Team name ex. Maulers |
sr_id | end_situation - possession | GUID | Unique Sportradar ID of the team with possession at the end of a play ex. sr:competitor:882423 |
yfd | end_situation | Integer | Yards to gain a first down at the end of a play |
Play-by-Play Event:
Attribute | Parent Element | Type | Description |
---|---|---|---|
clock | event | String | Clock value for an event ex. 12:37 |
created_at | event | Date/Time | Timestamp of the creation of an event ex. 2022-09-20T00:54:16+00:00 |
description | - | String | Text description of an event ex. G.Groshek rushed right guard to PIT 36 for 7 yards. Tackled by TB at PIT 36. |
id | event | String | Unique ID of an event ex. fd790d30-4e81-11ed-b357-5954f3d7fdac |
sequence | event | Decimal | Sequence number of an event or play. Used to sequence events properly ex. 1665336878436.0 |
type | event | String | Type of an eventsetup , timeout , tv_timeout , two_minute_timeout , comment , period_end , game_over |
updated_at | event | Date/Time | Timestamp of the last update of an event ex. 2022-09-20T00:54:16+00:00 |
id | event - period | GUID | Unique ID of a period (quarter) ex. 549d0bdb-da2a-4838-baec-12cec6691cf8 |
number | event - period | Integer | Number of a period (quarter) |
sequence | event - period | Integer | Sequential number of a period (quarter) |
Play-by-Play Play:
Attribute | Parent Element | Type | Description |
---|---|---|---|
away_points | play | Integer | Away points at the end of a play |
clock | play | String | Clock value for a play ex. 12:37 |
created_at | play | Date/Time | Timestamp of the creation of a play ex. 2022-09-20T00:54:16+00:00 |
description | - | String | Text description of a play ex. J.Love steps back to pass. J.Love sacked at PIT 34 for -7 yards (Z.Dawe) |
home_points | play | Integer | Home points at the end of a play |
id | play | GUID | Unique ID of a play ex. 6704c380-bf7f-11ec-afc9-fb514f3047e8 |
play_direction | play | String | Direction of action for a play Rush: short left , short right , short middle , deep right , deep left , deep middle , left , right , middle Pass: backward pass , handoff , lateral , reverse , left tackle , left guard , up the middle , right guard , right tackle , right end , left end , kneels |
play_type | play | String | Type of a play ex. rush or penalty |
scoring_play | play | Boolean | Signifies whether a play resulted in a score |
sequence | play | Decimal | Sequence number of an event or play. Used to sequence events properly ex. 1665336878436.0 |
updated_at | play | Date/Time | Timestamp of the last update of a play ex. 2022-09-20T00:54:16+00:00 |
wall_clock | play | Date/Time | Timestamp of the start of the play/event entry ex. 2022-10-09T17:12:08+00:00 |
Play-by-Play Points After:
Attribute | Parent Element | Type | Description |
---|---|---|---|
id | points-after-play | GUID | Unique ID of a point after attempt ex. a397a7c0-47f8-11ed-972d-8539f16b8bbf |
type | points-after-play | String | Type of a point after attemptextra_point , conversion , penalty |
sequence | points-after-play | Decimal | Sequence number of an event or play. Used to sequence events properly ex. 1665336878436.0 |
Play-by-Play Scoring:
Attribute | Parent Element | Type | Description |
---|---|---|---|
away_points | score | Integer | Number of away team points |
clock | score | Boolean | Clock value for a score ex. 12:37 |
home_points | score | Integer | Number of home team points |
points | score | Integer | Number of points for a score |
sequence | score | Integer | Sequence number of an event or play. Used to sequence events properly ex. 1665336878436.0 |
Play-by-Play Starting Situation:
Attribute | Parent Element | Type | Description |
---|---|---|---|
clock | start_situation | String | Clock value at the start of a play ex. 12:37 |
down | start_situation | Integer | Down at the start of a play |
alias | location | String | Team alias of the location of the ball at the start of a play ex. PIT (Pittsburgh) |
id | start_situation - location | GUID | Unique ID of a team of the team with possession at the start of a play ex. 33405046-04ee-4058-a950-d606f8c30852 |
market | start_situation - location | String | Team market name ex. Pittsburgh |
name | start_situation - location | String | Team name ex. Maulers |
sr_id | start_situation - location | GUID | Unique Sportradar ID of the team with possession at the start of a play ex. sr:competitor:882423 |
yardline | start_situation - location | Integer | Yardline of the ball at the start of a play |
alias | start_situation - possession | String | Team alias of the possession of the ball at the start of a play ex. PIT (Pittsburgh) |
id | start_situation - possession | GUID | Unique ID of a team of the team with possession at the start of a play ex. 33405046-04ee-4058-a950-d606f8c30852 |
market | start_situation - possession | String | Team market name ex. Pittsburgh |
name | start_situation - possession | String | Team name ex. Maulers |
sr_id | start_situation - possession | GUID | Unique Sportradar ID of the team with possession at the start of a play ex. sr:competitor:882423 |
yfd | end_situation | Integer | Yards to gain a first down at the start of a play |
Kick & Punt Block Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
block | block | Integer | Number kick blocks |
category | block | String | Type of blocked kickfield_goal , extra_point , punt |
Conversion Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
attempt | conversion | Integer | Number of conversion attempts |
category | conversion | String | Category of conversionpass , receive , rush , turnover |
complete | conversion | Integer | Number of conversion completions |
safety | conversion | Integer | Number of conversion safeties |
Defensive Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
ast_sack | defense | Integer | Number of assisted sacks |
ast_tackle | defense | Integer | Number of assisted tackles |
ast_tlost | defense | Integer | Number of assisted tackles for a loss |
block | defense | Integer | Number of blocked kicks/punts |
category | defense | String | Category of defensive statisticdefense , special_team , misc |
forced_fumble | defense | Integer | Number of forced fumbles |
interception | defense | Integer | Number of interceptions |
int_touchdown | defense | Integer | Number of interceptions for a touchdown |
int_yards | defense | Integer | Number of interception yards |
nullified | defense | Boolean | Nullified play flag |
pass_defended | defense | Integer | Number of passes defended |
primary | defense | Integer | Indicates whether the assist tackler was the primary tackler on a play *This stat is unsupported since 2021 |
qb_hit | defense | Integer | Number of hits on the quarterback |
sack | defense | Integer | Number of sacks |
sack_yards | defense | Integer | Number of sack yards |
safety | defense | Integer | Number of safeties |
tlost | defense | Integer | Number of tackles for a loss |
tlost_yards | defense | Integer | Number of tackles for a loss yardage |
tackle | defense | Integer | Number of tackles |
Defensive Conversion Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
attempt | defense_conversion | Integer | Number of defensive conversion attempts |
category | defense_conversion | String | Category of defensive conversionconversion , extra_point |
complete | defense_conversion | Integer | Number of defensive conversion completions |
Down Conversion Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
attempt | down_conversion | Integer | Number of down conversion attempts |
complete | down_conversion | String | Category of down conversionconversion , extra_point |
down | down_conversion | Integer | Number of the down at play start |
category | first_down | String | Type of first downpass , rush , penalty |
Extra Point Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
attempt | extra_point | Integer | Number of attempted extra points |
blocked | extra_point | Integer | Number of blocked extra points |
made | extra_point | Integer | Number of made extra points |
missed | extra_point | Integer | Number of missed extra points |
returned | extra_point | Integer | Number of returned extra points |
safety | extra_point | Integer | Number of extra point safeties |
Field Goal Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
attempt | field_goal | Integer | Number of attempted field goals |
att_yards | field_goal | Integer | Yardage of attempted field goal |
blocked | field_goal | Integer | Number of blocked field goals |
made | field_goal | Integer | Number of made field goals |
missed | field_goal | Integer | Number of missed field goals |
nullified | field_goal | Boolean | Signifies a nullified field goal attempt |
returned | field_goal | Integer | Number of returned field goals |
yards | field_goal | Integer | Yardage of made field goal |
Fumbles Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
forced | fumble | Integer | Number of forced fumbles |
fumble | fumble | Integer | Number of fumbles |
lost | fumble | Integer | Number of lost fumbles |
nullified | fumble | Boolean | Signifies a nullified play due to a penalty |
opp_rec | fumble | Integer | Number of opponent fumble recoveries |
opp_rec_td | fumble | Integer | Number of opponent fumble recovery touchdowns |
opp_rec_yards | fumble | Integer | Number of opponent fumble recovery yards |
out_of_bounds | fumble | Integer | Number of fumbles out of bounds |
own_rec | fumble | Integer | Number of own fumble recoveries |
own_rec_td | fumble | Integer | Number of own fumble recovery touchdowns |
own_rec_yards | fumble | Integer | Number of own fumble recovery yards |
play_category | fumble | String | Type of fumble ex. misc |
Kickoff Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
endzone | kick | Integer | Number of kickoffs into the endzone |
inside_20 | kick | Integer | Number of kickoffs inside the 20 yardline |
net_yards | kick | Integer | Number of net yards on the kickoff |
nullified | kick | Boolean | Signifies a nullified play due to a penalty |
onside_attempt | kick | Integer | Number of onside kickoff attempts |
onside_success | kick | Integer | Number of onside kickoff successes |
own_rec | kick | Integer | Number of own recoveries on a kickoff |
own_rec_td | kick | Integer | Number of own recovery touchdowns on a kickoff |
touchback | kick | Integer | Number of touchbacks |
yards | kick | Integer | Number of kickoff yards |
Passing Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
attempt | pass | Integer | Number of pass attempts |
att_yards | pass | Integer | Number of pass attempt (air) yards, measured from the line of scrimmage to the yardline of the receiving target |
complete | pass | Integer | Number of pass completions |
firstdown | pass | Integer | Number of passing first downs |
goaltogo | pass | Integer | Number of plays in a goal-to-go situation |
inside_20 | pass | Integer | Number of passes inside the 20 yardline |
interception | pass | Integer | Number of interceptions thrown |
int_touchdown | pass | Integer | Number of interception touchdowns thrown |
nullified | pass | Boolean | Signifies a nullified play due to a penalty |
sack | pass | Integer | Number of sacks |
sack_yards | pass | Integer | Number of sack yards |
safety | pass | Integer | Number of safeties |
touchdown | pass | Integer | Number of passing touchdowns |
yards | pass | Integer | Number of passing yards |
Penalty Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
penalty | penalty | Integer | Number of penalties |
yards | penalty | Integer | Number of penalty yardage |
Punting Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
attempt | punt | Integer | Number of attempted punts |
blocked | punt | Integer | Number of blocked punts |
downed | punt | Integer | Number of downed punts |
endzone | punt | Integer | Number of punts into the endzone |
faircatch | punt | Integer | Number of fair catch punts |
inside_20 | punt | Integer | Number of punts inside the 20 yardline |
net_yards | punt | Integer | Net yardage of a punt |
nullified | punt | Boolean | Signifies a nullified play due to a penalty |
out_of_bounds | punt | Integer | Number of punts out of bounds |
touchback | punt | Integer | Number of touchback punts |
yards | punt | Integer | Yardage of punt |
Receiving Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
firstdown | receive | Integer | Number of receiving first downs |
goaltogo | receive | Integer | Number of receptions in goal-to-go |
inside_20 | receive | Integer | Number of receptions inside the 20 yardline |
nullified | receive | Boolean | Signifies a nullified play due to a penalty |
reception | receive | Integer | Number of receptions |
safety | receive | Integer | Number of receiving safeties |
targets | receive | Integer | Number of receiving targets |
touchdown | receive | Integer | Number of receiving touchdowns |
yards | receive | Integer | Number of receiving yards |
yards_after_catch | receive | Integer | Number of receiving yards after the catch |
Return Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
category | return | String | Type of returnpunt_return , kick_return |
downed | return | Integer | Number of returns downed |
faircatch | return | Integer | Number of return fair catches |
firstdown | return | Integer | Number of return first downs |
lateral | return | Integer | Number of return laterals |
nullified | return | Boolean | Signifies a nullified play due to a penalty |
out_of_bounds | return | Integer | Number of returns out of bounds |
play_category | return | String | Type of return playpunt_return , kick_return |
return | return | Integer | Number of returns |
touchback | return | Integer | Number of return touchbacks |
touchdown | return | Integer | Number of return touchdowns |
yards | return | Integer | Number of return yardage |
Rushing Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
attempt | rush | Integer | Number of rushing attempts |
firstdown | rush | Integer | Number of rushing first downs |
goaltogo | rush | Integer | Number of rushes in goal-to-go |
inside_20 | rush | Integer | Number of rushes inside the 20 yardline |
lateral | rush | Integer | Number of rushing laterals |
nullified | rush | Boolean | Signifies a nullified play due to a penalty |
safety | rush | Integer | Number of rushing safeties |
tlost | rush | Integer | Number of rushing tackles for a loss |
tlost_yards | rush | Integer | Number of rushing tackles for a loss yardage |
touchdown | rush | Integer | Number of rushing touchdowns |
yards | rush | Integer | Number of rushing yards |
Player:
Attribute | Parent Element | Type | Description |
---|---|---|---|
name | player | String | Full name of a player ex. Deon Cain |
id | player | GUID | Unique ID of a player ex. f99a57a0-bdb7-11ed-a9cf-659b88c64826 |
jersey | player | Integer | Jersey number of a player |
position | player | String | Position of a player See our FAQ for a list of valid positions |
Team:
Attribute | Parent Element | Type | Description |
---|---|---|---|
alias | team | String | Team alias ex. PIT |
id | team | GUID | Unique ID of a team ex. c8797380-9677-11ec-9193-6b32ce92fd29 |
market | team | String | Team market name ex. Pittsburgh |
name | team | String | Team name ex. Maulers |
sr_id | team | String | Unique Sportradar ID of a team ex. sr:competitor:882423 |