NCAAFB Push Events provides detailed, real-time information on every live game event.
Syntax
https://api.sportradar.com/ncaafb/{access_level}/stream/{language_code}/events/subscribe?api_key={your_api_key} |
Parameters
Parameter | Description |
---|---|
access_level | Defines the access level of your API keyproduction , trial |
language_code | Optional code for supported languagesen (English) |
your_api_key | Your API key |
Optional Query String Parameters
By default, a Push feed will provide all data available for all in progress games. If needed, you can filter the data returned by including query strings.
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.
Parameter | Description |
---|---|
event_category | Event categoryredzone , two_minute , scoring_play , big_play , turnover Example: event_category=redzone |
event_type | Event typesetup , timeout , tv_timeout , two_minute_warning , comment , period_end , game_over Example: event_type=timeout |
locale | Language returned expressed as a 2-letter codeen (English)Example: locale=en |
match_id | Match id Example: match_id=sd:match:673b459c-7506-4c11-9273-1b9502537f1d |
team_id | Team id Example: team_id=sd:team:4415b0a7-0f24-11e2-8525-18a905767e44 |
status | Game statusinprogress , created Example: status=inprogress |
Code Samples
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://api.sportradar.us/ncaafb/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/ncaafb/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/ncaafb/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/ncaafb/trial/stream/en/events/subscribe?api_key={your_api_key}&status=inprogress")
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/ncaafb/trial/stream/en/events/subscribe",
params = {'api_key': 'your_api_key', 'status': 'inprogress'},
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/ncaafb/trial/stream/en/events/subscribe?api_key={your_api_key}&status=inprogress'
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_challenges | away | Integer | Away team challenges used |
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 |
id | period | GUID | Unique ID of a period ex. 717f65f6-b44d-4ac4-9086-3810041066af |
number | period | Integer | Number of a period |
sequence | period | Integer | Sequential number of a period |
id | overtime | GUID | Unique ID of an overtime period ex. 717f65f6-b44d-4ac4-9086-3810041066af |
number | overtime | Integer | Number of an overtime period |
sequence | overtime | Integer | Sequential number of an overtime period |
Game:
Attribute | Parent Element | Type | Description |
---|---|---|---|
alias | away | String | Away team alias ex. MIN (Minnesota) |
id | away | GUID | Unique ID of the away team ex. 768c92aa-75ff-4a43-bcc0-f2798c2e1724 |
market | away | String | Away team market name ex. Minnesota |
name | away | String | Away team name ex. Vikings |
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. GB (Green Bay) |
id | home | GUID | Unique ID of the home team ex. 7b112545-38e6-483c-a55c-96cf6ee49cb8 |
market | home | String | Home team market name ex. Green Bay |
name | home | String | Home team name ex. Packers |
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 |
status | game | String | Game status scheduled , created , inprogress , halftime , complete , closed , cancelled , postponed , delayed , suspended , flex-schedule , time-tbd See our NCAAFB 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. ncaafb |
locale | metadata | String | Language code ex. en (English) |
match | metadata | GUID | Unique ID(s) of a game ex. sd:match:42f7d659-23aa-4260-b6be-0c5f9fd0eb53,sr:match:27653180 |
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 See our NCAAFB FAQ for game status descriptions |
team | metadata | GUID | Unique ID(s) of a team ex. sd:team:397830a6-c9c2-4c76-bcbc-cb1cdba768f0 |
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 |
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. MIN (Minnesota) |
yardline | end_location' | Integer | Yardline location of the ball at the conclusion of a play ex. 45 |
description | penalty | String | Text description of a penalty ex. Personal Foul / Defense |
result | penalty | String | Result of a penaltyaccepted , declined , offset |
yards | penalty | Integer | Number of yards penalized on the play |
result | details | String | Result of the play |
safety | details | Boolean | Signifies a play ending in a safety |
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. MIN (Minnesota) |
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 Details - Review:
Attribute | Parent Element | Type | Description |
---|---|---|---|
result | detail - review | String | Result of a play review/challengeoverturned , upheld |
reversed | detail - review | Boolean | Signifies the call on the field was reversed when true |
type | detail - review | String | Type of a play review/challenge ex. first down , pass completion , short of the line to gain See our FAQ for a complete list of valid types. |
alias | detail - review - team | String | Alias of a team initiating a review/challenge ex. IOW (University of Iowa) |
id | detail - review - team | GUID | Unique ID of a team initiating a review/challenge ex. a2ee495d-37c7-45ac-ac3d-d3a492a219c1 |
market | detail - review - team | String | Market name of a team initiating a review/challenge ex. Iowa |
name | detail - review - team | String | Name of a team initiating a review/challenge ex. Hawkeyes |
Play-by-Play Drive:
Attribute | Parent Element | Type | Description |
---|---|---|---|
created_at | drive | Date/Time | Timestamp of the start of a drive ex. 2023-01-01T02:10:21+00:00 |
id | drive - defensive_team | GUID | Unique ID of the defensive team on a drive ex. 2eef738d-c637-4b12-b8df-4b79efcce71e |
points | drive - defensive_team | Integer | Number of points scored for the defensive team on a drive |
id | drive - offensive_team | GUID | Unique ID of the defensive team on a drive ex. 2eef738d-c637-4b12-b8df-4b79efcce71e |
points | drive - offensive_team | Integer | Number of points scored for the defensive team on a drive |
duration | drive | String | Duration of a drive in MM:SS format |
end_clock | drive | String | Clock value at the end of a drive ex. 6:07 |
end_reason | drive | String | End result of a drive ex. Touchdown See our FAQ for a list of valid end reasons and their definitions |
farthest_drive_yardline | drive | Integer | The furthest yardline the offensive team reached during a drive (1-99 scale) |
first_downs | drive | Integer | Number of first downs in a drive |
first_drive_yardline | drive | Integer | Starting yardline of the first play of a drive (1-99 scale) |
gain | drive | Integer | Number of yards gained in a drive |
id | drive | GUID | Unique ID of a drive |
inside_20 | drive | Boolean | Signifies a drive which ends inside the opponent's 20 yardline |
last_drive_yardline | drive | Integer | Starting yardline of the last play of a drive (1-99 scale) |
net_yards | drive | Integer | Net yards gained on a drive |
pat_points_attempted | drive | Integer | Number of PAT points attempted on a drive |
pat_points_attempted | drive | Integer | Number of PAT points attempted on a drive |
pat_successful | drive | Boolean | Signifies a successful PAT attempt on a drive |
penalty_yards | drive | Integer | Number of penalty yards on a drive |
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_clock | drive | String | Clock value at the beginning of a drive ex. 6:07 |
start_reason | drive | String | Start reason of a drive ex. Interception See our FAQ for a list of valid start reasons and their definitions |
team_sequence | drive | Integer | Sequential number of a drive for the offensive team |
updated_at | drive | Date/Time | Timestamp of the last update of a drive ex. 2023-01-01T04:04:45+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. MIN (Minnesota) |
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. Minnesota |
name | end_situation -location | String | Team name ex. Gophers |
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. MIN (Minnesota) |
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. Minnesota |
name | end_situation -possession | String | Team name ex. Gophers |
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 |
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_warning , 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 |
wall_clock | event | Date/Time | Timestamp of the start of the play/event entry ex. 2022-10-09T17:12:08+00:00 |
Play-by-Play Play:
Attribute | Parent Element | Type | Description |
---|---|---|---|
away_points | event | Integer | Away points at the end of a play |
clock | play | String | Clock value for a play ex. 12:37 |
created_at | event | Date/Time | Timestamp of the creation of a play ex. 2022-09-20T00:54:16+00:00 |
description | - | String | Text description of a play |
fake_field_goal | event | Boolean | Signifies whether the a play was a fake field goal |
fake_punt | event | Boolean | Signifies whether the a play was a fake punt |
home_points | event | Integer | Home points at the end of a play |
id | play | GUID | Unique ID of a play |
play_type | event | String | Type of a play ex. pass |
scoring_play | event | Boolean | Signifies whether a play resulted in a score |
sequence | event | Decimal | Sequence number of an event or play. Used to sequence events properly ex. 1665336878436.0 |
type | event | String | Type of playpass , rush , faircatch_kick , extra_point , conversion , free_kick , kickoff , punt , field_goal , penalty |
updated_at | event | Date/Time | Timestamp of the last update of a play ex. 2022-09-20T00:54:16+00:00 |
wall_clock | event | 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 Quarter:
Attribute | Parent Element | Type | Description |
---|---|---|---|
id | quarter | GUID | Unique ID of a quarter ex. 47091cc4-08c2-4f83-9d8d-59c3c85e1725 |
number | quarter | Integer | Number of a quarter |
sequence | quarter | Integer | Sequential number of a quarter |
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. MIN (Minnesota) |
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. Minnesota |
name | start_situation -location | String | Team name ex. Vikings |
sr_id | start_situation -location | GUID | Unique Sportradar ID of the team with possession at the start of a play ex. sr:competitor:4423 |
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. MIN (Minnesota) |
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. Minnesota |
name | start_situation -possession | String | Team name ex. Vikings |
sr_id | start_situation -possession | GUID | Unique Sportradar ID of the team with possession at the start of a play ex. sr:competitor:4423 |
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 |
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 |
---|---|---|---|
attempt | kick | Integer | Number of kickoff attempts |
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 |
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 |
endzone | punt | Integer | Number of punts into the endzone |
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 |
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 |
fumble | receive | Integer | Number of receiving fumbles |
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 Yards after catch is not currently a collected statistic for NCAA Football |
Return Play Statistics:
Attribute | Parent Element | Type | Description |
---|---|---|---|
category | return | String | Type of returnpunt_return , kick_return |
faircatch | return | Integer | Number of return fair catches |
nullified | return | Boolean | Signifies a nullified play due to a penalty |
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 |
fumble | rush | Integer | Number of rushing fumbles |
goaltogo | rush | Integer | Number of rushes in goal-to-go |
inside_20 | rush | Integer | Number of rushes inside the 20 yardline |
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 |
---|---|---|---|
id | player | GUID | Unique ID of a player ex. 4be48c57-4b7c-46ad-8535-445c195feda6 |
jersey | player | String | Jersey number of a player |
name | player | String | Full name of a player ex. Stetson Bennett |
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. IOW (University of Iowa) |
id | team | GUID | Unique ID of a team ex. a2ee495d-37c7-45ac-ac3d-d3a492a219c1 |
market | team | String | Team market name ex. Iowa |
name | team | String | Team name ex. Hawkeyes |