Find all updates to the NCAA Football v7 API and its documentation
Team Colors in Roster Endpoint
We've added team colors to the Team Roster endpoint in our NCAA Football API.
Each color is provided as both a hex value and an RGB object primary and secondary).
⭐ Benefit
Team colors were previously available only in the League Hierarchy endpoint. You can now access a team's primary and secondary colors directly in the Team Roster endpoint.
📋 Recommended Actions
- Read the new
team_colorsarray from the Team Roster endpoint instead of making a separate League Hierarchy call. - Use the
typefield (primary/secondary) to select colors rather than relying on array order. - Apply the
hex_colororrgb_colorvalue that fits your rendering (e.g., hex for CSS, RGB for native styling).
☑️ Sample Requests:
Team Roster
curl --request GET \
--url https://api.sportradar.com/ncaafb/trial/v7/en/teams/{team_id}/full_roster.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Products
| Sport | Product | Version(s) |
|---|---|---|
| American Football | NCAA Football API | v7 |
🔁 Endpoints Affected
⚙️ Return Samples
<team_colors>
<team_color type="secondary" hex_color="#000000">
<rgb_color red="0" green="0" blue="0"/>
</team_color>
<team_color type="primary" hex_color="#ffcd00">
<rgb_color red="255" green="205" blue="0"/>
</team_color>
</team_colors>"team_colors": [
{
"type": "secondary",
"hex_color": "#000000",
"rgb_color": {
"red": 0,
"green": 0,
"blue": 0
}
},
{
"type": "primary",
"hex_color": "#ffcd00",
"rgb_color": {
"red": 255,
"green": 205,
"blue": 0
}
}
],Deleted Games
🗓️ Release Date 07/09/2026
We've added support for deleted games in the latest versions of our US football APIs (NFL, NCAA Football, UFL).
Previously, deleted games were fully removed from the API. Now, when a game is removed from our coverage (for example, a duplicate or erroneously created game), it will remain available with:
"deleted": trueat the game level- A
"deleted_games"array within Schedule endpoints - A
deleted_gamesnode added to the Daily Change Log feed
⭐ Benefit
Track and store deleted game IDs within your system to prevent mis-categorization or unintended downstream processing.
📋 Recommended Actions
- Update your Schedule and Daily Change Log ingestion to read the new
deletedflag anddeleted_gamesarray/node. - Store deleted game IDs so your system can suppress or reconcile them, rather than treating a previously-valid game as still active.
- Confirm your downstream processing (stats, standings, displays) excludes games flagged as deleted.
☑️ Sample Requests:
Season Schedule (NCAA Football)
curl --request GET \
--url https://api.sportradar.com/ncaafb/trial/v7/en/games/2026/REG/schedule.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Products
| Sport | Product | Version(s) |
|---|---|---|
| American Football | NFL API | v7 |
| American Football | UFL API | v7 |
| American Football | NCAA Football API | v7 |
🔁 Endpoints Affected
- Daily Change Log
- Game Boxscore, Game Play-by-Play, Game Roster, Game Statistics
- Season Schedule, Weekly Schedule
⚙️ Return Samples
Click here to download a zip file including several sample feeds of deleted games.
Fumbles Lost on Rushes and Receptions
🗓️ Release Date 07/02/2026
We've added two new data points to capture fumbles lost on rushing and receiving plays across all three of our football APIs (NFL, NCAA Football, and UFL).
Going forward, fumbles lost on rushes (rushing_lost_fumbles) and receptions (receiving_lost_fumbles) will be available at the game and season level, for players and teams.
Both fields appear on the fumbles element at the team level and within each nested player element.
⭐ Benefit
Use these new data points to build a more complete picture of fumble activity, and incorporate them into your player and team profiles or fantasy scoring calculations.
📋 Recommended Actions
- Add the
rushing_lost_fumblesandreceiving_lost_fumblesfields to your game and seasonal statistics ingestion for NFL, NCAA Football, and UFL. - Update player and team profiles to surface the new play-type fumble breakdowns.
- If you calculate fantasy or performance scores, incorporate the new fields where lost-fumble detail is relevant.
☑️ Sample Requests:
Game Statistics
curl --request GET \
--url https://api.sportradar.com/nfl/official/trial/v7/en/games/9a2084f0-146c-417c-a94d-b26012539d1e/statistics.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
- Game Statistics (Player & Team)
- Seasonal Statistics (Player, Team, & Opponent)
- Push Statistics (Player & Team)
⚙️ Return Samples
<fumbles fumbles="5" lost_fumbles="3" own_rec="2" own_rec_yards="0" opp_rec="0" opp_rec_yards="0" out_of_bounds="0" forced_fumbles="0" own_rec_tds="0" opp_rec_tds="0" ez_rec_tds="0" rushing_lost_fumbles="1" receiving_lost_fumbles="0">
<player id="ce5de0e5-9f76-42ee-b93a-3ef88af9b0a7" name="James Cook III" jersey="04" position="RB" sr_id="sr:player:1415199" fumbles="1" lost_fumbles="1" own_rec="0" own_rec_yards="0" opp_rec="0" opp_rec_yards="0" out_of_bounds="0" forced_fumbles="0" own_rec_tds="0" opp_rec_tds="0" ez_rec_tds="0" rushing_lost_fumbles="1" receiving_lost_fumbles="0"/>League Leaders Endpoint
🗓️ Release Date 07/02/2026
We've added League Leaders endpoints for our NFL and NCAA Football APIs. These endpoints provide seasonal league leaders across passing, rushing, receiving, defense, scoring, kicking, punting, and returns (NFL only) statistical categories. Each category contains individual leaderboards for specific statistics such as passing yards, touchdowns, tackles, and field goal percentage. See below for a detailed breakdown of all available leaderboard statistics by API.
NFL league leaders are available from 2000-present, while NCAA Football league leaders are available from 2013-present.
NFL Leaderboard Stats
| Category | Leaderboard Statistics |
|---|---|
| passing | passing_yards, completions, passing_attempts, completion_percentage, passing_touchdowns, interceptions, passing_yards_per_game, yards_per_attempt, passer_rating, passing_first_downs, air_yards, passing_longest, sacks, int_touchdowns |
| rushing | rushing_yards, rushing_attempts, rushing_touchdowns, yards_per_rush, rushing_yards_per_game, rushing_longest, rushing_first_downs |
| receiving | receptions, receiving_yards, receiving_touchdowns, yards_per_reception, receiving_yards_per_game, targets, receiving_longest, yards_after_catch, receiving_first_downs |
| defense | tackles, sacks_defense, interceptions_defense, passes_defended, forced_fumbles, fumble_recoveries, qb_hits, tackles_for_loss, safeties |
| scoring | touchdowns_total, points, points_per_game, return_touchdowns, scrimmage_yards |
| kicking | field_goals_made, field_goal_percentage, field_goal_longest, extra_points, touchbacks, field_goals_made_50_plus |
| punting | punts, punting_yards, gross_avg_yards, net_avg_yards, punts_inside_20, touchbacks_punting, longest_punt |
| returns | kick_returns, kick_return_yards, kick_return_average, kick_return_longest, punt_returns, punt_return_yards, punt_return_average, punt_return_longest |
NCAA Football Leaderboard Stats
| Category | Leaderboard Statistics |
|---|---|
| passing | passing_yards, completions, passing_attempts, completion_percentage, passing_touchdowns, interceptions, passing_yards_per_game, yards_per_attempt, passer_rating |
| rushing | rushing_yards, rushing_attempts, rushing_touchdowns, yards_per_rush, rushing_yards_per_game, rushing_longest |
| receiving | receptions, receiving_yards, receiving_touchdowns, yards_per_reception, receiving_yards_per_game |
| defense | tackles, sacks_defense, interceptions_defense, passes_defended, forced_fumbles, fumble_recoveries |
| scoring | touchdowns_total, points, points_per_game, return_touchdowns, scrimmage_yards |
| kicking | field_goals_made, field_goal_percentage, field_goal_longest, extra_points |
| punting | punts, punting_yards, gross_avg_yards, net_avg_yards, punts_inside_20 |
⭐ Benefit
Use the new League Leaders endpoints to build seasonal leaderboards, player profiles, and statistical comparisons across a wide variety of player metrics.
📋 Recommended Actions
- Integrate the new League Leaders endpoint into your application to display seasonal player leaderboards.
- Review the available leaderboard categories and statistics to identify those relevant to your use case.
- Update your integration to retrieve league leader data for supported NFL and NCAA Football seasons.
☑️ Sample Requests:
curl --request GET \
--url https://api.sportradar.com/nfl/official/trial/v7/en/seasons/2025/REG/leaders.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'curl --request GET \
--url https://api.sportradar.com/ncaafb/trial/v7/en/seasons/2025/REG/leaders.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
⚙️ Return Samples
<category name="return_touchdowns" type="total" sort_direction="desc">
<leader rank="1" tied="true" value="4">
<player id="ebb93930-8f46-11ec-9f33-1965c9c46e44" full_name="Kaden Wetjen" position="WR" status="NWT"/>
<team id="a2ee495d-37c7-45ac-ac3d-d3a492a219c1" name="Hawkeyes" alias="IOWA" market="Iowa"/>
</leader>
<leader rank="1" tied="true" value="4">
<player id="2cd0b900-8a17-11ec-afc6-9b22751babf7" full_name="Bugs Mortimer" jersey_number="9" position="WR" status="ACT"/>
<team id="52f28fe6-2823-4f26-80ce-605a04e624da" name="Lumberjacks" alias="SFA" market="Stephen F. Austin"/>
</leader>
<leader rank="3" tied="true" value="3">
<player id="88537560-0d02-11ed-b6f6-c769f537fe7f" full_name="Elijah Kennedy" jersey_number="88" position="WR" status="ACT"/>
<team id="b38454be-5f7b-4da0-915e-f5ec909e6fa0" name="Aggies" alias="NCAT" market="North Carolina A&T"/>
</leader>"categories": [
{
"name": "passing",
"categories": [
{
"name": "passing_yards",
"type": "total",
"sort_direction": "desc",
"leaders": [
{
"rank": 1,
"tied": false,
"value": "4707",
"player": {
"id": "ade43b1a-0601-4672-83b6-d246bc066a19",
"full_name": "Matthew Stafford",
"jersey_number": "9",
"position": "QB",
"status": "ACT",
"sr_id": "sr:player:830989"
},
"teams": [
{
"id": "2eff2a03-54d4-46ba-890e-2bc3925548f3",
"name": "Rams",
"alias": "LA",
"market": "Los Angeles",
"sr_id": "sr:competitor:4387"
}
]
},
{
"rank": 2,
"tied": false,
"value": "4564",
"player": {
"id": "aba8f925-ffbf-4654-bfa7-a25d3d237494",
"full_name": "Jared Goff",
"jersey_number": "16",
"position": "QB",
"status": "ACT",
"sr_id": "sr:player:986879"
},
"teams": [
{
"id": "c5a59daa-53a7-4de0-851f-fb12be893e9e",
"name": "Lions",
"alias": "DET",
"market": "Detroit",
"sr_id": "sr:competitor:4419"
}
]
},Daily Transactions Endpoint
🗓️ Release Date 06/16/2026
We’ve added a Daily Transactions endpoint to our NCAA Football API to assist in tracking players' transfers to new schools.
This new endpoint provides all transactions recorded by the league on a given day, regardless of each transaction's effective date.
⭐ Benefit
You can now track when a player has officially transferred to a new school by requesting this endpoint each day during the offseason. While transfer portal moves make up the majority of activity, the feed also reports other roster transactions such as commitments, releases, and suspensions.
Visit our integration guide for details on leveraging this new feed, along with the Transfer Portal endpoint.
☑️ Sample Request:
Daily Transactions
curl --request GET \
--url https://api.sportradar.com/ncaafb/trial/v7/en/league/2026/06/03/transactions.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
⚙️ Return Samples
<transactions start_time="2026-06-03T04:00:00Z" end_time="2026-06-04T03:59:59Z">
<player id="568870e0-b6f1-11ee-bccf-932d6c60c46e" name="Karson Gordon" first_name="Karson" last_name="Gordon" position="WR">
<transaction id="8c738760-65ba-11f1-91f4-f9fc8b414f48" desc="Karson Gordon (WR) has committed to Austin Peay Governors." effective_date="2026-06-03" last_modified="2026-06-11T17:28:01+00:00" transaction_type="Committed" transaction_code="COM" transaction_year="2026" status_before="NWT" status_after="ACT">
<to_team id="e2a2c23d-3d8d-4f9e-9bed-8a432071f1a7" name="Governors" market="Austin Peay" alias="PEAY"/>
</transaction>
<transaction id="f5386e20-65b8-11f1-992c-db7b6aea72f4" desc="Karson Gordon (WR) has elected to join the transfer portal." effective_date="2026-06-03" last_modified="2026-06-11T17:26:56+00:00" transaction_type="Transfer Portal Entry" transaction_code="TP" transaction_year="2026" status_before="ACT" status_after="NWT">
<from_team id="398eda2b-ba77-469f-94df-18fd1d9087d8" name="Bruins" market="UCLA" alias="UCLA"/>
</transaction>
</player>
</transactions>{
"league": {
"id": "26c1246a-2fc3-4b7e-8999-1685d3ab4676",
"name": "NCAA Football",
"alias": "NCAAFB"
},
"start_time": "2026-06-03T04:00:00Z",
"end_time": "2026-06-04T03:59:59Z",
"players": [
{
"id": "568870e0-b6f1-11ee-bccf-932d6c60c46e",
"name": "Karson Gordon",
"first_name": "Karson",
"last_name": "Gordon",
"position": "WR",
"transactions": [
{
"id": "8c738760-65ba-11f1-91f4-f9fc8b414f48",
"desc": "Karson Gordon (WR) has committed to Austin Peay Governors.",
"effective_date": "2026-06-03",
"last_modified": "2026-06-11T17:28:01+00:00",
"transaction_type": "Committed",
"transaction_code": "COM",
"transaction_year": 2026,
"status_before": "NWT",
"status_after": "ACT",
"to_team": {
"id": "e2a2c23d-3d8d-4f9e-9bed-8a432071f1a7",
"name": "Governors",
"market": "Austin Peay",
"alias": "PEAY"
}
},
{
"id": "f5386e20-65b8-11f1-992c-db7b6aea72f4",
"desc": "Karson Gordon (WR) has elected to join the transfer portal.",
"effective_date": "2026-06-03",
"last_modified": "2026-06-11T17:26:56+00:00",
"transaction_type": "Transfer Portal Entry",
"transaction_code": "TP",
"transaction_year": 2026,
"status_before": "ACT",
"status_after": "NWT",
"from_team": {
"id": "398eda2b-ba77-469f-94df-18fd1d9087d8",
"name": "Bruins",
"market": "UCLA",
"alias": "UCLA"
}
}
]
}
],
"_comment": "Generation started @ 2026-06-15 20:38:34 +0000 ended @ 2026-06-15 20:38:34 +0000"
}Overtime Drive Reason
🗓️ Release Date 05/06/2026
We’ve added a new start_reason value: Overtime Possession to the NCAA Football API and UFL APIs.
This value is used when a drive begins as part of an overtime possession.
See our FAQ for a complete list of drive start and end reasons.
⭐ Benefit
Clearly identifies the start of overtime drives, which do not begin with a kickoff in NCAA Football or UFL.
{
"type": "drive",
"id": "12a1cebd-dddc-41b4-9b48-bc2c08103e89",
"sequence": 24,
"start_reason": "Overtime Possession",
"end_reason": "Field Goal",
"play_count": 4☑️ Sample Requests:
Game Play-by-Play
curl --request GET \
--url https://api.sportradar.com/ncaafb/trial/v7/en/games/{game_id}/pbp.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
- Game Boxscore
- Game Play-by-Play
- Push Events
⚙️ Return Samples
<play-by-play>
<drive id="12a1cebd-dddc-41b4-9b48-bc2c08103e89" sequence="24" start_reason="Overtime Possession" end_reason="Field Goal" play_count="4" duration="00:00" first_downs="0" gain="7" penalty_yards="0" inside_20="true" scoring_drive="true" created_at="2025-11-01T22:49:17+00:00" updated_at="2026-05-06T18:53:27+00:00" team_sequence="13" start_clock="00:00" end_clock="00:00" first_drive_yardline="25" last_drive_yardline="18" farthest_drive_yardline="18" net_yards="7" pat_points_attempted="0">
<offensive_team points="3" id="1cdf66a2-f157-4b4f-ad37-bd31e268f0ae"/>
<defensive_team points="0" id="709c25ab-2674-4d9f-9571-69c5ee9363b6"/>
<play id="5403f440-b774-11f0-9c3a-2f5f4aec4c02" sequence="1762037357878.0" clock="00:00" home_points="17" away_points="17" wall_clock="2025-11-01T22:48:59+00:00" fake_punt="false" fake_field_goal="false" screen_pass="false" play_action="false" run_pass_option="false" created_at="2025-11-01T22:49:17+00:00" updated_at="2026-05-06T18:47:40+00:00" official="true" type="pass">
<start_situation clock="00:00" down="1" yfd="10">
<possession id="1cdf66a2-f157-4b4f-ad37-bd31e268f0ae" name="Spartans" market="Michigan State" alias="MSU"/>
<location id="709c25ab-2674-4d9f-9571-69c5ee9363b6" name="Golden Gophers" market="Minnesota" alias="MINN" yardline="25"/>
</start_situation>
<end_situation clock="00:00" down="2" yfd="4">
<possession id="1cdf66a2-f157-4b4f-ad37-bd31e268f0ae" name="Spartans" market="Michigan State" alias="MSU"/>
<location id="709c25ab-2674-4d9f-9571-69c5ee9363b6" name="Golden Gophers" market="Minnesota" alias="MINN" yardline="19"/>
</end_situation>
<description>A.Milivojevic pass complete. Catch made by O.Kelly for 6 yards. Pushed out of bounds by J.McMillan at MINN 19.</description>
<statistics>
<pass attempt="1" complete="1" yards="6" att_yards="0" firstdown="0" inside_20="0" goaltogo="0">
<team id="1cdf66a2-f157-4b4f-ad37-bd31e268f0ae" name="Spartans" market="Michigan State" alias="MSU"/>
<player id="c41a28c0-dd8d-11ee-8df1-29e8b19e65cc" name="Alessio Milivojevic" jersey="11" position="QB"/>
</pass>
<receive firstdown="0" target="1" reception="1" yards="6" yards_after_catch="6" inside_20="0" goaltogo="0">
<team id="1cdf66a2-f157-4b4f-ad37-bd31e268f0ae" name="Spartans" market="Michigan State" alias="MSU"/>
<player id="eabad6c0-901c-11ec-8556-6fa97bcffaf0" name="Omari Kelly" jersey="01" position="WR"/>
</receive>
<defense tackle="1" category="defense">
<team id="709c25ab-2674-4d9f-9571-69c5ee9363b6" name="Golden Gophers" market="Minnesota" alias="MINN"/>
<player id="593cf4c4-a9cf-4f7c-bebd-36e37b478422" name="Jai'Onte' McMillan" jersey="24" position="DB"/>
</defense>
</statistics>
<details>
<detail category="pass_completion" sequence="0" yards="6">
<description>A.Milivojevic pass complete.</description>
<start_location alias="MINN" yardline="25"/>
<end_location alias="MINN" yardline="25"/>
<players>
<player id="c41a28c0-dd8d-11ee-8df1-29e8b19e65cc" name="Alessio Milivojevic" jersey="11" position="QB" role="pass"/>
</players>
</detail>
<detail category="pass_reception" sequence="1" yards="6" result="pushed out of bounds">
<description>Catch made by O.Kelly for 6 yards.</description>
<start_location alias="MINN" yardline="25"/>
<end_location alias="MINN" yardline="19"/>
<players>
<player id="eabad6c0-901c-11ec-8556-6fa97bcffaf0" name="Omari Kelly" jersey="01" position="WR" role="catch"/>
</players>
</detail>
<detail category="pushed_out_of_bounds" sequence="2">
<description>Pushed out of bounds by J.McMillan at MINN 19.</description>
<start_location alias="MINN" yardline="19"/>
<end_location alias="MINN" yardline="19"/>
<players>
<player id="593cf4c4-a9cf-4f7c-bebd-36e37b478422" name="Jai'Onte' McMillan" jersey="24" position="DB" role="tackle"/>
</players>
</detail>
</details>
</play>"pbp": [
{
"type": "drive",
"id": "12a1cebd-dddc-41b4-9b48-bc2c08103e89",
"sequence": 24,
"start_reason": "Overtime Possession",
"end_reason": "Field Goal",
"play_count": 4,
"duration": "00:00",
"first_downs": 0,
"gain": 7,
"penalty_yards": 0,
"inside_20": true,
"scoring_drive": true,
"created_at": "2025-11-01T22:49:17+00:00",
"updated_at": "2026-05-06T18:53:27+00:00",
"team_sequence": 13,
"start_clock": "00:00",
"end_clock": "00:00",
"first_drive_yardline": 25,
"last_drive_yardline": 18,
"farthest_drive_yardline": 18,
"net_yards": 7,
"pat_points_attempted": 0,
"offensive_team": {
"points": 3,
"id": "1cdf66a2-f157-4b4f-ad37-bd31e268f0ae"
},
"defensive_team": {
"points": 0,
"id": "709c25ab-2674-4d9f-9571-69c5ee9363b6"
},
"events": [
{
"type": "play",
"id": "5403f440-b774-11f0-9c3a-2f5f4aec4c02",
"sequence": 1762037357878.0,
"clock": "00:00",
"home_points": 17,
"away_points": 17,
"play_type": "pass",
"wall_clock": "2025-11-01T22:48:59+00:00",
"description": "A.Milivojevic pass complete. Catch made by O.Kelly for 6 yards. Pushed out of bounds by J.McMillan at MINN 19.",
"fake_punt": false,
"fake_field_goal": false,
"screen_pass": false,
"play_action": false,
"run_pass_option": false,
"created_at": "2025-11-01T22:49:17+00:00",
"updated_at": "2026-05-06T18:47:40+00:00",
"official": true,
"start_situation": {
"clock": "00:00",
"down": 1,
"yfd": 10,
"possession": {
"id": "1cdf66a2-f157-4b4f-ad37-bd31e268f0ae",
"name": "Spartans",
"market": "Michigan State",
"alias": "MSU"
},
"location": {
"id": "709c25ab-2674-4d9f-9571-69c5ee9363b6",
"name": "Golden Gophers",
"market": "Minnesota",
"alias": "MINN",
"yardline": 25
}
},
"end_situation": {
"clock": "00:00",
"down": 2,
"yfd": 4,
"possession": {
"id": "1cdf66a2-f157-4b4f-ad37-bd31e268f0ae",
"name": "Spartans",
"market": "Michigan State",
"alias": "MSU"
},
"location": {
"id": "709c25ab-2674-4d9f-9571-69c5ee9363b6",
"name": "Golden Gophers",
"market": "Minnesota",
"alias": "MINN",
"yardline": 19
}
},
"statistics": [
{
"stat_type": "pass",
"attempt": 1,
"complete": 1,
"yards": 6,
"att_yards": 0,
"firstdown": 0,
"inside_20": 0,
"goaltogo": 0,
"player": {
"id": "c41a28c0-dd8d-11ee-8df1-29e8b19e65cc",
"name": "Alessio Milivojevic",
"jersey": "11",
"position": "QB"
},
"team": {
"id": "1cdf66a2-f157-4b4f-ad37-bd31e268f0ae",
"name": "Spartans",
"market": "Michigan State",
"alias": "MSU"
}
},
{
"stat_type": "receive",
"firstdown": 0,
"target": 1,
"reception": 1,
"yards": 6,
"yards_after_catch": 6,
"inside_20": 0,
"goaltogo": 0,
"player": {
"id": "eabad6c0-901c-11ec-8556-6fa97bcffaf0",
"name": "Omari Kelly",
"jersey": "01",
"position": "WR"
},
"team": {
"id": "1cdf66a2-f157-4b4f-ad37-bd31e268f0ae",
"name": "Spartans",
"market": "Michigan State",
"alias": "MSU"
}
},
{
"stat_type": "defense",
"tackle": 1,
"category": "defense",
"player": {
"id": "593cf4c4-a9cf-4f7c-bebd-36e37b478422",
"name": "Jai'Onte' McMillan",
"jersey": "24",
"position": "DB"
},
"team": {
"id": "709c25ab-2674-4d9f-9571-69c5ee9363b6",
"name": "Golden Gophers",
"market": "Minnesota",
"alias": "MINN"
}
}
],
"details": [
{
"category": "pass_completion",
"description": "A.Milivojevic pass complete.",
"sequence": 0,
"yards": 6,
"start_location": {
"alias": "MINN",
"yardline": 25
},
"end_location": {
"alias": "MINN",
"yardline": 25
},
"players": [
{
"id": "c41a28c0-dd8d-11ee-8df1-29e8b19e65cc",
"name": "Alessio Milivojevic",
"jersey": "11",
"position": "QB",
"role": "pass"
}
]
},
{
"category": "pass_reception",
"description": "Catch made by O.Kelly for 6 yards.",
"sequence": 1,
"yards": 6,
"result": "pushed out of bounds",
"start_location": {
"alias": "MINN",
"yardline": 25
},
"end_location": {
"alias": "MINN",
"yardline": 19
},
"players": [
{
"id": "eabad6c0-901c-11ec-8556-6fa97bcffaf0",
"name": "Omari Kelly",
"jersey": "01",
"position": "WR",
"role": "catch"
}
]
},
{
"category": "pushed_out_of_bounds",
"description": "Pushed out of bounds by J.McMillan at MINN 19.",
"sequence": 2,
"start_location": {
"alias": "MINN",
"yardline": 19
},
"end_location": {
"alias": "MINN",
"yardline": 19
},
"players": [
{
"id": "593cf4c4-a9cf-4f7c-bebd-36e37b478422",
"name": "Jai'Onte' McMillan",
"jersey": "24",
"position": "DB",
"role": "tackle"
}
]
}
]
},Team Colors Added to League Hierarchy
🗓️ Release Date 03/30/2026
We’ve added Team Colors to the League Hierarchy feed for NCAAFB.
Each team may now include a team_colors collection containing one or more team_color objects, with both HEX and RGB values for primary and secondary colors.
⭐ Benefit
Easily retrieve and display official team branding colors to enhance UI elements such as scoreboards, team pages, and visualizations.
☑️ Sample Requests:
-
League Hierarchy:
https://api.sportradar.com/ncaafb/{access_level}/v7/{language_code}/league/hierarchy.{format}
🔢 Versions
- All versions
🔁 Endpoints Affected
- League Hierarchy
⚙️ Return Samples
<team id="9a6d6f3f-021e-4ddd-8fac-ac4766239d87" name="Buckeyes" market="Ohio State" alias="OSU" founded="1870" mascot="Brutus Buckeye" fight_song="Across the Field, Buckeye Battle Cry" championships_won="9" conference_titles="40" playoff_appearances="7">
<franchise id="9a6d6f3f-021e-4ddd-8fac-ac4766239d87" name="Buckeyes"/>
<venue id="668dcdfb-06dd-4185-911d-d62891ab9143" name="Ohio Stadium" city="Columbus" state="OH" country="USA" zip="43210" address="411 Woody Hayes Drive" capacity="102780" surface="artificial" roof_type="outdoor">
<location lat="40.0022" lng="-83.0197"/>
</venue>
<team_colors>
<team_color type="secondary" hex_color="#666666">
<rgb_color red="102" green="102" blue="102"/>
</team_color>
<team_color type="primary" hex_color="#bb0000">
<rgb_color red="187" green="0" blue="0"/>
</team_color>
</team_colors>
</team>{
"id": "9a6d6f3f-021e-4ddd-8fac-ac4766239d87",
"name": "Buckeyes",
"market": "Ohio State",
"alias": "OSU",
"founded": 1870,
"mascot": "Brutus Buckeye",
"fight_song": "Across the Field, Buckeye Battle Cry",
"championships_won": 9,
"conference_titles": 40,
"playoff_appearances": 7,
"venue": {
"id": "668dcdfb-06dd-4185-911d-d62891ab9143",
"name": "Ohio Stadium",
"city": "Columbus",
"state": "OH",
"country": "USA",
"zip": "43210",
"address": "411 Woody Hayes Drive",
"capacity": 102780,
"surface": "artificial",
"roof_type": "outdoor",
"location": {
"lat": "40.0022",
"lng": "-83.0197"
}
},
"franchise": {
"id": "9a6d6f3f-021e-4ddd-8fac-ac4766239d87",
"name": "Buckeyes"
},
"team_colors": [
{
"type": "secondary",
"hex_color": "#666666",
"rgb_color": {
"red": 102,
"green": 102,
"blue": 102
}
},
{
"type": "primary",
"hex_color": "#bb0000",
"rgb_color": {
"red": 187,
"green": 0,
"blue": 0
}
}
]
}Boxscore Coverage Stats Update
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 08/28/2025 | Game Statistics | We are adding the below team statistics for first_downs -- pass, rush, penalty, total efficiency -- redzone.attempts, redzone.successes, thirddown.attempts, thirddown.successes, fourthdown.attempts, fourthdown.successes touchdowns -- pass, rush, int_return, fumble_return, kick_return, punt_return, total int_returns -- returns, yards team -- play_count, avg_gain, total_yards, possession_time |
Expected Latency
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 07/24/2025 | Game Boxscore Game Play-by-Play Game Roster Game Statistics Push Events Push Statistics | We've added a This indicates the time in seconds a game is expected to be behind real-time play on the field, with possible values of 2, 10, 25, and 50. For example, a value of Use Latency values are made available one day before gameday, though they are subject to change on gameday itself. |
<game xmlns="http://feed.elasticstats.com/schema/football/pbp-v7.0.xsd" id="c570e6bf-cca2-4884-903e-1a7ac41c8c05" status="scheduled" scheduled="2024-11-06T00:30:00+00:00" entry_mode="LDE" coverage="full" game_type="regular" conference_game="true" expected_latency="10">
<summary>
<season id="908fbc20-f5c7-11ee-a306-c311afc28263" year="2024" type="REG" name="REG"/>
<week id="7ab45789-c910-4db9-8c68-09211b2bdfdf" sequence="11" title="11"/>
<venue id="fb8f19d5-b212-491d-a7f1-0b2c18a8cc80" name="Kelly/Shorts Stadium" city="Mount Pleasant" state="MI" country="USA" zip="48858" address="2300 East Campus Drive" capacity="30255" surface="artificial" roof_type="outdoor">
<location lat="43.5776" lng="-84.7709"/>
</venue>
<home id="03aa49b8-9a36-4e77-adf1-01cc5e2e6a14" name="Chippewas" market="Central Michigan" alias="CMC"/>
<away id="397830a6-c9c2-4c76-bcbc-cb1cdba768f0" name="Falcons" market="Bowling Green" alias="BGN"/>
</summary>
<broadcast network="ESPN2" satellite="209"/>
</game>Transfer Portal Endpoint
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 07/18/2025 | Transfer Portal | We've added a Transfer Portal endpoint which lists all players currently in the NCAA Transfer Portal. Use this endpoint to track player movement, scout talent, and stay informed on roster changes across college programs. |
{
"league": {
"id": "26c1246a-2fc3-4b7e-8999-1685d3ab4676",
"name": "NCAA Football",
"alias": "NCAAFB",
"transfer_portal_players": [
{
"id": "008502bf-52bf-472d-8162-0143207da7e5",
"full_name": "Claude Larkins",
"first_name": "Claude",
"last_name": "Larkins",
"abbr_name": "C.Larkins",
"height": 78,
"weight": 260.0,
"eligibility": "JR",
"birth_place": "Hollywood, FL, USA",
"updated": "2025-07-15T19:22:44Z",
"position": "DL"
},
{
"id": "06a21a40-9ea6-11ed-975c-37b2dd34d160",
"full_name": "Nate Spillman",
"first_name": "Nate",
"last_name": "Spillman",
"abbr_name": "N.Spillman",
"height": 74,
"weight": 200.0,
"eligibility": "SO",
"birth_place": "Nashville, TN, USA",
"updated": "2025-07-08T23:10:05Z",
"position": "WR"
},
{
"id": "08995940-8e9d-11ec-8d02-85ead82574a9",
"full_name": "Tristan Monday",
"first_name": "Tristan",
"last_name": "Monday",
"abbr_name": "T.Monday",
"height": 74,
"weight": 280.0,
"eligibility": "SO",
"birth_place": "Scottsdale, AZ, USA",
"updated": "2025-05-15T17:43:57Z",
"position": "DL"
},
{
"id": "0d34c620-3e7a-11f0-8c43-a399f2c8f39c",
"full_name": "Ronald Olibreese",
"first_name": "Ronald",
"last_name": "Olibreese",
"abbr_name": "R.Olibreese",
"height": 72,
"weight": 150.0,
"eligibility": "FR",
"birth_place": "Lantana, FL, USA",
"updated": "2025-06-12T01:51:24Z",
"position": "SAF"
},
{
"id": "0d8463b0-8ece-11ec-8d02-85ead82574a9",
"full_name": "Cortez Braham",
"first_name": "Cortez",
"last_name": "Braham",
"abbr_name": "C.Braham",
"height": 74,
"weight": 201.0,
"eligibility": "SR",
"birth_place": "Baltimore, MD, USA",
"updated": "2025-05-15T15:42:12Z",
"position": "WR"
},
{
"id": "1303afc7-e151-4f13-9a1d-7e47fa15d4da",
"full_name": "Wyatt Draeger",
"first_name": "Wyatt",
"last_name": "Draeger",
"abbr_name": "W.Draeger",
"height": 76,
"weight": 285.0,
"eligibility": "SR",
"birth_place": "Reno, NV, USA",
"updated": "2025-05-15T17:44:08Z",
"position": "DL"
},
{
"id": "15077ed0-0f4b-11ed-a70c-ad2a9f80d6c7",
"full_name": "Jett Meine",
"first_name": "Jett",
"last_name": "Meine",
"abbr_name": "J.Meine",
"height": 72,
"weight": 214.0,
"eligibility": "SO",
"birth_place": "Draper, UT, USA",
"updated": "2025-06-27T23:34:38Z",
"position": "WR"
},
{
"id": "19cd0d40-67cd-11ef-845f-f51dbba12e64",
"full_name": "Clinton Mahoni",
"first_name": "Clinton",
"last_name": "Mahoni",
"abbr_name": "C.Mahoni",
"height": 75,
"weight": 285.0,
"eligibility": "SR",
"birth_place": "Auckland,, NZL",
"updated": "2025-06-19T04:24:57Z",
"position": "DL"
},
{
"id": "1b5bd0e0-323d-11ee-9b09-3bce8292c5b2",
"full_name": "Ben Durham",
"first_name": "Ben",
"last_name": "Durham",
"abbr_name": "B.Durham",
"height": 70,
"weight": 200.0,
"eligibility": "FR",
"birth_place": "Rancho Santa Margarita, CA, USA",
"updated": "2025-06-27T23:24:01Z",
"position": "SAF"
},
{
"id": "1bd0ca30-15eb-11ee-a524-d3ae491b0ca4",
"full_name": "Aidan McCowan",
"first_name": "Aidan",
"last_name": "McCowan",
"abbr_name": "A.McCowan",
"height": 70,
"weight": 167.0,
"eligibility": "JR",
"birth_place": "Frisco, TX, USA",
"updated": "2025-07-09T19:35:00Z",
"position": "DB"
},
{
"id": "20b8afd0-b55b-11ee-a884-558ef703aace",
"full_name": "Ryan Pellum",
"first_name": "Ryan",
"last_name": "Pellum",
"abbr_name": "R.Pellum",
"height": 71,
"weight": 170.0,
"eligibility": "FR",
"birth_place": "Long Beach, CA, USA",
"updated": "2025-05-15T15:44:44Z",
"position": "WR"
},
{
"id": "25f95950-2ade-11f0-9c90-c729826c945d",
"full_name": "Mark Cleland",
"first_name": "Mark",
"last_name": "Cleland",
"abbr_name": "M.Cleland",
"eligibility": "FR",
"birth_place": "Los Alamos, NM, USA",
"updated": "2025-06-11T04:53:57Z",
"position": "OL"
},
{
"id": "2771a937-8889-4ed9-83da-5f9a8d12bad1",
"full_name": "K'Wan Powell",
"first_name": "K'Wan",
"last_name": "Powell",
"abbr_name": "K.Powell",
"height": 69,
"weight": 210.0,
"eligibility": "SR",
"birth_place": "Vernon, FL, USA",
"updated": "2025-07-08T23:08:16Z",
"position": "RB"
},
{
"id": "2ec46c10-5551-11ed-8e9d-9fc5a3745897",
"full_name": "Alejandro Prado",
"first_name": "Alejandro",
"last_name": "Prado",
"abbr_name": "A.Prado",
"height": 72,
"weight": 186.0,
"eligibility": "SR",
"birth_place": "Miami, FL, USA",
"updated": "2025-06-19T04:25:13Z",
"position": "K"
}
}
}<league xmlns="http://feed.elasticstats.com/schema/football/ncaafb/transfer-portal-v7.0.xsd" id="26c1246a-2fc3-4b7e-8999-1685d3ab4676" name="NCAA Football" alias="NCAAFB">
<transfer_portal_players id="008502bf-52bf-472d-8162-0143207da7e5" full_name="Claude Larkins" first_name="Claude" last_name="Larkins" abbr_name="C.Larkins" height="78" weight="260.0" eligibility="JR" birth_place="Hollywood, FL, USA" updated="2025-07-15T19:22:44Z" position="DL"/>
<transfer_portal_players id="06a21a40-9ea6-11ed-975c-37b2dd34d160" full_name="Nate Spillman" first_name="Nate" last_name="Spillman" abbr_name="N.Spillman" height="74" weight="200.0" eligibility="SO" birth_place="Nashville, TN, USA" updated="2025-07-08T23:10:05Z" position="WR"/>
<transfer_portal_players id="08995940-8e9d-11ec-8d02-85ead82574a9" full_name="Tristan Monday" first_name="Tristan" last_name="Monday" abbr_name="T.Monday" height="74" weight="280.0" eligibility="SO" birth_place="Scottsdale, AZ, USA" updated="2025-05-15T17:43:57Z" position="DL"/>
<transfer_portal_players id="0d34c620-3e7a-11f0-8c43-a399f2c8f39c" full_name="Ronald Olibreese" first_name="Ronald" last_name="Olibreese" abbr_name="R.Olibreese" height="72" weight="150.0" eligibility="FR" birth_place="Lantana, FL, USA" updated="2025-06-12T01:51:24Z" position="SAF"/>
<transfer_portal_players id="0d8463b0-8ece-11ec-8d02-85ead82574a9" full_name="Cortez Braham" first_name="Cortez" last_name="Braham" abbr_name="C.Braham" height="74" weight="201.0" eligibility="SR" birth_place="Baltimore, MD, USA" updated="2025-05-15T15:42:12Z" position="WR"/>Transfer Portal Status
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 04/28/2025 | Player Profile | We've added a player status (TP) for players who have entered the transfer portal. |
{
name: "Jesus Machado",
last_name: "Machado",
first_name: "Jesus",
abbr_name: "J.Machado",
weight: 220,
height: 73,
eligibility: "SR",
id: "c2684fb3-82d2-47f8-89af-99febcb01f34",
position: "LB",
birth_place: "Miami, FL, USA",
status: "TP",
}Neutral Site Standings
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 04/18/2025 | Postgame Standings | We've added team records for neutral site games in our football Postgame Standings endpoints. Find a team's seasonal neutral site record under Historical info is available from 2021-present for NFL, UFL, USFL, and NCAA Football. |
{
"id": "74a45343-e6fa-4b5d-94f0-555d8579d2c3",
"name": "Missouri Valley",
"alias": "MISSOURI-VALLEY",
"teams": [
{
"id": "0a05210a-81f7-4d04-80e5-4ba6ee748ccd",
"name": "Bison",
"market": "North Dakota State",
"alias": "NDSU",
"rank": {
"conference": 1,
"subdivision": 1
},
"streak": {
"type": "win",
"length": 4,
"desc": "Won 4"
},
"strength_of_schedule": {
"sos": 0.627,
"wins": 133,
"total": 212
},
"strength_of_victory": {
"sov": 0.611,
"wins": 113,
"total": 185
},
"wins": 14,
"losses": 2,
"ties": 0,
"win_pct": 0.875,
"points_for": 610,
"points_against": 298,
"records": [
{
"category": "fbs",
"wins": 1,
"losses": 1,
"ties": 0,
"win_pct": 0.5,
"points_for": 85,
"points_against": 52
},
{
"category": "d2",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0.0,
"points_for": 0,
"points_against": 0
},
{
"category": "fcs",
"wins": 13,
"losses": 1,
"ties": 0,
"win_pct": 0.929,
"points_for": 525,
"points_against": 246
},
{
"category": "uscaa",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0.0,
"points_for": 0,
"points_against": 0
},
{
"category": "d3",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0.0,
"points_for": 0,
"points_against": 0
},
{
"category": "division",
"wins": 14,
"losses": 1,
"ties": 0,
"win_pct": 0.933,
"points_for": 584,
"points_against": 267
},
{
"category": "conference",
"wins": 7,
"losses": 1,
"ties": 0,
"win_pct": 0.875,
"points_for": 308,
"points_against": 114
},
{
"category": "naia",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0.0,
"points_for": 0,
"points_against": 0
},
{
"category": "neutral",
"wins": 1,
"losses": 0,
"ties": 0,
"win_pct": 1.0,
"points_for": 35,
"points_against": 32
},
{
"category": "road",
"wins": 4,
"losses": 2,
"ties": 0,
"win_pct": 0.667,
"points_for": 217,
"points_against": 114
},
{
"category": "home",
"wins": 9,
"losses": 0,
"ties": 0,
"win_pct": 1.0,
"points_for": 358,
"points_against": 152
}
]
},<team id="55da9c15-db47-49d1-9a39-78ef11f2051b" name="Pirates" market="Hampton" alias="HAMP" wins="5" losses="7" ties="0" win_pct="0.417" points_for="355" points_against="323">
<rank conference="12" subdivision="12"/>
<streak type="loss" length="4" desc="Lost 4"/>
<strength-of-schedule sos="0.507" wins="70" total="138"/>
<strength-of-victory sov="0.306" wins="15" total="49"/>
<records>
<record category="d2" wins="1" losses="0" ties="0" win_pct="1.0" points_for="33" points_against="21"/>
<record category="road" wins="2" losses="3" ties="0" win_pct="0.4" points_for="147" points_against="141"/>
<record category="fcs" wins="4" losses="7" ties="0" win_pct="0.364" points_for="322" points_against="302"/>
<record category="d3" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="home" wins="2" losses="4" ties="0" win_pct="0.333" points_for="181" points_against="162"/>
<record category="naia" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="neutral" wins="1" losses="0" ties="0" win_pct="1.0" points_for="27" points_against="20"/>
<record category="division" wins="4" losses="7" ties="0" win_pct="0.364" points_for="322" points_against="302"/>
<record category="uscaa" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="conference" wins="2" losses="6" ties="0" win_pct="0.25" points_for="230" points_against="245"/>
<record category="fbs" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
</records>
</team>Support for Plays Under Review
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 04/08/2025 | Game Boxscore Game Play-by-Play Push Events | We've added support to denote a play is under review during live full coverage games. This update is available going forward for all versions of the NFL, NCAA Football, and UFL APIs. Each play will now include an While a play is under review ( Additionally, while a play is under review, a new play segment category of |
{
"type":"play",
"id":"bbff5bf0-05a6-11f0-b606-a5cf51051b41",
"sequence":1742487421826,
"clock":"11:46",
"home_points":20,
"away_points":13,
"created_at":"2025-03-20T16:17:01+00:00",
"updated_at":"2025-03-20T16:17:02+00:00",
"play_type":"rush",
"wall_clock":"2025-03-20T16:16:53+00:00",
"source":"SRUS",
"official":false,
"fake_punt":false,
"fake_field_goal":false,
"screen_pass":false,
"play_action":false,
"run_pass_option":false,
"start_situation":{
"clock":"11:46",
"down":1,
"yfd":10,
"possession":{
"name":"Packers",
"market":"Green Bay",
"alias":"GB",
"id":"a20471b4-a8d9-40c7-95ad-90cc30e46932"
},
"location":{
"name":"Packers",
"market":"Green Bay",
"alias":"GB",
"id":"a20471b4-a8d9-40c7-95ad-90cc30e46932",
"yardline":30
}
},
"end_situation":{
"clock":"11:41",
"down":0,
"yfd":0,
"possession":{
"name":"Packers",
"market":"Green Bay",
"alias":"GB",
"id":"a20471b4-a8d9-40c7-95ad-90cc30e46932"
},
"location":{
"name":"Cowboys",
"market":"Dallas",
"alias":"DAL",
"id":"e627eec7-bbae-4fa4-8e73-8e1d6bc5c060",
"yardline":15
}
},
"description":"A.Dillon rushed for 70 yards. TOUCHDOWN. Play is under review.",
"statistics":[
{
"stat_type":"rush",
"nullified":true,
"attempt":1,
"yards":70,
"touchdown":1,
"inside_20":0,
"goaltogo":0,
"broken_tackles":0,
"kneel_down":0,
"scramble":0,
"team":{
"name":"Packers",
"market":"Green Bay",
"alias":"GB",
"id":"a20471b4-a8d9-40c7-95ad-90cc30e46932"
},
"player":{
"name":"AJ Dillon",
"jersey":"28",
"id":"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3",
"position":"RB"
}
},
{
"stat_type":"first_down",
"category":"rush",
"nullified":true,
"team":{
"name":"Packers",
"market":"Green Bay",
"alias":"GB",
"id":"a20471b4-a8d9-40c7-95ad-90cc30e46932"
},
"player":{
"name":"AJ Dillon",
"jersey":"28",
"id":"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3",
"position":"RB"
}
}
],
"details":[
{
"category":"rush",
"description":"A.Dillon rushed for 70 yards.",
"sequence":0,
"start_location":{
"name":"Packers",
"market":"Green Bay",
"alias":"GB",
"id":"a20471b4-a8d9-40c7-95ad-90cc30e46932",
"yardline":30
},
"end_location":{
"name":"Cowboys",
"market":"Dallas",
"alias":"DAL",
"id":"e627eec7-bbae-4fa4-8e73-8e1d6bc5c060",
"yardline":0
},
"yards":70,
"result":"touchdown",
"players":[
{
"role":"rush",
"name":"AJ Dillon",
"jersey":"28",
"id":"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3",
"position":"RB"
}
]
},
{
"category":"touchdown",
"description":"TOUCHDOWN.",
"sequence":1,
"start_location":{
"name":"Cowboys",
"market":"Dallas",
"alias":"DAL",
"id":"e627eec7-bbae-4fa4-8e73-8e1d6bc5c060",
"yardline":0
},
"end_location":{
"name":"Cowboys",
"market":"Dallas",
"alias":"DAL",
"id":"e627eec7-bbae-4fa4-8e73-8e1d6bc5c060",
"yardline":0
},
"yards":70,
"result":"touchdown",
"players":[
{
"role":"rush",
"name":"AJ Dillon",
"jersey":"28",
"id":"e10bfeb8-ea01-47bc-bfa8-45f6dcbf71b3",
"position":"RB"
}
]
},
{
"category":"review_pending",
"description":"Play is under review.",
"sequence":2,
"start_location":{
"name":"Cowboys",
"market":"Dallas",
"alias":"DAL",
"id":"e627eec7-bbae-4fa4-8e73-8e1d6bc5c060",
"yardline":0
},
"end_location":{
"name":"Cowboys",
"market":"Dallas",
"alias":"DAL",
"id":"e627eec7-bbae-4fa4-8e73-8e1d6bc5c060",
"yardline":0
},
"players":[
]
}
]
}
]
}New On-Demand Simulations
| Release Date | Benefit |
|---|---|
| 09/09/2024 | We’re happy to announce expanded on-demand support for REST and push Simulations . This offering allows you to replay select games at your convenience.
No API Key is needed to use the simulations. Please note that Legacy Simulations will be retired in early November. For more details, see our Simulations page including code snippets for how to set up your calls. |
Integration Guide
| Release Date | Benefit |
|---|---|
| 08/23/2024 | We've released a Integration Guide for our NCAA Football v7 API! Get started on key concepts of the NCAAFB API, including:
|
Source Games
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 08/08/2024 | Current Season Schedule Current Week Schedule Season Schedule Weekly Schedule | We've added the Use the |
{
"id":"3d8f5827-49b1-49b2-b2de-7087c54208fb",
"status":"scheduled",
"coverage":"full",
"game_type":"regular",
"scheduled":"2024-08-05T16:41:00+00:00",
"entry_mode":"LDE",
"conference_game":false,
"home":{
"name":"Semifinal 1 (win)",
"alias":"Semifinal 1 (win)",
"source":{
"id":"7e8a2912-61f9-4142-8042-bb92e769ae84",
"title":"Semifinal 1",
"status":"closed",
"coverage":"full",
"game_type":"regular",
"scheduled":"2024-07-30T17:29:00+00:00",
"entry_mode":"LDE",
"outcome":"win"
}
},
"away":{
"name":"Semifinal 2 (win)",
"alias":"Semifinal 2 (win)",
"source":{
"id":"661af86f-33c7-4b57-9b17-3349c4a7caae",
"title":"Semifinal 2",
"status":"scheduled",
"coverage":"full",
"game_type":"regular",
"scheduled":"2024-07-30T17:29:00+00:00",
"entry_mode":"LDE",
"outcome":"win"
}
},
"timezone":{
}
}Tournament Endpoints
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 08/01/2024 | Tournament List Tournament Schedule Tournament Summary | We've added three new endpoints to allow you to more easily create tournament brackets. The new endpoints mimic our existing College Basketball APIs. Parse them to create tournament brackets for the expanded College Football Playoff and other football league tournaments. Tournament List - provides a summarized list of all tournaments scheduled for the given season Tournament Schedule - provides the date, time, location, and other event details for every matchup taking place in a given tournament Tournament Summary - provides tournament information including location, status, start date, end date, and participants |
Parent IDs
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 07/31/2024 | Current Season Schedule Current Week Schedule Game Boxscore Game Roster Game Statistics Play-by-Play Season Schedule Tournament Schedule Weekly Schedule | Added a standard parent Id ( Use this Id to group events (like the Super Bowl or Bowl games) across seasons. |
<game xmlns="http://feed.elasticstats.com/schema/football/pbp-v7.0.xsd" id="ca9d8f84-8e7b-4ee7-a310-54c2e3ca4edc"
status="scheduled" scheduled="2025-02-09T23:30:00+00:00" entry_mode="LDE" neutral_site="true"
game_type="playoff" conference_game="false" title="Super Bowl LIX" parent_id="f6c2b12d-966c-41a5-98a7-054620fba38b">{
"id": "ca9d8f84-8e7b-4ee7-a310-54c2e3ca4edc",
"status": "scheduled",
"scheduled": "2025-02-09T23:30:00+00:00",
"entry_mode": "LDE",
"neutral_site": true,
"game_type": "playoff",
"conference_game": false,
"title": "Super Bowl LIX",
"parent_id": "f6c2b12d-966c-41a5-98a7-054620fba38b",
"summary": {
"season": {
"id": "26a6a4e0-dfc9-11ee-8f7c-27de425212d4",
"year": 2024,
"type": "PST",
"name": "PST"
},
"week": {
"id": "e33d8a00-91d7-4cb5-b5f3-51cdaadd7089",
"sequence": 4,
"title": "4"
},
"venue": {
"id": "3c85d89a-ec66-4983-acd5-1381d6c8673a",
"name": "Caesars Superdome",
"city": "New Orleans",
"state": "LA",
"country": "USA",
"zip": "70112",
"address": "1500 Sugar Bowl Drive",
"capacity": 73208,
"surface": "artificial",
"roof_type": "dome",
"sr_id": "sr:venue:8195",
"location": {
"lat": "29.950928",
"lng": "-90.080876"
}
},
"home": {
"name": "NFC Championship (win)",
"alias": "NFC Championship (win)"
},
"away": {
"name": "AFC Championship (win)",
"alias": "AFC Championship (win)"
}
},
"broadcast": {
"network": "FOX"
},
"periods": [],
"_comment": "Generation started @ 2024-07-31 20:03:06 UTC ended @ 2024-07-31 20:03:06 UTC"
}Broadcast Info & Time Zones
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 07/11/2024 | Current Season Schedule Current Week Schedule Game Boxscore Game Roster Game Statistics Play-by-Play Season Schedule Weekly Schedule | We've added Each game will include the following broadcast info (when applicable): Internet Stream, Network, Radio Station, Satellite Station Each game will include the following time zone info: Away team time zone, Home team time zone, Venue time zone See below for sample data. |
"time_zones": {
"venue": "US/Pacific",
"home": "US/Pacific",
"away": "US/Central"
}, "broadcast": {
"network": "CBS",
"satellite": "ESPN Ocho",
"internet": "ESPN+",
"radio": "Sirius 134, XM 231"
},Venue Latitude and Longitude
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 06/26/2024 | Current Season Schedule Current Week Schedule Game Boxscore Game Roster Game Statistics League Hierarchy Play-by-Play Season Schedule Team Roster Weekly Schedule Push Statistics | We've added latitude and longitude values for all venues. |
<team id="a2ee495d-37c7-45ac-ac3d-d3a492a219c1" name="Hawkeyes" market="Iowa" alias="IOW" founded="1847" mascot="Herky the Hawk" fight_song="Iowa Fight Song" championships_won="1" conference_titles="12" playoff_appearances="0">
<franchise id="a2ee495d-37c7-45ac-ac3d-d3a492a219c1" name="Hawkeyes"/>
<venue id="967ef86b-d0de-49b7-8984-61f95104d30d" name="Kinnick Stadium" city="Iowa City" state="IA" country="USA" zip="52242" address="886 Stadium Drive" capacity="69250" surface="artificial" roof_type="outdoor">
<location lat="41.6587" lng="-91.5511"/>
</venue>
</team>
<team id="fa0eb091-8e35-49c7-b00f-269794a99a61" name="Hoosiers" market="Indiana" alias="IU" founded="1820" fight_song="Indiana, Our Indiana" championships_won="0" conference_titles="2" playoff_appearances="0">
<franchise id="fa0eb091-8e35-49c7-b00f-269794a99a61" name="Hoosiers"/>
<venue id="36ac3e20-2bfe-4654-b15a-f6398037156b" name="Memorial Stadium (Bloomington, IN)" city="Bloomington" state="IN" country="USA" zip="47408" address="1001 E 17th Street" capacity="52929" surface="artificial" roof_type="outdoor" sr_id="sr:venue:20357">
<location lat="39.1809" lng="-86.5256"/>
</venue>
</team>
<team id="7293edba-9810-444b-9df1-709c24d1c522" name="Huskies" market="Washington" alias="WAS" founded="1861" mascot="Dubs, Harry the Husky" fight_song="Bow Down to Washington" championships_won="2" conference_titles="20" playoff_appearances="2">
<franchise id="7293edba-9810-444b-9df1-709c24d1c522" name="Huskies"/>
<venue id="1d2d7c40-a4b4-43ec-9463-c1fd1f483ce8" name="Alaska Airlines Field at Husky Stadium" city="Seattle" state="WA" country="USA" zip="98105" address="3800 Montlake Boulevard NE" capacity="70083" surface="artificial" roof_type="outdoor" sr_id="sr:venue:21336">
<location lat="47.6503" lng="-122.3021"/>
</venue>
</team>
<team id="eeb3ce19-6ddd-4c91-afab-811c6cc81974" name="Nittany Lions" market="Penn State" alias="PSU" founded="1855" mascot="Nittany Lion" fight_song="Fight On, State" championships_won="4" conference_titles="4" playoff_appearances="0">
<franchise id="eeb3ce19-6ddd-4c91-afab-811c6cc81974" name="Nittany Lions"/>
<venue id="ce739138-6c6a-48a7-a2ad-25a18f9c4139" name="Beaver Stadium" city="University Park" state="PA" country="USA" zip="16802" address="1 Beaver Stadium" capacity="106572" surface="turf" roof_type="outdoor">
<location lat="40.8113" lng="-77.8550"/>
</venue>
</team>
{
"id": "a2ee495d-37c7-45ac-ac3d-d3a492a219c1",
"name": "Hawkeyes",
"market": "Iowa",
"alias": "IOW",
"founded": 1847,
"mascot": "Herky the Hawk",
"fight_song": "Iowa Fight Song",
"championships_won": 1,
"conference_titles": 12,
"playoff_appearances": 0,
"venue": {
"id": "967ef86b-d0de-49b7-8984-61f95104d30d",
"name": "Kinnick Stadium",
"city": "Iowa City",
"state": "IA",
"country": "USA",
"zip": "52242",
"address": "886 Stadium Drive",
"capacity": 69250,
"surface": "artificial",
"roof_type": "outdoor",
"location": {
"lat": "41.6587",
"lng": "-91.5511"
}
},
"franchise": {
"id": "a2ee495d-37c7-45ac-ac3d-d3a492a219c1",
"name": "Hawkeyes"
}
},
{
"id": "fa0eb091-8e35-49c7-b00f-269794a99a61",
"name": "Hoosiers",
"market": "Indiana",
"alias": "IU",
"founded": 1820,
"fight_song": "Indiana, Our Indiana",
"championships_won": 0,
"conference_titles": 2,
"playoff_appearances": 0,
"venue": {
"id": "36ac3e20-2bfe-4654-b15a-f6398037156b",
"name": "Memorial Stadium (Bloomington, IN)",
"city": "Bloomington",
"state": "IN",
"country": "USA",
"zip": "47408",
"address": "1001 E 17th Street",
"capacity": 52929,
"surface": "artificial",
"roof_type": "outdoor",
"sr_id": "sr:venue:20357",
"location": {
"lat": "39.1809",
"lng": "-86.5256"
}
},
"franchise": {
"id": "fa0eb091-8e35-49c7-b00f-269794a99a61",
"name": "Hoosiers"
}
},
Play Description Updates
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 06/26/2024 | Play-by-Play Push Events | We've removed some redundant info within our football play descriptions to allow for easier readability. Samples:
|
Special Team Fumbles
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 06/26/2024 | Game Statistics Player Profile Seasonal Statistics | Special team fumbles have now been broken out into two sub-categories to better detect whether a fumble was recovered by the receiving team or the kicking team. sp_fumble_recoveries will remain in all endpoints, but now also included will be:
|
{
"id":"0b230e93-217b-4938-a9cf-324d95b4c8f7",
"status":"closed",
"scheduled":"2023-11-24T01:20:00+00:00",
"attendance":68702,
"entry_mode":"LDE",
"clock":"00:00",
"quarter":4,
"sr_id":"sr:match:41209483",
"game_type":"regular",
"conference_game":true,
"duration":"2:58",
"weather":{
"condition":"Mostly Sunny",
"humidity":91,
"temp":39,
"wind":{
"speed":4,
"direction":"NW"
}
},
"summary":{
"season":{
"id":"a538d200-e916-4272-aa07-b486094a1668",
"year":2023,
"type":"REG",
"name":"REG"
},
"week":{
"id":"e2c914da-73a9-4f12-8016-cc86d392dd7f",
"sequence":12,
"title":"12"
},
"venue":{
"id":"c6b9e5df-c9e4-434c-b3e6-83928f11cbda",
"name":"Lumen Field",
"city":"Seattle",
"state":"WA",
"country":"USA",
"zip":"98134",
"address":"800 Occidental Avenue South",
"capacity":68740,
"surface":"artificial",
"roof_type":"outdoor",
"sr_id":"sr:venue:2291",
"location":{
"lat":"47.595165",
"lng":"-122.331650"
}
},
"home":{
"id":"3d08af9e-c767-4f88-a7dc-b920c6d2b4a8",
"name":"Seahawks",
"market":"Seattle",
"alias":"SEA",
"sr_id":"sr:competitor:4430",
"used_timeouts":0,
"remaining_timeouts":3,
"points":13,
"used_challenges":0,
"remaining_challenges":2,
"record":{
"wins":6,
"losses":7,
"ties":0
}
},
"away":{
"id":"f0e724b0-4cbf-495a-be47-013907608da9",
"name":"49ers",
"market":"San Francisco",
"alias":"SF",
"sr_id":"sr:competitor:4389",
"used_timeouts":0,
"remaining_timeouts":3,
"points":31,
"used_challenges":0,
"remaining_challenges":2,
"record":{
"wins":10,
"losses":3,
"ties":0
}
}
},
"statistics":{
"home":{
"id":"3d08af9e-c767-4f88-a7dc-b920c6d2b4a8",
"name":"Seahawks",
"market":"Seattle",
"alias":"SEA",
"sr_id":"sr:competitor:4430",
"summary":{
"possession_time":"24:30",
"avg_gain":4.1,
"safeties":0,
"turnovers":2,
"play_count":54,
"rush_plays":21,
"total_yards":220,
"fumbles":1,
"lost_fumbles":1,
"penalties":5,
"penalty_yards":39,
"return_yards":12
},
"rushing":{
"totals":{
"avg_yards":4.19,
"attempts":21,
"touchdowns":0,
"tlost":1,
"tlost_yards":-1,
"yards":88,
"longest":11,
"redzone_attempts":2,
"first_downs":8,
"broken_tackles":2,
"kneel_downs":0,
"scrambles":2,
"yards_after_contact":30
},
"players":[
{
"id":"4a76219c-34b8-4cfe-81ab-2bb011368367",
"name":"Dee Eskridge",
"jersey":"01",
"position":"WR",
"sr_id":"sr:player:2198128",
"first_downs":1,
"avg_yards":10,
"attempts":1,
"touchdowns":0,
"yards":10,
"longest":10,
"redzone_attempts":0,
"tlost":0,
"tlost_yards":0,
"broken_tackles":0,
"kneel_downs":0,
"scrambles":0,
"yards_after_contact":0
},
{
"id":"7d7f1628-85a7-4633-9ffe-d82fc2761b00",
"name":"Zach Charbonnet",
"jersey":"26",
"position":"RB",
"sr_id":"sr:player:1694587",
"first_downs":5,
"avg_yards":3.357,
"attempts":14,
"touchdowns":0,
"yards":47,
"longest":10,
"redzone_attempts":1,
"tlost":1,
"tlost_yards":-1,
"broken_tackles":1,
"kneel_downs":0,
"scrambles":0,
"yards_after_contact":27
},
{
"id":"cfc93f5e-105e-4a5e-88d3-f4279893cfa8",
"name":"Geno Smith",
"jersey":"07",
"position":"QB",
"sr_id":"sr:player:830531",
"first_downs":1,
"avg_yards":5.25,
"attempts":4,
"touchdowns":0,
"yards":21,
"longest":11,
"redzone_attempts":1,
"tlost":0,
"tlost_yards":0,
"broken_tackles":0,
"kneel_downs":0,
"scrambles":2,
"yards_after_contact":0
},
{
"id":"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2",
"name":"DeeJay Dallas",
"jersey":"31",
"position":"RB",
"sr_id":"sr:player:1232822",
"first_downs":1,
"avg_yards":5,
"attempts":2,
"touchdowns":0,
"yards":10,
"longest":7,
"redzone_attempts":0,
"tlost":0,
"tlost_yards":0,
"broken_tackles":1,
"kneel_downs":0,
"scrambles":0,
"yards_after_contact":3
}
]
},
"receiving":{
"totals":{
"targets":27,
"receptions":18,
"avg_yards":10,
"yards":180,
"touchdowns":0,
"yards_after_catch":70,
"longest":34,
"redzone_targets":1,
"air_yards":110,
"first_downs":6,
"broken_tackles":0,
"dropped_passes":1,
"catchable_passes":1,
"yards_after_contact":9
},
"players":[
{
"id":"6215db71-1e13-4c62-8f14-2005d33dee47",
"name":"Jaxon Smith-Njigba",
"jersey":"11",
"position":"WR",
"sr_id":"sr:player:2001143",
"first_downs":1,
"receptions":2,
"targets":3,
"yards":41,
"avg_yards":20.5,
"longest":34,
"touchdowns":0,
"yards_after_catch":13,
"redzone_targets":1,
"air_yards":28,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
},
{
"id":"cdc98acc-9eb6-4b44-81bb-61d7b8a3b55f",
"name":"Noah Fant",
"jersey":"87",
"position":"TE",
"sr_id":"sr:player:1225766",
"first_downs":2,
"receptions":2,
"targets":2,
"yards":25,
"avg_yards":12.5,
"longest":16,
"touchdowns":0,
"yards_after_catch":3,
"redzone_targets":0,
"air_yards":22,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
},
{
"id":"7d7f1628-85a7-4633-9ffe-d82fc2761b00",
"name":"Zach Charbonnet",
"jersey":"26",
"position":"RB",
"sr_id":"sr:player:1694587",
"first_downs":0,
"receptions":4,
"targets":4,
"yards":11,
"avg_yards":2.75,
"longest":7,
"touchdowns":0,
"yards_after_catch":21,
"redzone_targets":0,
"air_yards":-10,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":3
},
{
"id":"383f4814-6836-4766-a297-fc063e8509cc",
"name":"Will Dissly",
"jersey":"89",
"position":"TE",
"sr_id":"sr:player:1228068",
"first_downs":1,
"receptions":1,
"targets":1,
"yards":21,
"avg_yards":21,
"longest":21,
"touchdowns":0,
"yards_after_catch":14,
"redzone_targets":0,
"air_yards":7,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":3
},
{
"id":"1ea7affb-e5e7-491a-aaa3-55e200b2eb48",
"name":"Colby Parkinson",
"jersey":"84",
"position":"TE",
"sr_id":"sr:player:2040111",
"first_downs":0,
"receptions":1,
"targets":1,
"yards":9,
"avg_yards":9,
"longest":9,
"touchdowns":0,
"yards_after_catch":0,
"redzone_targets":0,
"air_yards":9,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
},
{
"id":"754faf0f-40f7-45f0-b23b-6ce990ecaf26",
"name":"DK Metcalf",
"jersey":"14",
"position":"WR",
"sr_id":"sr:player:1230010",
"first_downs":1,
"receptions":3,
"targets":9,
"yards":32,
"avg_yards":10.667,
"longest":14,
"touchdowns":0,
"yards_after_catch":14,
"redzone_targets":0,
"air_yards":18,
"broken_tackles":0,
"dropped_passes":1,
"catchable_passes":1,
"yards_after_contact":3
},
{
"id":"dffa69ad-331e-4f09-ae38-40a5a4406be6",
"name":"Tyler Lockett",
"jersey":"16",
"position":"WR",
"sr_id":"sr:player:834657",
"first_downs":1,
"receptions":3,
"targets":5,
"yards":30,
"avg_yards":10,
"longest":11,
"touchdowns":0,
"yards_after_catch":2,
"redzone_targets":0,
"air_yards":28,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
},
{
"id":"7d80dd50-e9f5-11ed-9c34-3f26f2e7ed88",
"name":"Jake Bobo",
"jersey":"19",
"position":"WR",
"sr_id":"sr:player:1412855",
"first_downs":0,
"receptions":1,
"targets":1,
"yards":6,
"avg_yards":6,
"longest":6,
"touchdowns":0,
"yards_after_catch":0,
"redzone_targets":0,
"air_yards":6,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
},
{
"id":"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2",
"name":"DeeJay Dallas",
"jersey":"31",
"position":"RB",
"sr_id":"sr:player:1232822",
"first_downs":0,
"receptions":1,
"targets":1,
"yards":5,
"avg_yards":5,
"longest":5,
"touchdowns":0,
"yards_after_catch":3,
"redzone_targets":0,
"air_yards":2,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
}
]
},
"punts":{
"totals":{
"attempts":5,
"yards":231,
"net_yards":221,
"blocked":0,
"touchbacks":0,
"inside_20":1,
"return_yards":10,
"avg_net_yards":44.2,
"avg_yards":46.2,
"longest":59,
"hang_time":21.723,
"avg_hang_time":4.345
},
"players":[
{
"id":"d1ae3222-8892-49bc-bb3e-0bcd7c74522e",
"name":"Michael Dickson",
"jersey":"04",
"position":"P",
"sr_id":"sr:player:1222324",
"attempts":5,
"yards":231,
"avg_yards":46.2,
"blocked":0,
"longest":59,
"touchbacks":0,
"inside_20":1,
"avg_net_yards":44.2,
"return_yards":10,
"net_yards":221,
"hang_time":21.723,
"avg_hang_time":4.345
}
]
},
"punt_returns":{
"totals":{
"avg_yards":0,
"yards":0,
"longest":0,
"touchdowns":0,
"faircatches":1,
"number":1
},
"players":[
{
"id":"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2",
"name":"DeeJay Dallas",
"jersey":"31",
"position":"RB",
"sr_id":"sr:player:1232822",
"yards":0,
"avg_yards":0,
"touchdowns":0,
"longest":0,
"faircatches":1,
"number":1
}
]
},
"penalties":{
"totals":{
"penalties":5,
"yards":39,
"first_downs":1
},
"players":[
{
"id":"7d7f1628-85a7-4633-9ffe-d82fc2761b00",
"name":"Zach Charbonnet",
"jersey":"26",
"position":"RB",
"sr_id":"sr:player:1694587",
"first_downs":0,
"penalties":1,
"yards":5
},
{
"id":"46aab8e6-3ca9-4213-a6cb-87db90786f6b",
"name":"Jason Peters",
"jersey":"70",
"position":"T",
"sr_id":"sr:player:827815",
"first_downs":0,
"penalties":1,
"yards":4
},
{
"id":"0589b224-bfc7-47a5-b89d-ff58ef2dcf21",
"name":"Tre Brown",
"jersey":"22",
"position":"CB",
"sr_id":"sr:player:2198172",
"first_downs":1,
"penalties":1,
"yards":5
},
{
"id":"2157404c-7cd3-4758-b620-872ad7724d04",
"name":"Stone Forsythe",
"jersey":"78",
"position":"T",
"sr_id":"sr:player:1217134",
"first_downs":0,
"penalties":1,
"yards":15
},
{
"id":"5e21c974-4168-4d6d-9b6c-97c16a96fb01",
"name":"Jon Rhattigan",
"jersey":"59",
"position":"LB",
"sr_id":"sr:player:2198712",
"first_downs":0,
"penalties":1,
"yards":10
}
]
},
"passing":{
"totals":{
"attempts":27,
"completions":18,
"cmp_pct":66.667,
"interceptions":1,
"sack_yards":48,
"rating":70,
"touchdowns":0,
"avg_yards":4,
"sacks":6,
"longest":34,
"air_yards":110,
"redzone_attempts":1,
"net_yards":132,
"yards":180,
"first_downs":6,
"int_touchdowns":0,
"throw_aways":0,
"poor_throws":3,
"defended_passes":5,
"dropped_passes":1,
"spikes":0,
"blitzes":9,
"hurries":1,
"knockdowns":3,
"pocket_time":78.742,
"avg_pocket_time":2.916,
"batted_passes":0,
"on_target_throws":19
},
"players":[
{
"id":"cfc93f5e-105e-4a5e-88d3-f4279893cfa8",
"name":"Geno Smith",
"jersey":"07",
"position":"QB",
"sr_id":"sr:player:830531",
"first_downs":6,
"attempts":27,
"completions":18,
"cmp_pct":66.667,
"yards":180,
"avg_yards":6.667,
"sacks":6,
"sack_yards":48,
"touchdowns":0,
"longest":34,
"interceptions":1,
"rating":70,
"air_yards":110,
"redzone_attempts":1,
"int_touchdowns":0,
"throw_aways":0,
"poor_throws":3,
"defended_passes":5,
"dropped_passes":1,
"spikes":0,
"blitzes":9,
"hurries":1,
"knockdowns":3,
"pocket_time":78.742,
"avg_pocket_time":2.916,
"batted_passes":0,
"on_target_throws":19
}
]
},
"misc_returns":{
"totals":{
"yards":0,
"touchdowns":0,
"blk_fg_touchdowns":0,
"blk_punt_touchdowns":0,
"fg_return_touchdowns":0,
"ez_rec_touchdowns":0,
"number":0
},
"players":[
]
},
"kickoffs":{
"totals":{
"endzone":2,
"inside_20":0,
"return_yards":52,
"touchbacks":2,
"yards":261,
"out_of_bounds":0,
"number":4,
"total_endzone":4,
"onside_attempts":0,
"onside_successes":0,
"squib_kicks":0
},
"players":[
{
"id":"7af4c94b-529b-4403-ab66-2bfed3fcf0c7",
"name":"Jason Myers",
"jersey":"05",
"position":"K",
"sr_id":"sr:player:855698",
"endzone":2,
"inside_20":0,
"return_yards":52,
"touchbacks":2,
"yards":261,
"out_of_bounds":0,
"number":4,
"total_endzone":4,
"onside_attempts":0,
"onside_successes":0,
"squib_kicks":0
}
]
},
"kick_returns":{
"totals":{
"avg_yards":35,
"yards":140,
"longest":66,
"touchdowns":0,
"faircatches":0,
"number":4
},
"players":[
{
"id":"4a76219c-34b8-4cfe-81ab-2bb011368367",
"name":"Dee Eskridge",
"jersey":"01",
"position":"WR",
"sr_id":"sr:player:2198128",
"avg_yards":35,
"yards":140,
"longest":66,
"touchdowns":0,
"faircatches":0,
"number":4
}
]
},
"int_returns":{
"totals":{
"avg_yards":12,
"yards":12,
"longest":12,
"touchdowns":1,
"longest_touchdown":12,
"number":1
},
"players":[
{
"id":"ef422c88-b74f-4720-a831-947010c44ebe",
"name":"Jordyn Brooks",
"jersey":"56",
"position":"LB",
"sr_id":"sr:player:2040011",
"avg_yards":12,
"yards":12,
"longest":12,
"touchdowns":1,
"longest_touchdown":12,
"number":1
}
]
},
"fumbles":{
"totals":{
"fumbles":1,
"lost_fumbles":1,
"own_rec":0,
"own_rec_yards":0,
"opp_rec":0,
"opp_rec_yards":0,
"out_of_bounds":0,
"forced_fumbles":1,
"own_rec_tds":0,
"opp_rec_tds":0,
"ez_rec_tds":0
},
"players":[
{
"id":"48ef5bfa-7b91-4ed1-ad12-e94c0bc101c2",
"name":"DeeJay Dallas",
"jersey":"31",
"position":"RB",
"sr_id":"sr:player:1232822",
"fumbles":1,
"lost_fumbles":1,
"own_rec":0,
"own_rec_yards":0,
"opp_rec":0,
"opp_rec_yards":0,
"out_of_bounds":0,
"forced_fumbles":0,
"own_rec_tds":0,
"opp_rec_tds":0,
"ez_rec_tds":0
},
{
"id":"e3de03f1-d749-4232-bf98-5ab9ba36df65",
"name":"Coby Bryant",
"jersey":"08",
"position":"CB",
"sr_id":"sr:player:1248868",
"fumbles":0,
"lost_fumbles":0,
"own_rec":0,
"own_rec_yards":0,
"opp_rec":0,
"opp_rec_yards":0,
"out_of_bounds":0,
"forced_fumbles":1,
"own_rec_tds":0,
"opp_rec_tds":0,
"ez_rec_tds":0
}
]
},
"field_goals":{
"totals":{
"attempts":3,
"made":2,
"blocked":0,
"yards":81,
"avg_yards":27,
"longest":51,
"net_attempts":3,
"missed":1,
"pct":66.667,
"attempts_19":0,
"attempts_29":0,
"attempts_39":1,
"attempts_49":0,
"attempts_50":2,
"made_19":0,
"made_29":0,
"made_39":1,
"made_49":0,
"made_50":1
},
"players":[
{
"id":"7af4c94b-529b-4403-ab66-2bfed3fcf0c7",
"name":"Jason Myers",
"jersey":"05",
"position":"K",
"sr_id":"sr:player:855698",
"attempts":3,
"made":2,
"blocked":0,
"yards":81,
"avg_yards":27,
"longest":51,
"missed":1,
"pct":66.667,
"attempts_19":0,
"attempts_29":0,
"attempts_39":1,
"attempts_49":0,
"attempts_50":2,
"made_19":0,
"made_29":0,
"made_39":1,
"made_49":0,
"made_50":1
}
]
},
"defense":{
"totals":{
"tackles":37,
"assists":30,
"combined":67,
"sacks":1,
"sack_yards":1,
"interceptions":1,
"passes_defended":3,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":6,
"tloss":5,
"tloss_yards":16,
"safeties":0,
"sp_tackles":5,
"sp_assists":0,
"sp_forced_fumbles":1,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":1,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"sp_own_fumble_recoveries":0,
"sp_opp_fumble_recoveries":0,
"def_targets":30,
"def_comps":20,
"blitzes":11,
"hurries":4,
"knockdowns":5,
"missed_tackles":6,
"batted_passes":0,
"three_and_outs_forced":3,
"fourth_down_stops":0
},
"players":[
{
"id":"ef422c88-b74f-4720-a831-947010c44ebe",
"name":"Jordyn Brooks",
"jersey":"56",
"position":"LB",
"sr_id":"sr:player:2040011",
"tackles":7,
"assists":5,
"combined":12,
"sacks":0,
"sack_yards":0,
"interceptions":1,
"passes_defended":1,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":3,
"def_comps":2,
"blitzes":1,
"hurries":0,
"knockdowns":0,
"missed_tackles":1,
"batted_passes":0
},
{
"id":"57b847dd-7af4-4d16-b934-641ab9b5911b",
"name":"Derick Hall",
"jersey":"58",
"position":"OLB",
"sr_id":"sr:player:1692877",
"tackles":1,
"assists":2,
"combined":3,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":1,
"knockdowns":0,
"missed_tackles":1,
"batted_passes":0
},
{
"id":"fa026462-0615-4077-81e1-90daf1c5b8f9",
"name":"Devon Witherspoon",
"jersey":"21",
"position":"CB",
"sr_id":"sr:player:2613321",
"tackles":4,
"assists":1,
"combined":5,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":1,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":1,
"tloss_yards":5,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":4,
"def_comps":3,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"383f4814-6836-4766-a297-fc063e8509cc",
"name":"Will Dissly",
"jersey":"89",
"position":"TE",
"sr_id":"sr:player:1228068",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"6f62968f-4241-439f-b5c6-6723920ca5b2",
"name":"Boye Mafe",
"jersey":"53",
"position":"LB",
"sr_id":"sr:player:1231300",
"tackles":2,
"assists":0,
"combined":2,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":1,
"knockdowns":0,
"missed_tackles":2,
"batted_passes":0
},
{
"id":"92c8bc67-756d-4e3c-981c-3df010e15e2d",
"name":"Dre'Mont Jones",
"jersey":"55",
"position":"DE",
"sr_id":"sr:player:1217072",
"tackles":1,
"assists":1,
"combined":2,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":1,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"5670f3dd-822d-4d13-a6c9-f981354441fc",
"name":"Darrell Taylor",
"jersey":"52",
"position":"LB",
"sr_id":"sr:player:2040223",
"tackles":1,
"assists":0,
"combined":1,
"sacks":1,
"sack_yards":1,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":2,
"tloss":1,
"tloss_yards":1,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":1,
"missed_tackles":1,
"batted_passes":0
},
{
"id":"eeb9e3f4-e378-44ca-94b6-a724011ad710",
"name":"Nick Bellore",
"jersey":"44",
"position":"LB",
"sr_id":"sr:player:828461",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":2,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"8092ffd3-3f39-43eb-a602-b14fff77d413",
"name":"Quandre Diggs",
"jersey":"06",
"position":"FS",
"sr_id":"sr:player:835115",
"tackles":4,
"assists":2,
"combined":6,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":1,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":6,
"def_comps":4,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":1,
"batted_passes":0
},
{
"id":"a1052a59-114e-4340-8936-bffb17431300",
"name":"Julian Love",
"jersey":"20",
"position":"SAF",
"sr_id":"sr:player:1195944",
"tackles":5,
"assists":4,
"combined":9,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":1,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":4,
"def_comps":0,
"blitzes":2,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"0589b224-bfc7-47a5-b89d-ff58ef2dcf21",
"name":"Tre Brown",
"jersey":"22",
"position":"CB",
"sr_id":"sr:player:2198172",
"tackles":1,
"assists":0,
"combined":1,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"2b5152aa-cbcc-439c-b72a-ac7577c8422b",
"name":"Leonard Williams",
"jersey":"99",
"position":"DL",
"sr_id":"sr:player:834547",
"tackles":2,
"assists":2,
"combined":4,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":2,
"tloss":1,
"tloss_yards":6,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":2,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"1a92b0ad-3eb2-4df3-bf02-04c4d9ffe10c",
"name":"Jamal Adams",
"jersey":"33",
"position":"SS",
"sr_id":"sr:player:1129509",
"tackles":3,
"assists":3,
"combined":6,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":2,
"tloss_yards":4,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":6,
"def_comps":5,
"blitzes":4,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"e3de03f1-d749-4232-bf98-5ab9ba36df65",
"name":"Coby Bryant",
"jersey":"08",
"position":"CB",
"sr_id":"sr:player:1248868",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":1,
"sp_assists":0,
"sp_forced_fumbles":1,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"fdfb980b-1493-4698-9b97-f445a8f495da",
"name":"Mario Edwards Jr.",
"jersey":"97",
"position":"DE",
"sr_id":"sr:player:834699",
"tackles":0,
"assists":2,
"combined":2,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":1,
"def_comps":1,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"706bc0ab-7200-47e9-9b09-726110eb83dc",
"name":"Bobby Wagner",
"jersey":"54",
"position":"LB",
"sr_id":"sr:player:828039",
"tackles":4,
"assists":4,
"combined":8,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":2,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":4,
"def_comps":4,
"blitzes":3,
"hurries":0,
"knockdowns":2,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"dffa69ad-331e-4f09-ae38-40a5a4406be6",
"name":"Tyler Lockett",
"jersey":"16",
"position":"WR",
"sr_id":"sr:player:834657",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":1,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"5e21c974-4168-4d6d-9b6c-97c16a96fb01",
"name":"Jon Rhattigan",
"jersey":"59",
"position":"LB",
"sr_id":"sr:player:2198712",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":1,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"c02b49d3-ddc1-4ffc-9f40-487199882fa5",
"name":"Jarran Reed",
"jersey":"90",
"position":"DE",
"sr_id":"sr:player:1074138",
"tackles":1,
"assists":3,
"combined":4,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":2,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"63fd7882-5d20-426e-9834-e85c0ebb4d5b",
"name":"Michael Jackson",
"jersey":"30",
"position":"CB",
"sr_id":"sr:player:1193460",
"tackles":1,
"assists":1,
"combined":2,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":2,
"def_comps":1,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
}
]
},
"extra_points":{
"kicks":{
"totals":{
"attempts":1,
"blocked":0,
"made":1,
"missed":0,
"pct":100
},
"players":[
{
"id":"7af4c94b-529b-4403-ab66-2bfed3fcf0c7",
"name":"Jason Myers",
"jersey":"05",
"position":"K",
"sr_id":"sr:player:855698",
"attempts":1,
"blocked":0,
"made":1,
"missed":0,
"pct":100
}
]
},
"conversions":{
"totals":{
"pass_attempts":0,
"pass_successes":0,
"rush_attempts":0,
"rush_successes":0,
"defense_attempts":0,
"defense_successes":0
},
"players":[
]
}
},
"first_downs":{
"pass":6,
"penalty":0,
"rush":8,
"total":14
},
"interceptions":{
"return_yards":12,
"returned":1,
"number":1
},
"touchdowns":{
"pass":0,
"rush":0,
"total_return":1,
"total":1,
"fumble_return":0,
"int_return":1,
"kick_return":0,
"punt_return":0,
"other":0
},
"efficiency":{
"goaltogo":{
"attempts":1,
"successes":0,
"pct":0
},
"redzone":{
"attempts":1,
"successes":0,
"pct":0
},
"thirddown":{
"attempts":11,
"successes":3,
"pct":27.273
},
"fourthdown":{
"attempts":1,
"successes":0,
"pct":0
}
}
},
"away":{
"id":"f0e724b0-4cbf-495a-be47-013907608da9",
"name":"49ers",
"market":"San Francisco",
"alias":"SF",
"sr_id":"sr:competitor:4389",
"summary":{
"possession_time":"35:30",
"avg_gain":5.8,
"safeties":0,
"turnovers":1,
"play_count":65,
"rush_plays":33,
"total_yards":377,
"fumbles":1,
"lost_fumbles":0,
"penalties":3,
"penalty_yards":20,
"return_yards":12
},
"rushing":{
"totals":{
"avg_yards":5.121,
"attempts":33,
"touchdowns":3,
"tlost":2,
"tlost_yards":-6,
"yards":169,
"longest":27,
"longest_touchdown":8,
"redzone_attempts":8,
"first_downs":12,
"broken_tackles":1,
"kneel_downs":2,
"scrambles":1,
"yards_after_contact":46
},
"players":[
{
"id":"628a6a0a-4fde-4024-8d7c-28674953d5af",
"name":"Deebo Samuel",
"jersey":"19",
"position":"WR",
"sr_id":"sr:player:1218302",
"first_downs":2,
"avg_yards":3.75,
"attempts":4,
"touchdowns":1,
"yards":15,
"longest":15,
"longest_touchdown":2,
"redzone_attempts":1,
"tlost":1,
"tlost_yards":-5,
"broken_tackles":1,
"kneel_downs":0,
"scrambles":0,
"yards_after_contact":9
},
{
"id":"d5aef708-ad61-4ab8-a637-62ff96e92040",
"name":"Brock Purdy",
"jersey":"13",
"position":"QB",
"sr_id":"sr:player:1420461",
"first_downs":0,
"avg_yards":0.333,
"attempts":3,
"touchdowns":0,
"yards":1,
"longest":3,
"redzone_attempts":1,
"tlost":0,
"tlost_yards":0,
"broken_tackles":0,
"kneel_downs":2,
"scrambles":1,
"yards_after_contact":0
},
{
"id":"8ba68abf-e9d2-4927-bf8d-476f271d840c",
"name":"Elijah Mitchell",
"jersey":"25",
"position":"RB",
"sr_id":"sr:player:1180734",
"first_downs":2,
"avg_yards":5.571,
"attempts":7,
"touchdowns":0,
"yards":39,
"longest":13,
"redzone_attempts":0,
"tlost":0,
"tlost_yards":0,
"broken_tackles":0,
"kneel_downs":0,
"scrambles":0,
"yards_after_contact":12
},
{
"id":"f96db0af-5e25-42d1-a07a-49b4e065b364",
"name":"Christian McCaffrey",
"jersey":"23",
"position":"RB",
"sr_id":"sr:player:1129507",
"first_downs":8,
"avg_yards":6,
"attempts":19,
"touchdowns":2,
"yards":114,
"longest":27,
"longest_touchdown":8,
"redzone_attempts":6,
"tlost":1,
"tlost_yards":-1,
"broken_tackles":0,
"kneel_downs":0,
"scrambles":0,
"yards_after_contact":25
}
]
},
"receiving":{
"totals":{
"targets":30,
"receptions":21,
"avg_yards":9.952,
"yards":209,
"touchdowns":1,
"yards_after_catch":100,
"longest":28,
"longest_touchdown":28,
"redzone_targets":4,
"air_yards":109,
"first_downs":10,
"broken_tackles":1,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":17
},
"players":[
{
"id":"8ba68abf-e9d2-4927-bf8d-476f271d840c",
"name":"Elijah Mitchell",
"jersey":"25",
"position":"RB",
"sr_id":"sr:player:1180734",
"first_downs":0,
"receptions":1,
"targets":1,
"yards":-3,
"avg_yards":-3,
"longest":-3,
"touchdowns":0,
"yards_after_catch":3,
"redzone_targets":0,
"air_yards":-6,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
},
{
"id":"67da5b5c-0db9-4fbc-b98d-7eb8e97b69f6",
"name":"Kyle Juszczyk",
"jersey":"44",
"position":"FB",
"sr_id":"sr:player:829117",
"first_downs":0,
"receptions":0,
"targets":1,
"yards":0,
"avg_yards":0,
"longest":0,
"touchdowns":0,
"yards_after_catch":0,
"redzone_targets":0,
"air_yards":0,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
},
{
"id":"527dfee0-a242-4dc7-830a-ab7028308259",
"name":"Charlie Woerner",
"jersey":"89",
"position":"TE",
"sr_id":"sr:player:2040477",
"first_downs":0,
"receptions":1,
"targets":1,
"yards":9,
"avg_yards":9,
"longest":9,
"touchdowns":0,
"yards_after_catch":7,
"redzone_targets":0,
"air_yards":2,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":4
},
{
"id":"2ada91b0-036e-454f-83c3-6d939ff584a9",
"name":"George Kittle",
"jersey":"85",
"position":"TE",
"sr_id":"sr:player:1130029",
"first_downs":1,
"receptions":3,
"targets":5,
"yards":19,
"avg_yards":6.333,
"longest":11,
"touchdowns":0,
"yards_after_catch":11,
"redzone_targets":1,
"air_yards":8,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
},
{
"id":"3ae9f0fa-c711-4663-80cf-4707856c07aa",
"name":"Jauan Jennings",
"jersey":"15",
"position":"WR",
"sr_id":"sr:player:1219286",
"first_downs":1,
"receptions":1,
"targets":2,
"yards":7,
"avg_yards":7,
"longest":7,
"touchdowns":0,
"yards_after_catch":3,
"redzone_targets":0,
"air_yards":4,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":3
},
{
"id":"628a6a0a-4fde-4024-8d7c-28674953d5af",
"name":"Deebo Samuel",
"jersey":"19",
"position":"WR",
"sr_id":"sr:player:1218302",
"first_downs":4,
"receptions":7,
"targets":9,
"yards":79,
"avg_yards":11.286,
"longest":24,
"touchdowns":0,
"yards_after_catch":43,
"redzone_targets":2,
"air_yards":36,
"broken_tackles":1,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":8
},
{
"id":"c90471cc-fa60-4416-9388-5aebb5d877eb",
"name":"Brandon Aiyuk",
"jersey":"11",
"position":"WR",
"sr_id":"sr:player:2040579",
"first_downs":2,
"receptions":2,
"targets":4,
"yards":50,
"avg_yards":25,
"longest":28,
"touchdowns":1,
"longest_touchdown":28,
"yards_after_catch":12,
"redzone_targets":0,
"air_yards":38,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":2
},
{
"id":"f7ff7599-a175-4a0c-b887-3ae9e596fc64",
"name":"Ray-Ray McCloud III",
"jersey":"03",
"position":"WR",
"sr_id":"sr:player:1218938",
"first_downs":1,
"receptions":1,
"targets":1,
"yards":23,
"avg_yards":23,
"longest":23,
"touchdowns":0,
"yards_after_catch":12,
"redzone_targets":0,
"air_yards":11,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
},
{
"id":"f96db0af-5e25-42d1-a07a-49b4e065b364",
"name":"Christian McCaffrey",
"jersey":"23",
"position":"RB",
"sr_id":"sr:player:1129507",
"first_downs":1,
"receptions":5,
"targets":6,
"yards":25,
"avg_yards":5,
"longest":14,
"touchdowns":0,
"yards_after_catch":9,
"redzone_targets":1,
"air_yards":16,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":0
}
]
},
"punts":{
"totals":{
"attempts":5,
"yards":199,
"net_yards":199,
"blocked":0,
"touchbacks":0,
"inside_20":3,
"return_yards":0,
"avg_net_yards":39.8,
"avg_yards":39.8,
"longest":51,
"hang_time":21.419999999999998,
"avg_hang_time":4.284
},
"players":[
{
"id":"e8e8a5fe-00d1-4ffc-9401-9e5cb254afea",
"name":"Mitch Wishnowsky",
"jersey":"18",
"position":"P",
"sr_id":"sr:player:1221966",
"attempts":5,
"yards":199,
"avg_yards":39.8,
"blocked":0,
"longest":51,
"touchbacks":0,
"inside_20":3,
"avg_net_yards":39.8,
"return_yards":0,
"net_yards":199,
"hang_time":21.419999999999998,
"avg_hang_time":4.284
}
]
},
"punt_returns":{
"totals":{
"avg_yards":3.333,
"yards":10,
"longest":4,
"touchdowns":0,
"faircatches":1,
"number":3
},
"players":[
{
"id":"f7ff7599-a175-4a0c-b887-3ae9e596fc64",
"name":"Ray-Ray McCloud III",
"jersey":"03",
"position":"WR",
"sr_id":"sr:player:1218938",
"yards":10,
"avg_yards":3.333,
"touchdowns":0,
"longest":4,
"faircatches":1,
"number":3
}
]
},
"penalties":{
"totals":{
"penalties":3,
"yards":20,
"first_downs":0
},
"players":[
{
"id":"392ccaf6-6d81-453f-85e3-7702ac081db3",
"name":"Jon Feliciano",
"jersey":"55",
"position":"OL",
"sr_id":"sr:player:835149",
"first_downs":0,
"penalties":1,
"yards":5
},
{
"id":"848e4531-e43d-4ae1-a2d8-e0d258fb2c93",
"name":"Aaron Banks",
"jersey":"65",
"position":"OL",
"sr_id":"sr:player:2197670",
"first_downs":0,
"penalties":1,
"yards":5
},
{
"id":"3ae9f0fa-c711-4663-80cf-4707856c07aa",
"name":"Jauan Jennings",
"jersey":"15",
"position":"WR",
"sr_id":"sr:player:1219286",
"first_downs":0,
"penalties":1,
"yards":10
}
]
},
"passing":{
"totals":{
"attempts":31,
"completions":21,
"cmp_pct":67.742,
"interceptions":1,
"sack_yards":1,
"rating":83.9,
"touchdowns":1,
"avg_yards":6.5,
"sacks":1,
"longest":28,
"longest_touchdown":28,
"air_yards":109,
"redzone_attempts":4,
"net_yards":208,
"yards":209,
"first_downs":10,
"int_touchdowns":1,
"throw_aways":1,
"poor_throws":6,
"defended_passes":3,
"dropped_passes":0,
"spikes":0,
"blitzes":10,
"hurries":4,
"knockdowns":5,
"pocket_time":84.77700000000002,
"avg_pocket_time":2.735,
"batted_passes":0,
"on_target_throws":21
},
"players":[
{
"id":"628a6a0a-4fde-4024-8d7c-28674953d5af",
"name":"Deebo Samuel",
"jersey":"19",
"position":"WR",
"sr_id":"sr:player:1218302",
"first_downs":0,
"attempts":1,
"completions":0,
"cmp_pct":0,
"yards":0,
"avg_yards":0,
"sacks":0,
"sack_yards":0,
"touchdowns":0,
"longest":0,
"interceptions":0,
"rating":39.6,
"air_yards":0,
"redzone_attempts":0,
"int_touchdowns":0,
"throw_aways":1,
"poor_throws":0,
"defended_passes":0,
"dropped_passes":0,
"spikes":0,
"blitzes":0,
"hurries":0,
"knockdowns":1,
"pocket_time":0.608,
"avg_pocket_time":0.608,
"batted_passes":0,
"on_target_throws":0
},
{
"id":"d5aef708-ad61-4ab8-a637-62ff96e92040",
"name":"Brock Purdy",
"jersey":"13",
"position":"QB",
"sr_id":"sr:player:1420461",
"first_downs":10,
"attempts":30,
"completions":21,
"cmp_pct":70,
"yards":209,
"avg_yards":6.967,
"sacks":1,
"sack_yards":1,
"touchdowns":1,
"longest":28,
"interceptions":1,
"rating":86.7,
"longest_touchdown":28,
"air_yards":109,
"redzone_attempts":4,
"int_touchdowns":1,
"throw_aways":0,
"poor_throws":6,
"defended_passes":3,
"dropped_passes":0,
"spikes":0,
"blitzes":10,
"hurries":4,
"knockdowns":4,
"pocket_time":84.16900000000001,
"avg_pocket_time":2.806,
"batted_passes":0,
"on_target_throws":21
}
]
},
"misc_returns":{
"totals":{
"yards":0,
"touchdowns":0,
"blk_fg_touchdowns":0,
"blk_punt_touchdowns":0,
"fg_return_touchdowns":0,
"ez_rec_touchdowns":0,
"number":0
},
"players":[
]
},
"kickoffs":{
"totals":{
"endzone":0,
"inside_20":0,
"return_yards":140,
"touchbacks":2,
"yards":359,
"out_of_bounds":0,
"number":6,
"total_endzone":2,
"onside_attempts":0,
"onside_successes":0,
"squib_kicks":0
},
"players":[
{
"id":"e7a7eaea-0f77-42ab-b6a2-12ebcf51227c",
"name":"Jake Moody",
"jersey":"04",
"position":"K",
"sr_id":"sr:player:1555827",
"endzone":0,
"inside_20":0,
"return_yards":140,
"touchbacks":2,
"yards":359,
"out_of_bounds":0,
"number":6,
"total_endzone":2,
"onside_attempts":0,
"onside_successes":0,
"squib_kicks":0
}
]
},
"kick_returns":{
"totals":{
"avg_yards":26,
"yards":52,
"longest":29,
"touchdowns":0,
"faircatches":0,
"number":2
},
"players":[
{
"id":"f7ff7599-a175-4a0c-b887-3ae9e596fc64",
"name":"Ray-Ray McCloud III",
"jersey":"03",
"position":"WR",
"sr_id":"sr:player:1218938",
"avg_yards":26,
"yards":52,
"longest":29,
"touchdowns":0,
"faircatches":0,
"number":2
}
]
},
"int_returns":{
"totals":{
"avg_yards":2,
"yards":2,
"longest":2,
"touchdowns":0,
"number":1
},
"players":[
{
"id":"7da672ef-7d6f-4162-b3ee-7faa37b0ed95",
"name":"Ambry Thomas",
"jersey":"20",
"position":"CB",
"sr_id":"sr:player:2197844",
"avg_yards":2,
"yards":2,
"longest":2,
"touchdowns":0,
"number":1
}
]
},
"fumbles":{
"totals":{
"fumbles":1,
"lost_fumbles":0,
"own_rec":1,
"own_rec_yards":0,
"opp_rec":1,
"opp_rec_yards":8,
"out_of_bounds":0,
"forced_fumbles":0,
"own_rec_tds":0,
"opp_rec_tds":0,
"ez_rec_tds":0
},
"players":[
{
"id":"ba06804a-b84c-408a-8ef6-5226d8424479",
"name":"Ronnie Bell",
"jersey":"10",
"position":"WR",
"sr_id":"sr:player:1436648",
"fumbles":0,
"lost_fumbles":0,
"own_rec":0,
"own_rec_yards":0,
"opp_rec":1,
"opp_rec_yards":8,
"out_of_bounds":0,
"forced_fumbles":0,
"own_rec_tds":0,
"opp_rec_tds":0,
"ez_rec_tds":0
},
{
"id":"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17",
"name":"Oren Burks",
"jersey":"48",
"position":"LB",
"sr_id":"sr:player:1181532",
"fumbles":0,
"lost_fumbles":0,
"own_rec":1,
"own_rec_yards":0,
"opp_rec":0,
"opp_rec_yards":0,
"out_of_bounds":0,
"forced_fumbles":0,
"own_rec_tds":0,
"opp_rec_tds":0,
"ez_rec_tds":0
},
{
"id":"f7ff7599-a175-4a0c-b887-3ae9e596fc64",
"name":"Ray-Ray McCloud III",
"jersey":"03",
"position":"WR",
"sr_id":"sr:player:1218938",
"fumbles":1,
"lost_fumbles":0,
"own_rec":0,
"own_rec_yards":0,
"opp_rec":0,
"opp_rec_yards":0,
"out_of_bounds":0,
"forced_fumbles":0,
"own_rec_tds":0,
"opp_rec_tds":0,
"ez_rec_tds":0
}
]
},
"field_goals":{
"totals":{
"attempts":1,
"made":1,
"blocked":0,
"yards":32,
"avg_yards":32,
"longest":32,
"net_attempts":1,
"missed":0,
"pct":100,
"attempts_19":0,
"attempts_29":0,
"attempts_39":1,
"attempts_49":0,
"attempts_50":0,
"made_19":0,
"made_29":0,
"made_39":1,
"made_49":0,
"made_50":0
},
"players":[
{
"id":"e7a7eaea-0f77-42ab-b6a2-12ebcf51227c",
"name":"Jake Moody",
"jersey":"04",
"position":"K",
"sr_id":"sr:player:1555827",
"attempts":1,
"made":1,
"blocked":0,
"yards":32,
"avg_yards":32,
"longest":32,
"missed":0,
"pct":100,
"attempts_19":0,
"attempts_29":0,
"attempts_39":1,
"attempts_49":0,
"attempts_50":0,
"made_19":0,
"made_29":0,
"made_39":1,
"made_49":0,
"made_50":0
}
]
},
"defense":{
"totals":{
"tackles":33,
"assists":28,
"combined":61,
"sacks":6,
"sack_yards":48,
"interceptions":1,
"passes_defended":5,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":12,
"tloss":5,
"tloss_yards":29,
"safeties":0,
"sp_tackles":2,
"sp_assists":4,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":2,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"sp_own_fumble_recoveries":0,
"sp_opp_fumble_recoveries":1,
"def_targets":27,
"def_comps":18,
"blitzes":11,
"hurries":2,
"knockdowns":3,
"missed_tackles":4,
"batted_passes":0,
"three_and_outs_forced":3,
"fourth_down_stops":1
},
"players":[
{
"id":"ab9bd5b1-eaf9-4f2d-8acd-fbc143980b17",
"name":"Oren Burks",
"jersey":"48",
"position":"LB",
"sr_id":"sr:player:1181532",
"tackles":3,
"assists":1,
"combined":4,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":1,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"d24bbe70-baba-4337-822e-c166a156f92e",
"name":"Deommodore Lenoir",
"jersey":"02",
"position":"DB",
"sr_id":"sr:player:2198824",
"tackles":4,
"assists":3,
"combined":7,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":2,
"def_comps":2,
"blitzes":1,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"7da672ef-7d6f-4162-b3ee-7faa37b0ed95",
"name":"Ambry Thomas",
"jersey":"20",
"position":"CB",
"sr_id":"sr:player:2197844",
"tackles":1,
"assists":0,
"combined":1,
"sacks":0,
"sack_yards":0,
"interceptions":1,
"passes_defended":2,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":4,
"def_comps":2,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"108759bf-8c78-41c6-a409-b87c63985c21",
"name":"Clelin Ferrell",
"jersey":"94",
"position":"DL",
"sr_id":"sr:player:1217516",
"tackles":0,
"assists":1,
"combined":1,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"af9f7390-ca80-11ec-97ae-e1573849d1a6",
"name":"Jordan Mason",
"jersey":"24",
"position":"RB",
"sr_id":"sr:player:1481066",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":1,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"1a8eff7a-1057-47c9-aa82-3dbf3f47a76c",
"name":"Javon Kinlaw",
"jersey":"99",
"position":"DT",
"sr_id":"sr:player:2040103",
"tackles":1,
"assists":0,
"combined":1,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":1,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":1,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"83d45661-2687-4ca9-ac45-91beac7b7082",
"name":"Isaiah Oliver",
"jersey":"26",
"position":"CB",
"sr_id":"sr:player:1473986",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":1,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"ba06804a-b84c-408a-8ef6-5226d8424479",
"name":"Ronnie Bell",
"jersey":"10",
"position":"WR",
"sr_id":"sr:player:1436648",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":1,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"sp_own_fumble_recoveries":0,
"sp_opp_fumble_recoveries":1,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"d5efd828-7339-43a7-ad7e-6f936dbbabb2",
"name":"Tashaun Gipson Sr.",
"jersey":"31",
"position":"SAF",
"sr_id":"sr:player:831467",
"tackles":4,
"assists":1,
"combined":5,
"sacks":1,
"sack_yards":9,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":1,
"tloss":1,
"tloss_yards":9,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":1,
"def_comps":1,
"blitzes":1,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"e6eb9d50-9231-44ff-89eb-7f7b996e042f",
"name":"Dre Greenlaw",
"jersey":"57",
"position":"LB",
"sr_id":"sr:player:1833944",
"tackles":5,
"assists":3,
"combined":8,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":4,
"def_comps":4,
"blitzes":1,
"hurries":0,
"knockdowns":0,
"missed_tackles":1,
"batted_passes":0
},
{
"id":"75c1ed8d-4f05-43c1-b398-f212984b6b8b",
"name":"Samuel Womack III",
"jersey":"00",
"position":"CB",
"sr_id":"sr:player:1354974",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":1,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"987c5e68-21d5-4bcb-a5f3-2e09cc512374",
"name":"Nick Bosa",
"jersey":"97",
"position":"DL",
"sr_id":"sr:player:1218376",
"tackles":3,
"assists":2,
"combined":5,
"sacks":2,
"sack_yards":16.5,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":5,
"tloss":2,
"tloss_yards":8,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":1,
"knockdowns":2,
"missed_tackles":1,
"batted_passes":0
},
{
"id":"04f6abef-834f-470e-9c15-8c0cc62fde4e",
"name":"Charvarius Ward",
"jersey":"07",
"position":"CB",
"sr_id":"sr:player:1183160",
"tackles":3,
"assists":2,
"combined":5,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":3,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":11,
"def_comps":4,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"8b45bbcf-b700-4db4-8382-163ddf2db169",
"name":"Darrell Luter Jr.",
"jersey":"28",
"position":"CB",
"sr_id":"sr:player:2029479",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":1,
"sp_assists":1,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"3f8e4972-2361-4939-b5e3-c5f6c63b9f68",
"name":"Javon Hargrave",
"jersey":"98",
"position":"DL",
"sr_id":"sr:player:1074106",
"tackles":2,
"assists":5,
"combined":7,
"sacks":1.5,
"sack_yards":10.5,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":2,
"tloss":1,
"tloss_yards":8,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":1,
"batted_passes":0
},
{
"id":"75a74283-5ab6-49d4-bf2f-e6fcaf91ec36",
"name":"Fred Warner",
"jersey":"54",
"position":"LB",
"sr_id":"sr:player:1198502",
"tackles":3,
"assists":3,
"combined":6,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":2,
"def_comps":2,
"blitzes":4,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"c5175598-1392-4eaa-ae62-d99811a0c477",
"name":"Demetrius Flannigan-Fowles",
"jersey":"45",
"position":"LB",
"sr_id":"sr:player:1197266",
"tackles":0,
"assists":0,
"combined":0,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":1,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"626586f3-5706-443e-a272-c6d9e6239784",
"name":"Ji'Ayir Brown",
"jersey":"27",
"position":"SAF",
"sr_id":"sr:player:2001813",
"tackles":1,
"assists":3,
"combined":4,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":2,
"def_comps":2,
"blitzes":2,
"hurries":0,
"knockdowns":0,
"missed_tackles":1,
"batted_passes":0
},
{
"id":"2a86a6b4-58ef-42f5-aff9-d5d979bea6c7",
"name":"Kevin Givens",
"jersey":"90",
"position":"DL",
"sr_id":"sr:player:1218654",
"tackles":0,
"assists":1,
"combined":1,
"sacks":0.5,
"sack_yards":4,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":1,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"5c913725-c52a-4633-b3b9-efa6a9d2cf05",
"name":"Randy Gregory",
"jersey":"05",
"position":"LB",
"sr_id":"sr:player:834751",
"tackles":1,
"assists":0,
"combined":1,
"sacks":0,
"sack_yards":0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":0,
"tloss":1,
"tloss_yards":4,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":1,
"def_comps":1,
"blitzes":2,
"hurries":1,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
},
{
"id":"acb7169f-3ffa-4386-9866-e06af6ed7fef",
"name":"Arik Armstead",
"jersey":"91",
"position":"DL",
"sr_id":"sr:player:834509",
"tackles":2,
"assists":3,
"combined":5,
"sacks":1,
"sack_yards":8,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":0,
"fumble_recoveries":0,
"qb_hits":2,
"tloss":0,
"tloss_yards":0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":0,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":0,
"def_comps":0,
"blitzes":0,
"hurries":0,
"knockdowns":0,
"missed_tackles":0,
"batted_passes":0
}
]
},
"extra_points":{
"kicks":{
"totals":{
"attempts":4,
"blocked":0,
"made":4,
"missed":0,
"pct":100
},
"players":[
{
"id":"e7a7eaea-0f77-42ab-b6a2-12ebcf51227c",
"name":"Jake Moody",
"jersey":"04",
"position":"K",
"sr_id":"sr:player:1555827",
"attempts":4,
"blocked":0,
"made":4,
"missed":0,
"pct":100
}
]
},
"conversions":{
"totals":{
"pass_attempts":0,
"pass_successes":0,
"rush_attempts":0,
"rush_successes":0,
"defense_attempts":0,
"defense_successes":0
},
"players":[
]
}
},
"first_downs":{
"pass":10,
"penalty":1,
"rush":12,
"total":23
},
"interceptions":{
"return_yards":2,
"returned":1,
"number":1
},
"touchdowns":{
"pass":1,
"rush":3,
"total_return":0,
"total":4,
"fumble_return":0,
"int_return":0,
"kick_return":0,
"punt_return":0,
"other":0
},
"efficiency":{
"goaltogo":{
"attempts":3,
"successes":3,
"pct":100
},
"redzone":{
"attempts":4,
"successes":3,
"pct":75
},
"thirddown":{
"attempts":11,
"successes":5,
"pct":45.455
},
"fourthdown":{
"attempts":0,
"successes":0,
"pct":0
}
}
}
},
"_comment":"Generation started @ 2024-06-26 15:57:25 UTC ended @ 2024-06-26 15:57:25 UTC"
}Drive Data
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 06/26/2024 | Game Boxscore Push Events | We've added drive-level data points to the Game Boxscore and Push Events feeds. These data points were previously offered in the Play-by-Play exclusively. Drive attributes include:
|
<drive id="0ae9e8b3-5df8-4e12-906e-f2eca1038422" sequence="3" start_reason="Kickoff" end_reason="Field Goal"
play_count="12" duration="6:45" first_downs="4" gain="71" penalty_yards="0" inside_20="true"
scoring_drive="true" team_sequence="2" start_clock="7:56" end_clock="1:11" first_drive_yardline="75"
last_drive_yardline="4" farthest_drive_yardline="3" net_yards="71" pat_points_attempted="0">
<quarter id="77588acc-cb78-47eb-95e7-570e5ff195cd" number="1" sequence="1"/>
<team id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422"/>
<offensive_team points="3" id="6680d28d-d4d2-49f6-aace-5292d3ec02c2"/>
<defensive_team points="0" id="ce92bd47-93d5-4fe9-ada4-0fc681e6caa0"/>
<plays>
<play id="c4568630-769a-11ee-8314-5d4d3e972ad8" sequence="1698611931236.0" clock="7:56" home_points="7" away_points="0" wall_clock="2023-10-29T20:38:46+00:00" fake_punt="false" fake_field_goal="false" screen_pass="false" hash_mark="Middle" play_action="false" run_pass_option="false" created_at="2023-10-29T20:38:51+00:00" updated_at="2023-10-30T15:34:34+00:00" type="kickoff">
<start_situation clock="7:56" down="0" yfd="0">
<possession id="ce92bd47-93d5-4fe9-ada4-0fc681e6caa0" name="Broncos" market="Denver" alias="DEN" sr_id="sr:competitor:4418"/>
<location id="ce92bd47-93d5-4fe9-ada4-0fc681e6caa0" name="Broncos" market="Denver" alias="DEN" sr_id="sr:competitor:4418" yardline="35"/>
</start_situation>
<end_situation clock="7:56" down="1" yfd="10">
<possession id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422"/>
<location id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422" yardline="25"/>
</end_situation>
<description>W.Lutz kicks 65 yards from DEN 35 to the KC End Zone. Touchback.</description>
<quarter id="77588acc-cb78-47eb-95e7-570e5ff195cd" number="1" sequence="1"/>
<statistics>
<kick attempt="1" yards="65" net_yards="40" touchback="1" onside_attempt="0" onside_success="0" squib_kick="0">
<team id="ce92bd47-93d5-4fe9-ada4-0fc681e6caa0" name="Broncos" market="Denver" alias="DEN" sr_id="sr:competitor:4418"/>
<player id="c4cf84d0-6022-4ac1-a9ba-85587921c53f" name="Wil Lutz" jersey="16" position="K" sr_id="sr:player:990735"/>
</kick>
<return touchback="1" category="kick_return">
<team id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422"/>
</return>
</statistics>
<details>
<detail category="kick_off" sequence="0" yards="65" result="touchback">
<description>W.Lutz kicks 65 yards from DEN 35 to the KC End Zone.</description>
<start_location alias="DEN" yardline="35"/>
<end_location alias="KC" yardline="0"/>
<players>
<player id="c4cf84d0-6022-4ac1-a9ba-85587921c53f" name="Wil Lutz" jersey="16" position="K" sr_id="sr:player:990735" role="kick"/>
</players>
</detail>
<detail category="touchback" sequence="1" result="touchback">
<description>Touchback.</description>
<start_location alias="KC" yardline="0"/>
<end_location alias="KC" yardline="25"/>
<players>
<player id="c4cf84d0-6022-4ac1-a9ba-85587921c53f" name="Wil Lutz" jersey="16" position="K" sr_id="sr:player:990735" role="kick"/>
</players>
</detail>
</details>
</play>Push Statistics - Game Data
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 06/05/2024 | Push Statistics | We've added a number of game attributes to the Push Statistics feed. These attributes can also be found in the RESTful Game Statistics endpoint and include, but are not limited to:
|
{
"payload":{
"player":{
"name":"Noah Gray",
"jersey":"83",
"id":"c97dfcb6-b999-476f-8487-f3848e92df17",
"position":"TE",
"sr_id":"sr:player:2197934"
},
"receiving":{
"receptions":2,
"targets":2,
"yards":22,
"avg_yards":11.0,
"longest":12,
"touchdowns":0,
"yards_after_catch":14,
"redzone_targets":0,
"air_yards":8,
"broken_tackles":0,
"dropped_passes":0,
"catchable_passes":0,
"yards_after_contact":5,
"firstdowns":1
}
},
"locale":"en",
"metadata":{
"league":"nfl",
"match":"sd:match:902a4753-72f9-4868-9d9b-193a5c41ea4d,sr:match:46791617",
"status":"closed",
"participant":"sd:player:c97dfcb6-b999-476f-8487-f3848e92df17,sr:player:2197934",
"locale":"en",
"operation":"update",
"version":"v7"
}
}{
"payload":{
"player":{
"name":"Tommy Townsend",
"jersey":"05",
"id":"edfc712a-54f7-4c34-a838-c50c14dbf7dc",
"position":"P",
"sr_id":"sr:player:2040157"
},
"punts":{
"attempts":5,
"yards":254,
"avg_yards":50.8,
"blocked":0,
"longest":62,
"touchbacks":0,
"inside_20":2,
"avg_net_yards":50.8,
"return_yards":0,
"net_yards":254,
"hang_time":25.048,
"avg_hang_time":5.01
}
},
"locale":"en",
"metadata":{
"league":"nfl",
"match":"sd:match:902a4753-72f9-4868-9d9b-193a5c41ea4d,sr:match:46791617",
"status":"closed",
"participant":"sd:player:edfc712a-54f7-4c34-a838-c50c14dbf7dc,sr:player:2040157",
"locale":"en",
"operation":"update",
"version":"v7"
}
}{
"payload":{
"name":"Chiefs",
"market":"Kansas City",
"alias":"KC",
"id":"902a4753-72f9-4868-9d9b-193a5c41ea4d",
"title":"Super Bowl LVIII",
"status":"closed",
"coverage":"full",
"neutral_site":true,
"game_type":"playoff",
"scheduled":"2024-02-11T23:30:00+00:00",
"attendance":61629,
"duration":"4:06",
"entry_mode":"LDE",
"wx_temp":54,
"wx_humidity":26,
"wx_wind_speed":6,
"wx_wind_direction":"NE",
"wx_condition":"Sunny",
"weather":"Sunny Temp: 54 F, Humidity: 26%, Wind: NE 6 mph",
"quarter":5,
"clock":"00:03",
"conference_game":false,
"sr_id":"sr:match:46791617",
"team":{
"name":"Chiefs",
"market":"Kansas City",
"alias":"KC",
"id":"6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"sr_id":"sr:competitor:4422"
},
"summary":{
"possession_time":"36:26",
"avg_gain":5.8,
"safeties":0,
"turnovers":2,
"play_count":79,
"rush_plays":30,
"total_yards":455,
"fumbles":5,
"lost_fumbles":1,
"penalties":6,
"penalty_yards":55,
"return_yards":12,
"season":{
"id":"736474f0-adc5-11ee-b174-6f0e0e094ae8",
"year":2023,
"type":"PST",
"name":"PST"
},
"week":{
"id":"8ece04d3-ed37-4ac0-a66b-5c0a1fdf99f3",
"sequence":4,
"title":"4"
},
"venue":{
"id":"53d42601-5dfb-40a7-bd94-da2c1d3a75e4",
"name":"Allegiant Stadium",
"city":"Las Vegas",
"state":"NV",
"country":"USA",
"zip":"89118",
"address":"3333 Al Davis Way",
"capacity":65000,
"surface":"turf",
"roof_type":"dome",
"sr_id":"sr:venue:51543",
"location":{
"latitude":"36.090852",
"longitude":"-115.183339"
}
},
"home":{
"name":"Chiefs",
"market":"Kansas City",
"alias":"KC",
"used_timeouts":1,
"remaining_timeouts":1,
"used_challenges":0,
"remaining_challenges":2,
"id":"6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"points":25,
"sr_id":"sr:competitor:4422",
"record":{
"wins":11,
"losses":6,
"ties":0
}
},
"away":{
"name":"49ers",
"market":"San Francisco",
"alias":"SF",
"used_timeouts":1,
"remaining_timeouts":1,
"used_challenges":0,
"remaining_challenges":2,
"id":"f0e724b0-4cbf-495a-be47-013907608da9",
"points":22,
"sr_id":"sr:competitor:4389",
"record":{
"wins":12,
"losses":5,
"ties":0
}
}
},
"rushing":{
"avg_yards":4.333,
"attempts":30,
"touchdowns":0,
"tlost":1,
"tlost_yards":-3,
"yards":130,
"longest":22,
"redzone_attempts":5,
"broken_tackles":2,
"kneel_downs":0,
"scrambles":6,
"yards_after_contact":38,
"firstdowns":9
},
"receiving":{
"targets":42,
"receptions":34,
"avg_yards":9.794,
"yards":333,
"touchdowns":2,
"yards_after_catch":184,
"longest":52,
"longest_touchdown":16,
"redzone_targets":6,
"air_yards":149,
"broken_tackles":2,
"dropped_passes":1,
"catchable_passes":1,
"yards_after_contact":41,
"firstdowns":15
},
"punts":{
"attempts":5,
"yards":254,
"net_yards":254,
"blocked":0,
"touchbacks":0,
"inside_20":2,
"return_yards":0,
"avg_net_yards":50.8,
"avg_yards":50.8,
"longest":62,
"hang_time":25.048,
"avg_hang_time":5.01
},
"punt_returns":{
"avg_yards":3.0,
"returns":4,
"yards":12,
"longest":7,
"touchdowns":0,
"faircatches":0
},
"penalties":{
"penalties":6,
"yards":55,
"firstdowns":3,
"def_penalties":4,
"def_penalty_yards":40,
"off_penalties":2,
"off_penalty_yards":15,
"sp_penalties":0,
"sp_penalty_yards":0
},
"passing":{
"attempts":46,
"completions":34,
"cmp_pct":73.913,
"interceptions":1,
"sack_yards":8,
"rating":99.3,
"touchdowns":2,
"avg_yards":6.633,
"sacks":3,
"longest":52,
"longest_touchdown":16,
"air_yards":149,
"redzone_attempts":6,
"throw_aways":4,
"defended_passes":1,
"dropped_passes":1,
"spikes":0,
"blitzes":7,
"hurries":2,
"knockdowns":4,
"pocket_time":126.62199999999999,
"avg_pocket_time":2.753,
"poor_throws":6,
"on_target_throws":35,
"batted_passes":0,
"firstdowns":15,
"int_touchdowns":0,
"net_yards":325,
"yards":333
},
"misc_returns":{
"returns":0,
"yards":0,
"touchdowns":0,
"blk_fg_touchdowns":0,
"blk_punt_touchdowns":0,
"fg_return_touchdowns":0,
"ez_rec_touchdowns":0,
"blk_fg_yards":0,
"blk_fg_returns":0,
"blk_punt_yards":0,
"blk_punt_returns":0,
"fg_return_yards":0,
"fg_return_returns":0
},
"kickoffs":{
"kickoffs":7,
"endzone":0,
"inside_20":0,
"return_yards":0,
"returned":0,
"touchbacks":7,
"yards":455,
"out_of_bounds":0,
"onside_attempts":0,
"onside_successes":0,
"squib_kicks":0,
"net_yards":280,
"longest":65,
"return_touchdowns":0
},
"kick_returns":{
"avg_yards":0.0,
"returns":0,
"yards":0,
"longest":0,
"touchdowns":0,
"faircatches":0
},
"int_returns":{
"avg_yards":0.0,
"returns":0,
"yards":0,
"touchdowns":0
},
"fumbles":{
"fumbles":5,
"lost_fumbles":1,
"own_rec":4,
"own_rec_yards":-10,
"opp_rec":2,
"opp_rec_yards":0,
"out_of_bounds":0,
"forced_fumbles":1,
"own_rec_tds":0,
"opp_rec_tds":0,
"ez_rec_tds":0
},
"field_goals":{
"attempts":4,
"made":4,
"blocked":0,
"yards":138,
"avg_yards":34.5,
"longest":57,
"attempts_19":0,
"attempts_29":3,
"attempts_39":0,
"attempts_49":0,
"attempts_50":1,
"made_19":0,
"made_29":3,
"made_39":0,
"made_49":0,
"made_50":1,
"missed":0
},
"extra_points":{
"kick_attempts":1,
"kick_blocked":0,
"kick_made":1,
"pass_conv_attempts":0,
"pass_conv_successes":0,
"rush_conv_attempts":0,
"rush_conv_successes":0,
"def_conv_attempts":0,
"def_conv_successes":0,
"missed":0,
"pass_conv_three_point_attempts":0,
"pass_conv_three_point_successes":0,
"rush_conv_three_point_attempts":0,
"rush_conv_three_point_successes":0,
"def_conv_three_point_attempts":0,
"def_conv_three_point_successes":0
},
"defense":{
"tackles":33,
"assists":41,
"combined":74,
"sacks":1.0,
"sack_yards":4.0,
"passes_defended":6,
"forced_fumbles":1,
"fumble_recoveries":1,
"qb_hits":11,
"tloss":4.0,
"tloss_yards":15.0,
"safeties":0,
"sp_tackles":1,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":1,
"sp_blocks":1,
"misc_tackles":1,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":37,
"def_comps":24,
"blitzes":25,
"hurries":0,
"knockdowns":9,
"missed_tackles":8,
"batted_passes":2,
"three_and_outs_forced":3,
"fourth_down_stops":0,
"def_yards_against":276,
"field_goal_blocks":0,
"punt_blocks":0,
"extra_point_blocks":1,
"def_touchdowns_against":2,
"sp_opp_fumble_recoveries":0,
"sp_own_fumble_recoveries":0,
"number":0
},
"efficiency":{
"goaltogo":{
"attempts":3,
"successes":1,
"pct":33.333,
"fg_successes":1,
"td_successes":1
},
"redzone":{
"attempts":6,
"successes":2,
"pct":33.333,
"fg_successes":3,
"td_successes":2
},
"thirddown":{
"attempts":19,
"successes":9,
"pct":47.368
},
"fourthdown":{
"attempts":1,
"successes":1,
"pct":100.0
}
},
"first_downs":{
"pass":15,
"penalty":0,
"rush":9,
"total":24
},
"interceptions":{
"return_yards":0,
"returned":0,
"number":0
},
"touchdowns":{
"pass":2,
"rush":0,
"total_return":0,
"total":2,
"fumble_return":0,
"int_return":0,
"kick_return":0,
"punt_return":0,
"other":0
}
},
"locale":"en",
"metadata":{
"league":"nfl",
"match":"sd:match:902a4753-72f9-4868-9d9b-193a5c41ea4d,sr:match:46791617",
"status":"closed",
"participant":"sd:team:6680d28d-d4d2-49f6-aace-5292d3ec02c2,sr:competitor:4422",
"locale":"en",
"operation":"update",
"version":"v7"
}
}{
"payload":{
"player":{
"name":"Leo Chenal",
"jersey":"54",
"id":"c7929fb3-5437-42cc-a3c2-10b73ebb1fa0",
"position":"LB",
"sr_id":"sr:player:1695607"
},
"fumbles":{
"fumbles":0,
"lost_fumbles":0,
"own_rec":0,
"own_rec_yards":0,
"opp_rec":0,
"opp_rec_yards":0,
"out_of_bounds":0,
"forced_fumbles":1,
"own_rec_tds":0,
"opp_rec_tds":0,
"ez_rec_tds":0
},
"defense":{
"tackles":3,
"assists":3,
"combined":6,
"sacks":0.0,
"sack_yards":0.0,
"interceptions":0,
"passes_defended":0,
"forced_fumbles":1,
"fumble_recoveries":0,
"qb_hits":1,
"tloss":1.0,
"tloss_yards":8.0,
"safeties":0,
"sp_tackles":0,
"sp_assists":0,
"sp_forced_fumbles":0,
"sp_fumble_recoveries":0,
"sp_blocks":1,
"misc_tackles":0,
"misc_assists":0,
"misc_forced_fumbles":0,
"misc_fumble_recoveries":0,
"def_targets":3,
"def_comps":3,
"blitzes":5,
"hurries":0,
"knockdowns":1,
"missed_tackles":0,
"batted_passes":0,
"ast_sacks":0.0,
"def_yards_against":4,
"field_goal_blocks":0,
"punt_blocks":0,
"extra_point_blocks":1,
"def_touchdowns_against":0
}
},
"locale":"en",
"metadata":{
"league":"nfl",
"match":"sd:match:902a4753-72f9-4868-9d9b-193a5c41ea4d,sr:match:46791617",
"status":"closed",
"participant":"sd:player:c7929fb3-5437-42cc-a3c2-10b73ebb1fa0,sr:player:1695607",
"locale":"en",
"operation":"update",
"version":"v7"
}
}Play Detail - Force Fumble Assisted Tackle
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 05/24/2024 | Game Boxscore Play-by-Play Push Events Push Pulse | Added a new player This update returns a more improved stat calculation when a player is given an assisted tackle instead of a full tackle on a forced fumble. |
<play id="57b09a80-c937-11ee-9cb4-01c7dabbaba5" sequence="1707695074699.0" clock="12:23" home_points="0" away_points="0" wall_clock="2024-02-11T23:43:50+00:00" men_in_box="8" fake_punt="false" fake_field_goal="false" screen_pass="false" blitz="false" play_direction="Right" left_tightends="0" right_tightends="2" hash_mark="Middle" qb_at_snap="Under Center" huddle="Huddle" running_lane="4" play_action="false" run_pass_option="false" created_at="2024-02-11T23:44:34+00:00" updated_at="2024-05-24T16:01:52+00:00" type="rush">
<start_situation clock="12:23" down="1" yfd="10">
<possession id="f0e724b0-4cbf-495a-be47-013907608da9" name="49ers" market="San Francisco" alias="SF" sr_id="sr:competitor:4389"/>
<location id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422" yardline="29"/>
</start_situation>
<end_situation clock="12:15" down="1" yfd="10">
<possession id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422"/>
<location id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422" yardline="27"/>
</end_situation>
<description>C.McCaffrey rushed right guard to KC 27 for 2 yards. C.McCaffrey FUMBLES, forced by L.Chenal. Fumble RECOVERED by KC-G.Karlaftis at KC 27. </description>
<statistics>
<rush attempt="1" yards="2" firstdown="0" inside_20="0" goaltogo="0" broken_tackles="0" kneel_down="0" scramble="0">
<team id="f0e724b0-4cbf-495a-be47-013907608da9" name="49ers" market="San Francisco" alias="SF" sr_id="sr:competitor:4389"/>
<player id="f96db0af-5e25-42d1-a07a-49b4e065b364" name="Christian McCaffrey" jersey="23" position="RB" sr_id="sr:player:1129507"/>
</rush>
<fumble fumble="1" forced="1" lost="1">
<team id="f0e724b0-4cbf-495a-be47-013907608da9" name="49ers" market="San Francisco" alias="SF" sr_id="sr:competitor:4389"/>
<player id="f96db0af-5e25-42d1-a07a-49b4e065b364" name="Christian McCaffrey" jersey="23" position="RB" sr_id="sr:player:1129507"/>
</fumble>
<fumble opp_rec="1" opp_rec_yards="2" play_category="defense">
<team id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422"/>
<player id="afb1f463-400e-4bdb-9028-717a563ba6f4" name="George Karlaftis" jersey="56" position="DE" sr_id="sr:player:1695453"/>
</fumble>
<fumble opp_rec_yards="-2" play_category="misc">
<team id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422"/>
<player id="afb1f463-400e-4bdb-9028-717a563ba6f4" name="George Karlaftis" jersey="56" position="DE" sr_id="sr:player:1695453"/>
</fumble>
<defense ast_tackle="1" category="defense" def_target="0" def_comp="0" blitz="0" hurry="0" knockdown="0" batted_pass="0">
<team id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422"/>
<player id="8b9bc551-66bb-4948-849f-c0471caaeb19" name="Mike Pennel" jersey="69" position="DT" sr_id="sr:player:854870"/>
</defense>
<defense ast_tackle="1" forced_fumble="1" category="defense" missed_tackles="0" def_target="0" def_comp="0" blitz="0" hurry="0" knockdown="0" batted_pass="0">
<team id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422"/>
<player id="c7929fb3-5437-42cc-a3c2-10b73ebb1fa0" name="Leo Chenal" jersey="54" position="LB" sr_id="sr:player:1695607"/>
</defense>
</statistics>
<details>
<detail category="rush" sequence="0" direction="right guard" yards="2" result="fumbled">
<description>C.McCaffrey rushed right guard to KC 27 for 2 yards.</description>
<start_location alias="KC" yardline="29"/>
<end_location alias="KC" yardline="27"/>
<players>
<player id="f96db0af-5e25-42d1-a07a-49b4e065b364" name="Christian McCaffrey" jersey="23" position="RB" sr_id="sr:player:1129507" role="rush"/>
</players>
</detail>
<detail category="forced_fumble" sequence="1">
<description>C.McCaffrey FUMBLES, forced by L.Chenal.</description>
<start_location alias="KC" yardline="27"/>
<end_location alias="KC" yardline="27"/>
<players>
<player id="f96db0af-5e25-42d1-a07a-49b4e065b364" name="Christian McCaffrey" jersey="23" position="RB" sr_id="sr:player:1129507" role="fumble"/>
<player id="c7929fb3-5437-42cc-a3c2-10b73ebb1fa0" name="Leo Chenal" jersey="54" position="LB" sr_id="sr:player:1695607" role="force_fum_ast"/>
<player id="8b9bc551-66bb-4948-849f-c0471caaeb19" name="Mike Pennel" jersey="69" position="DT" sr_id="sr:player:854870" role="ast_tackle"/>
</players>
</detail>
<detail category="opponent_fumble_recovery" sequence="2">
<description>Fumble RECOVERED by KC-G.Karlaftis at KC 27.</description>
<start_location alias="KC" yardline="27"/>
<end_location alias="KC" yardline="29"/>
<recovery type="other_team">
<team id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422"/>
</recovery>
<players>
<player id="afb1f463-400e-4bdb-9028-717a563ba6f4" name="George Karlaftis" jersey="56" position="DE" sr_id="sr:player:1695453" role="fum_rec"/>
</players>
</detail>
<detail category="stat_correction" sequence="6">
<description/>
<start_location alias="KC" yardline="29"/>
<end_location alias="KC" yardline="27"/>
<players>
</players>
</detail>
</details>
</play>{
"type": "play",
"id": "57b09a80-c937-11ee-9cb4-01c7dabbaba5",
"sequence": 1707695074699.0,
"clock": "12:23",
"home_points": 0,
"away_points": 0,
"play_type": "rush",
"wall_clock": "2024-02-11T23:43:50+00:00",
"description": "C.McCaffrey rushed right guard to KC 27 for 2 yards. C.McCaffrey FUMBLES, forced by L.Chenal. Fumble RECOVERED by KC-G.Karlaftis at KC 27. ",
"men_in_box": 8,
"fake_punt": false,
"fake_field_goal": false,
"screen_pass": false,
"blitz": false,
"play_direction": "Right",
"left_tightends": 0,
"right_tightends": 2,
"hash_mark": "Middle",
"qb_at_snap": "Under Center",
"huddle": "Huddle",
"running_lane": 4,
"play_action": false,
"run_pass_option": false,
"created_at": "2024-02-11T23:44:34+00:00",
"updated_at": "2024-05-24T16:01:52+00:00",
"start_situation": {
"clock": "12:23",
"down": 1,
"yfd": 10,
"possession": {
"id": "f0e724b0-4cbf-495a-be47-013907608da9",
"name": "49ers",
"market": "San Francisco",
"alias": "SF",
"sr_id": "sr:competitor:4389"
},
"location": {
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422",
"yardline": 29
}
},
"end_situation": {
"clock": "12:15",
"down": 1,
"yfd": 10,
"possession": {
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422"
},
"location": {
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422",
"yardline": 27
}
},
"statistics": [
{
"stat_type": "rush",
"attempt": 1,
"yards": 2,
"firstdown": 0,
"inside_20": 0,
"goaltogo": 0,
"broken_tackles": 0,
"kneel_down": 0,
"scramble": 0,
"player": {
"id": "f96db0af-5e25-42d1-a07a-49b4e065b364",
"name": "Christian McCaffrey",
"jersey": "23",
"position": "RB",
"sr_id": "sr:player:1129507"
},
"team": {
"id": "f0e724b0-4cbf-495a-be47-013907608da9",
"name": "49ers",
"market": "San Francisco",
"alias": "SF",
"sr_id": "sr:competitor:4389"
}
},
{
"stat_type": "fumble",
"fumble": 1,
"forced": 1,
"lost": 1,
"player": {
"id": "f96db0af-5e25-42d1-a07a-49b4e065b364",
"name": "Christian McCaffrey",
"jersey": "23",
"position": "RB",
"sr_id": "sr:player:1129507"
},
"team": {
"id": "f0e724b0-4cbf-495a-be47-013907608da9",
"name": "49ers",
"market": "San Francisco",
"alias": "SF",
"sr_id": "sr:competitor:4389"
}
},
{
"stat_type": "fumble",
"opp_rec": 1,
"opp_rec_yards": 2,
"play_category": "defense",
"player": {
"id": "afb1f463-400e-4bdb-9028-717a563ba6f4",
"name": "George Karlaftis",
"jersey": "56",
"position": "DE",
"sr_id": "sr:player:1695453"
},
"team": {
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422"
}
},
{
"stat_type": "fumble",
"opp_rec_yards": -2,
"play_category": "misc",
"player": {
"id": "afb1f463-400e-4bdb-9028-717a563ba6f4",
"name": "George Karlaftis",
"jersey": "56",
"position": "DE",
"sr_id": "sr:player:1695453"
},
"team": {
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422"
}
},
{
"stat_type": "defense",
"ast_tackle": 1,
"category": "defense",
"def_target": 0,
"def_comp": 0,
"blitz": 0,
"hurry": 0,
"knockdown": 0,
"batted_pass": 0,
"player": {
"id": "8b9bc551-66bb-4948-849f-c0471caaeb19",
"name": "Mike Pennel",
"jersey": "69",
"position": "DT",
"sr_id": "sr:player:854870"
},
"team": {
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422"
}
},
{
"stat_type": "defense",
"ast_tackle": 1,
"forced_fumble": 1,
"category": "defense",
"missed_tackles": 0,
"def_target": 0,
"def_comp": 0,
"blitz": 0,
"hurry": 0,
"knockdown": 0,
"batted_pass": 0,
"player": {
"id": "c7929fb3-5437-42cc-a3c2-10b73ebb1fa0",
"name": "Leo Chenal",
"jersey": "54",
"position": "LB",
"sr_id": "sr:player:1695607"
},
"team": {
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422"
}
}
],
"details": [
{
"category": "rush",
"description": "C.McCaffrey rushed right guard to KC 27 for 2 yards.",
"sequence": 0,
"direction": "right guard",
"yards": 2,
"result": "fumbled",
"start_location": {
"alias": "KC",
"yardline": 29
},
"end_location": {
"alias": "KC",
"yardline": 27
},
"players": [
{
"id": "f96db0af-5e25-42d1-a07a-49b4e065b364",
"name": "Christian McCaffrey",
"jersey": "23",
"position": "RB",
"sr_id": "sr:player:1129507",
"role": "rush"
}
]
},
{
"category": "forced_fumble",
"description": "C.McCaffrey FUMBLES, forced by L.Chenal.",
"sequence": 1,
"start_location": {
"alias": "KC",
"yardline": 27
},
"end_location": {
"alias": "KC",
"yardline": 27
},
"players": [
{
"id": "f96db0af-5e25-42d1-a07a-49b4e065b364",
"name": "Christian McCaffrey",
"jersey": "23",
"position": "RB",
"sr_id": "sr:player:1129507",
"role": "fumble"
},
{
"id": "c7929fb3-5437-42cc-a3c2-10b73ebb1fa0",
"name": "Leo Chenal",
"jersey": "54",
"position": "LB",
"sr_id": "sr:player:1695607",
"role": "force_fum_ast"
},
{
"id": "8b9bc551-66bb-4948-849f-c0471caaeb19",
"name": "Mike Pennel",
"jersey": "69",
"position": "DT",
"sr_id": "sr:player:854870",
"role": "ast_tackle"
}
]
},
{
"category": "opponent_fumble_recovery",
"description": "Fumble RECOVERED by KC-G.Karlaftis at KC 27.",
"sequence": 2,
"start_location": {
"alias": "KC",
"yardline": 27
},
"end_location": {
"alias": "KC",
"yardline": 29
},
"recovery": {
"type": "other_team",
"team": {
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422"
}
},
"players": [
{
"id": "afb1f463-400e-4bdb-9028-717a563ba6f4",
"name": "George Karlaftis",
"jersey": "56",
"position": "DE",
"sr_id": "sr:player:1695453",
"role": "fum_rec"
}
]
},
{
"category": "stat_correction",
"sequence": 6,
"start_location": {
"alias": "KC",
"yardline": 29
},
"end_location": {
"alias": "KC",
"yardline": 27
},
"players": []
}
]
}
]
},TBD vs. TBD Support
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 04/23/2024 | Current Season Schedule Current Week Schedule Season Schedule Weekly Schedule | We are introducing support for This means you will now be able to obtain scheduled future games with known dates, even when one or both participants are yet to be determined. See below for sample data. |
<season xmlns="http://feed.elasticstats.com/schema/football/schedule-v7.0.xsd" id="e67a7c79-1e58-4334-b26e-7317d2efa16f" year="2024" type="PST" name="PST">
<week id="73520b6b-5457-4cc5-bee6-d11ba1e9ebc1" sequence="1" title="1">
<game id="304ec2bb-46c5-4c37-8712-d67786d09784" status="scheduled" scheduled="2024-06-08T19:00:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="USFL Conference Final">
<home id="11e96200-f058-11ee-ab1b-3fb8baf42b4f" name="Team TBD" alias="TBD"/>
<away id="11e96200-f058-11ee-ab1b-3fb8baf42b4f" name="Team TBD" alias="TBD"/>
<broadcast network="ABC"/>
</game>
<game id="ca05dd04-7bb9-4ed8-b164-75f2f5119bda" status="scheduled" scheduled="2024-06-09T23:00:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="XFL Conference Final">
<home id="11e96200-f058-11ee-ab1b-3fb8baf42b4f" name="Team TBD" alias="TBD"/>
<away id="11e96200-f058-11ee-ab1b-3fb8baf42b4f" name="Team TBD" alias="TBD"/>
<broadcast network="FOX"/>
</game>
</week>
<week id="92c0953c-827b-4b11-ba25-57c6c868bdbf" sequence="2" title="2">
<game id="9edd5ade-180d-4a18-aad5-2aa53c7e4d62" status="scheduled" scheduled="2024-06-16T21:00:00+00:00" entry_mode="LDE" neutral_site="true" game_type="playoff" conference_game="false" title="UFL Championship">
<venue id="582c0e30-c046-11ee-8baf-e746db70974a" name="The Dome at America's Center" city="St. Louis" state="MO" country="USA" zip="63101" address="701 Convention Plaza" capacity="67277" surface="artificial" roof_type="dome" sr_id="sr:venue:8203">
</venue>
<home id="11e96200-f058-11ee-ab1b-3fb8baf42b4f" name="Team TBD" alias="TBD"/>
<away id="11e96200-f058-11ee-ab1b-3fb8baf42b4f" name="Team TBD" alias="TBD"/>
<broadcast network="FOX"/>
</game>
</week>
</season>{
"id": "e67a7c79-1e58-4334-b26e-7317d2efa16f",
"year": 2024,
"type": "PST",
"name": "PST",
"weeks": [
{
"id": "73520b6b-5457-4cc5-bee6-d11ba1e9ebc1",
"sequence": 1,
"title": "1",
"games": [
{
"id": "304ec2bb-46c5-4c37-8712-d67786d09784",
"status": "scheduled",
"scheduled": "2024-06-08T19:00:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "USFL Conference Final",
"home": {
"id": "11e96200-f058-11ee-ab1b-3fb8baf42b4f",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "11e96200-f058-11ee-ab1b-3fb8baf42b4f",
"name": "Team TBD",
"alias": "TBD"
},
"broadcast": {
"network": "ABC"
}
},
{
"id": "ca05dd04-7bb9-4ed8-b164-75f2f5119bda",
"status": "scheduled",
"scheduled": "2024-06-09T23:00:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "XFL Conference Final",
"home": {
"id": "11e96200-f058-11ee-ab1b-3fb8baf42b4f",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "11e96200-f058-11ee-ab1b-3fb8baf42b4f",
"name": "Team TBD",
"alias": "TBD"
},
"broadcast": {
"network": "FOX"
}
}
]
},
{
"id": "92c0953c-827b-4b11-ba25-57c6c868bdbf",
"sequence": 2,
"title": "2",
"games": [
{
"id": "9edd5ade-180d-4a18-aad5-2aa53c7e4d62",
"status": "scheduled",
"scheduled": "2024-06-16T21:00:00+00:00",
"entry_mode": "LDE",
"neutral_site": true,
"game_type": "playoff",
"conference_game": false,
"title": "UFL Championship",
"venue": {
"id": "582c0e30-c046-11ee-8baf-e746db70974a",
"name": "The Dome at America's Center",
"city": "St. Louis",
"state": "MO",
"country": "USA",
"zip": "63101",
"address": "701 Convention Plaza",
"capacity": 67277,
"surface": "artificial",
"roof_type": "dome",
"sr_id": "sr:venue:8203"
},
"home": {
"id": "11e96200-f058-11ee-ab1b-3fb8baf42b4f",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "11e96200-f058-11ee-ab1b-3fb8baf42b4f",
"name": "Team TBD",
"alias": "TBD"
},
"broadcast": {
"network": "FOX"
}
}
]
}
],
}Team Profile Enhancements
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 09/20/2023 | League Hierarchy Team Roster | Added several data points to team profiles. New data includes:
|
<team id="a2ee495d-37c7-45ac-ac3d-d3a492a219c1" name="Hawkeyes" market="Iowa" alias="IOW"
subdivision="BIG-TEN-WEST" founded="1847" mascot="Herky the Hawk" fight_song="Iowa Fight Song"
championships_won="1" conference_titles="12" playoff_appearances="0">{
"id": "a2ee495d-37c7-45ac-ac3d-d3a492a219c1",
"name": "Hawkeyes",
"market": "Iowa",
"alias": "IOW",
"subdivision": "BIG-TEN-WEST",
"founded": 1847,
"mascot": "Herky the Hawk",
"fight_song": "Iowa Fight Song",
"championships_won": 1,
"conference_titles": 12,
"playoff_appearances": 0,
"franchise": {
"id": "a2ee495d-37c7-45ac-ac3d-d3a492a219c1",
"name": "Hawkeyes"
},Subdivision Standings
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 08/24/2023 | Postgame Standings | Added subdivision rank to the Postgame Standings endpoint, where applicable. NCAA teams will now have a Conference (ex. FBS), Division (ex. Big Ten), and Subdivision (ex. Big Ten West) rank for season standings. |
<team id="a2ee495d-37c7-45ac-ac3d-d3a492a219c1" name="Hawkeyes" market="Iowa" alias="IOW" wins="8" losses="5" ties="0" win_pct="0.615" points_for="230" points_against="173" subdivision="BIG-TEN-WEST">
<rank conference="6" division="50" subdivision="3"/>"conferences": [
{
"id": "cddff7c9-65e1-4fe0-b052-87fd4213fbfe",
"name": "Big Ten",
"alias": "BIG-TEN",
"teams": [
{
"id": "fa0eb091-8e35-49c7-b00f-269794a99a61",
"name": "Hoosiers",
"market": "Indiana",
"alias": "IU",
"subdivision": "BIG-TEN-EAST",
"rank": {
"conference": 12,
"division": 109,
"subdivision": 6
},
},Enhanced Simulations
| Release Date |
| 08/08/2023 |
In-Game Player Status
| Release Date |
| 07/28/2023 |
'Suspended' Game Status
| Release Date |
| 07/28/2023 |
Jersey Number Support
| Release Date |
| 07/28/2023 |
Current Season and Current Week Endpoints
| Release Date |
| 07/18/2023 |
Comprehensive Drive Data
| Release Date |
| 05/16/2023 |
Conference Games Support
| Release Date |
| 05/16/2023 |
Fourth Down Stops & Three and Outs Forced
| Release Date |
| 09/09/2022 |
First Down Statistics
| Release Date |
| 08/30/2022 |
Interception for a TD Attribute
| Release Date |
| 08/30/2022 |
Drive Start/End Reasons
| Release Date |
| 08/15/2022 |
Playoff Game Attribute
| Release Date |
| 08/15/2022 |
Additional Player Positions
| Release Date |
| 08/15/2022 |
Game Duration Data Point
| Release Date |
| 08/15/2022 |
New Simulations
| Release Date |
| 08/03/2022 |
Initial Release
| Release Date |
| 07/07/2021 |
