Find all updates to the NFL v7 API and its documentation
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"
}
]
},Estimated Injury Return Date
🗓️ Release Date 06/25/2026
We’ve added a new estimated_return_date attribute to player injuries in the NFL Weekly Injuries endpoint.
injury.estimated_return_date — Estimated date the player is expected to return from injury.
<player id="fc472cd5-1a00-4bd9-ab41-6eb7e50f0d21" name="Robbie Ouzts" jersey="40" position="FB" sr_id="sr:player:2158570">
<injury status="Questionable" status_date="2026-02-06T00:00:00+00:00" estimated_return_date="2026-02-15T00:00:00+00:00">
<practice status="Limited Participation In Practice"/>
<primary>Neck</primary>⭐ Benefit
Use this new estimated return date to provide additional context around a player's injury status and expected availability. This can help power injury reports, player outlooks, fantasy applications, and other player availability experiences.
📋 Recommended Actions
- Update injury data models to support the new
estimated_return_dateattribute. - Surface estimated return information in injury reports and player availability experiences.
- This is an optional attribute. Ensure integrations gracefully handle cases where an estimated return date is not available.
☑️ Sample Requests:
curl --request GET \
--url https://api.sportradar.com/nfl/official/trial/v7/en/seasons/2025/PST/4/injuries.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
⚙️ Return Samples
<player id="fc472cd5-1a00-4bd9-ab41-6eb7e50f0d21" name="Robbie Ouzts" jersey="40" position="FB" sr_id="sr:player:2158570">
<injury status="Questionable" status_date="2026-02-06T00:00:00+00:00" estimated_return_date="2026-02-15T00:00:00+00:00">
<practice status="Limited Participation In Practice"/>
<primary>Neck</primary>
</injury>
</player>{
"id": "fc472cd5-1a00-4bd9-ab41-6eb7e50f0d21",
"name": "Robbie Ouzts",
"jersey": "40",
"position": "FB",
"sr_id": "sr:player:2158570",
"injuries": [
{
"status": "Questionable",
"status_date": "2026-02-06T00:00:00+00:00",
"estimated_return_date": "2026-02-15T00:00:00+00:00",
"practice": {
"status": "Limited Participation In Practice"
},
"primary": "Neck"
}
]
},Awards Endpoints
🗓️ Release Date 06/25/2026
We’ve added two new awards-based endpoints to our NFL API, enabling access to NFL award definitions and seasonal award recipients.
- Awards List: Provides a list of all NFL awards available in the API.
- Seasonal Awards: Provides all awards recipients for a given season and season type.
⭐ Benefit
With these endpoints, access award data for honors such as MVP, Offensive Player of the Year, Defensive Player of the Year, Walter Payton NFL Man of the Year, and All-Pro selections. Track annual recipients going forward to enrich your player and team profiles.
☑️ Sample Requests:
curl --request GET \
--url https://api.sportradar.com/nfl/official/trial/v7/en/league/awards.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'curl --request GET \
--url https://api.sportradar.com/nfl/official/trial/v7/en/seasons/2025/reg/awards.json \
--header 'accept: application/json' \
--header 'x-api-key: YOUR_API_KEY'🔢 Versions
🔁 Endpoints Affected
⚙️ Return Samples
<award name="1st Team All-Pro" type="player" effective_date="2026-01-10" awarded_time_frequency="annual" awarded_time_period="2025" id="6bb897bf-aa98-4ef4-9633-929c4357835b">
<recipient level="winner" name="Campbell, Jack" position="LB" id="1f7ce27f-61ef-47e5-bd48-eac4b1c0228f">
<team id="c5a59daa-53a7-4de0-851f-fb12be893e9e" name="Lions" market="Detroit" alias="DET" sr_id="sr:competitor:4419"/>
</recipient>
</award>{
"id": "cabd4058-5108-4fda-9928-3ffff988fa03",
"name": "Vince Lombardi Trophy",
"description": "Awarded to the winning team of the Super Bowl.",
"type": "team"
},
{
"id": "a238717a-61f4-40da-adbc-a31bb73c6fd1",
"name": "Walter Payton NFL Man of the Year",
"description": "This award honors a player's commitment to philanthropy and community impact, as well as his excellence on the field.",
"type": "player"
}Player ID Linking
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 07/22/2025 | Player Profile Team Profile Team Roster | You can now reference a player’s NCAA profile within the NFL API! When available, each player’s profile includes the corresponding ID from the NCAA Football API under |
{
"id": "11cad59d-90dd-449c-a839-dddaba4fe16c",
"name": "Patrick Mahomes",
"jersey": "15",
"last_name": "Mahomes",
"first_name": "Patrick",
"abbr_name": "P.Mahomes",
"birth_date": "1995-09-17",
"weight": 225.0,
"height": 74,
"position": "QB",
"birth_place": "Tyler, TX, USA",
"high_school": "Whitehouse (TX)",
"college": "Texas Tech",
"college_conf": "Big Twelve Conference",
"rookie_year": 2017,
"status": "ACT",
"sr_id": "sr:player:1129537",
"experience": 9,
"salary": 1255000,
"team": {
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422"
},
"draft": {
"year": 2017,
"round": 1,
"number": 10,
"team": {
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422"
}
},
"references": [
{
"source_id": "531fa6d3-9c8e-437b-8eca-8ca79bf12cc0",
"scope": "NCAAFB",
"id_type": "league_profile"
}
], <players>
<player id="0226b03b-f91d-4223-9813-9fcd2e9c3acc" name="Juwan Johnson" jersey="83" last_name="Johnson" first_name="Juwan" abbr_name="J.Johnson" birth_date="1996-09-13" weight="231.0" height="76" position="TE" birth_place="Glassboro, NJ, USA" high_school="Glassboro (NJ)" college="Oregon" college_conf="Pacific Twelve Conference" rookie_year="2020" status="ACT" sr_id="sr:player:2040489" experience="6" salary="1170000">
<reference source_id="ac27c288-92a8-4e5a-839d-ccacfc017120" scope="NCAAFB" id_type="league_profile"/>
</player>
<player id="0560d134-d316-4cda-9d48-34d32267af68" name="Jack Stoll" jersey="88" last_name="Stoll" first_name="Jack" abbr_name="J.Stoll" birth_date="1998-01-28" weight="247.0" height="76" position="TE" birth_place="Lone Tree, CO, USA" high_school="Regis Jesuit (CO)" college="Nebraska" college_conf="Big Ten Conference" rookie_year="2021" status="ACT" sr_id="sr:player:2197596" experience="5" salary="1170000">
<reference source_id="3df3b9b4-3ee8-4ad7-bf29-67ef11f81de4" scope="NCAAFB" id_type="league_profile"/>
</player>
<player id="07814d30-072a-11ef-ba75-176276cf11f0" name="Treyton Welch" jersey="82" last_name="Welch" first_name="Treyton" abbr_name="T.Welch" birth_date="2001-01-10" weight="240.0" height="76" position="TE" birth_place="Buffalo, MN, USA" high_school="Buffalo (MN)" college="Wyoming" college_conf="Mountain West Conference" rookie_year="2024" status="ACT" sr_id="sr:player:1855572" experience="1" salary="840000">
<reference source_id="15e48a8f-805b-4ff0-b843-2c90bd1761e1" scope="NCAAFB" id_type="league_profile"/>
</player>Player Salary
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 07/14/2025 | Player Profile Team Profile Team Roster | We've added player salary information into our NFL Player and Team Profiles. This value (player.salary) represents the player's current base annual salary.
|
{
"id": "386bdbf9-9eea-4869-bb9a-274b0bc66e80",
"name": "Eagles",
"market": "Philadelphia",
"alias": "PHI",
"sr_id": "sr:competitor:4428",
"founded": 1933,
"owner": "Jeffrey Lurie",
"general_manager": "Howie Roseman",
"president": "Don Smolenski",
"mascot": "Swoop",
"nicknames": "The Birds",
"fight_song": "Fly, Eagles Fly",
"championships_won": 2,
"championship_seasons": "2017, 2024",
"conference_titles": 5,
"division_titles": 13,
"playoff_appearances": 27,
"franchise": {
"id": "8eefc537-0493-4de8-8d64-2c091d3f5887",
"name": "Eagles",
"alias": "PHI"
},
--snip--
"players": [
{
"id": "01f15239-cd2c-4bd7-be5d-5ba7eed41331",
"name": "Moro Ojomo",
"jersey": "97",
"last_name": "Ojomo",
"first_name": "Moro",
"abbr_name": "M.Ojomo",
"birth_date": "2001-08-15",
"weight": 292.0,
"height": 75,
"position": "DT",
"birth_place": "Lagos,, NGA",
"high_school": "Katy (TX)",
"college": "Texas",
"college_conf": "Big Twelve Conference",
"rookie_year": 2023,
"status": "ACT",
"sr_id": "sr:player:1423099",
"experience": 3,
"salary": 1030000,
"draft": {
"year": 2023,
"round": 7,
"number": 249,
"team": {
"id": "386bdbf9-9eea-4869-bb9a-274b0bc66e80",
"name": "Eagles",
"market": "Philadelphia",
"alias": "PHI",
"sr_id": "sr:competitor:4428"
}
}
},
{
"id": "04d384d9-06da-4436-a637-14637705d7b3",
"name": "Kelee Ringo",
"jersey": "7",
"last_name": "Ringo",
"first_name": "Kelee",
"abbr_name": "K.Ringo",
"birth_date": "2002-06-27",
"weight": 207.0,
"height": 74,
"position": "CB",
"birth_place": "Tacoma, WA, USA",
"high_school": "Saguaro (AZ)",
"college": "Georgia",
"college_conf": "Southeastern Conference",
"rookie_year": 2023,
"status": "ACT",
"sr_id": "sr:player:2048815",
"experience": 3,
"salary": 1030000,
"draft": {
"year": 2023,
"round": 4,
"number": 105,
"team": {
"id": "386bdbf9-9eea-4869-bb9a-274b0bc66e80",
"name": "Eagles",
"market": "Philadelphia",
"alias": "PHI",
"sr_id": "sr:competitor:4428"
}
}
},
{
"id": "059e5bb7-1842-4558-9aaf-77c352a21216",
"name": "Jake Elliott",
"jersey": "4",
"last_name": "Elliott",
"first_name": "Jake",
"abbr_name": "J.Elliott",
"birth_date": "1995-01-21",
"weight": 167.0,
"height": 69,
"position": "K",
"birth_place": "Western Springs, IL, USA",
"high_school": "Lyons Township (IL)",
"college": "Memphis",
"college_conf": "American Athletic Conference",
"rookie_year": 2017,
"status": "ACT",
"sr_id": "sr:player:1130017",
"experience": 9,
"salary": 1255000,
"draft": {
"year": 2017,
"round": 5,
"number": 153,
"team": {
"id": "ad4ae08f-d808-42d5-a1e6-e9bc4e34d123",
"name": "Bengals",
"market": "Cincinnati",
"alias": "CIN",
"sr_id": "sr:competitor:4416"
}
}
}
],
"_comment": "Generation started @ 2025-07-14 17:50:50 UTC ended @ 2025-07-14 17:50:50 UTC"
}<player xmlns="http://feed.elasticstats.com/schema/football/profile-v7.0.xsd" id="11cad59d-90dd-449c-a839-dddaba4fe16c" name="Patrick Mahomes" jersey="15" last_name="Mahomes" first_name="Patrick" abbr_name="P.Mahomes" birth_date="1995-09-17" weight="225.0" height="74" position="QB" birth_place="Tyler, TX, USA" high_school="Whitehouse (TX)" college="Texas Tech" college_conf="Big Twelve Conference" rookie_year="2017" status="ACT" sr_id="sr:player:1129537" experience="9" salary="1255000">Season Teams Sort in Player Profile
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 06/27/2025 | Player Profile | We've adjusted the behavior of our Player Profile endpoint to always sort each In the below example, J.C. Jackson was traded from the Chargers to the Patriots in the 2023 regular season. The 2023 regular season entry ( Sample Request: |
{
"id": "b590479c-79df-4505-be19-b0838574b434",
"name": "J.C. Jackson",
"last_name": "Jackson",
"first_name": "J.C.",
"abbr_name": "J.Jackson",
"birth_date": "1995-11-17",
"weight": 198,
"height": 73,
"position": "CB",
"birth_place": "Immokalee, FL, USA",
"high_school": "Immokalee (FL)",
"college": "Maryland",
"college_conf": "Big Ten Conference",
"rookie_year": 2018,
"status": "UFA",
"sr_id": "sr:player:1474652",
"experience": 6,
"seasons": [
--snip--
{
"id": "a538d200-e916-4272-aa07-b486094a1668",
"year": 2023,
"type": "REG",
"name": "REG",
"teams": [
{
"id": "97354895-8c77-4fd4-a860-32e62ea7382a",
"name": "Patriots",
"market": "New England",
"alias": "NE",
"sr_id": "sr:competitor:4424",
"statistics": {
"games_played": 8,
"games_started": 6,
"penalties": {
"penalties": 4,
"yards": 34,
"first_downs": 4
},
"defense": {
"tackles": 22,
"assists": 3,
"combined": 25,
"sacks": 0,
"sack_yards": 0,
"interceptions": 0,
"passes_defended": 6,
"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,
"sp_own_fumble_recoveries": 0,
"sp_opp_fumble_recoveries": 0,
"def_targets": 51,
"def_comps": 29,
"blitzes": 2,
"hurries": 0,
"knockdowns": 0,
"missed_tackles": 2,
"batted_passes": 0
}
}
},
{
"id": "1f6dcffb-9823-43cd-9ff4-e7a8466749b5",
"name": "Chargers",
"market": "Los Angeles",
"alias": "LAC",
"sr_id": "sr:competitor:4429",
"statistics": {
"games_played": 2,
"games_started": 2,
"penalties": {
"penalties": 1,
"yards": 30,
"first_downs": 1
},
"int_returns": {
"returns": 1,
"yards": 9,
"avg_yards": 9,
"touchdowns": 0,
"longest": 9,
"longest_touchdown": 0
},
"defense": {
"tackles": 3,
"assists": 0,
"combined": 3,
"sacks": 0,
"sack_yards": 0,
"interceptions": 1,
"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,
"sp_own_fumble_recoveries": 0,
"sp_opp_fumble_recoveries": 0,
"def_targets": 13,
"def_comps": 6,
"blitzes": 0,
"hurries": 0,
"knockdowns": 0,
"missed_tackles": 1,
"batted_passes": 0
}
}
}
]
}
],
"_comment": "Generation started @ 2025-07-02 13:57:36 UTC ended @ 2025-07-02 13:57:36 UTC"
}<player xmlns="http://feed.elasticstats.com/schema/football/profile-v7.0.xsd" id="b590479c-79df-4505-be19-b0838574b434" name="J.C. Jackson" last_name="Jackson" first_name="J.C." abbr_name="J.Jackson" birth_date="1995-11-17" weight="198.0" height="73" position="CB" birth_place="Immokalee, FL, USA" high_school="Immokalee (FL)" college="Maryland" college_conf="Big Ten Conference" rookie_year="2018" status="UFA" sr_id="sr:player:1474652" experience="6">
---snip---
</season>
<season id="a538d200-e916-4272-aa07-b486094a1668" year="2023" type="REG" name="REG">
<team id="97354895-8c77-4fd4-a860-32e62ea7382a" name="Patriots" market="New England" alias="NE" sr_id="sr:competitor:4424">
<statistics games_played="8" games_started="6">
<penalties penalties="4" yards="34" first_downs="4"/>
<defense tackles="22" assists="3" combined="25" sacks="0.0" sack_yards="0.0" interceptions="0" passes_defended="6" forced_fumbles="0" fumble_recoveries="0" qb_hits="0" tloss="0.0" tloss_yards="0.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" sp_own_fumble_recoveries="0" sp_opp_fumble_recoveries="0" def_targets="51" def_comps="29" blitzes="2" hurries="0" knockdowns="0" missed_tackles="2" batted_passes="0"/>
</statistics>
</team>
<team id="1f6dcffb-9823-43cd-9ff4-e7a8466749b5" name="Chargers" market="Los Angeles" alias="LAC" sr_id="sr:competitor:4429">
<statistics games_played="2" games_started="2">
<penalties penalties="1" yards="30" first_downs="1"/>
<int_returns returns="1" yards="9" avg_yards="9.0" touchdowns="0" longest="9" longest_touchdown="0"/>
<defense tackles="3" assists="0" combined="3" sacks="0.0" sack_yards="0.0" interceptions="1" passes_defended="3" forced_fumbles="0" fumble_recoveries="0" qb_hits="0" tloss="0.0" tloss_yards="0.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" sp_own_fumble_recoveries="0" sp_opp_fumble_recoveries="0" def_targets="13" def_comps="6" blitzes="0" hurries="0" knockdowns="0" missed_tackles="1" batted_passes="0"/>
</statistics>
</team>
</season>
</player>Free Agents Endpoint
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 05/21/2025 | Free Agents | We've added a Free Agents endpoint to the current versions of our NFL API. This endpoint returns player information for all current free agents, as is already available in the NBA API. |
{
"league": {
"id": "3c6d318a-6164-4290-9bbc-bf9bb21cc4b8",
"name": "National Football League",
"alias": "NFL",
"free_agents": [
{
"id": "0009fa10-ca24-11ec-9f1c-b7114d38a85b",
"full_name": "Chris Owens",
"first_name": "Chris",
"last_name": "Owens",
"abbr_name": "C.Owens",
"height": 75,
"weight": 305.0,
"jersey_number": "0",
"college": "Alabama",
"high_school": "Lamar (TX)",
"birth_place": "Arlington, TX, USA",
"updated": "2022-08-25T12:36:31Z"
},
{
"id": "000bc6c6-c9a8-4631-92d6-1cea5aaa1644",
"full_name": "Austin Pasztor",
"first_name": "Austin",
"last_name": "Pasztor",
"abbr_name": "A.Pasztor",
"height": 79,
"weight": 305.0,
"jersey_number": "0",
"college": "Virginia",
"high_school": "Glendale (Ontario)",
"birth_place": "Langton, ON, CAN",
"updated": "2022-04-02T15:16:34Z"
},
{
"id": "0015e8b2-924c-4dad-923b-52a804a584b1",
"full_name": "Faquan Calhoun",
"first_name": "Faquan",
"last_name": "Calhoun",
"abbr_name": "F.Calhoun",
"height": 73,
"weight": 205.0,
"jersey_number": "0",
"college": "Cumberland College",
"birth_place": "Lebanon, KY, USA",
"updated": "2022-04-10T01:08:03Z"
},
{
"id": "001fc9cd-129f-4ad1-a3e4-212e5398add5",
"full_name": "Anthony Ezeakunne",
"first_name": "Anthony",
"last_name": "Ezeakunne",
"abbr_name": "A.Ezeakunne",
"height": 76,
"weight": 235.0,
"jersey_number": "0",
"college": "Chapman",
"high_school": "West Torrance (CA)",
"birth_place": "Wilmington, CA, USA",
"updated": "2022-04-06T18:14:05Z"
},
{
"id": "0028fe3d-7905-4d15-b138-61cf62428d10",
"full_name": "Brandon Johnson",
"first_name": "Brandon",
"last_name": "Johnson",
"abbr_name": "B.Johnson",
"height": 74,
"weight": 228.0,
"jersey_number": "0",
"college": "Penn State",
"high_school": "Middletown",
"birth_place": "Harrisburg, PA, USA",
"updated": "2021-11-16T16:41:05Z"
},
{
"id": "002a02ca-e569-410e-867d-e317bad07fd1",
"full_name": "Demar Dotson",
"first_name": "Demar",
"last_name": "Dotson",
"abbr_name": "D.Dotson",
"height": 81,
"weight": 315.0,
"jersey_number": "0",
"college": "Southern Miss",
"high_school": "Alexandria (LA)",
"birth_place": "Alexandria, LA, USA",
"updated": "2022-01-13T13:38:19Z"
},
{
"id": "002adaa8-5dc2-4b4b-95bc-53a38dce3849",
"full_name": "Chris Myarick",
"first_name": "Chris",
"last_name": "Myarick",
"abbr_name": "C.Myarick",
"height": 77,
"weight": 255.0,
"college": "Temple",
"high_school": "Cheltenham (PA)",
"birth_place": "Elkins Park, PA, USA",
"updated": "2024-10-14T20:52:03Z"
},
{
"id": "00390f60-0fed-11ef-a3a1-ef313cfc8e68",
"full_name": "Tanner Knue",
"first_name": "Tanner",
"last_name": "Knue",
"abbr_name": "T.Knue",
"height": 71,
"weight": 178.0,
"college": "Eastern Michigan",
"high_school": "Mason (OH)",
"birth_place": "Mason, OH, USA",
"updated": "2025-04-29T20:49:30Z"
},
{
"id": "003999e7-4bb2-48a9-a2ec-7eb3b85a7d82",
"full_name": "Darius Williams",
"first_name": "Darius",
"last_name": "Williams",
"abbr_name": "D.Williams",
"height": 72,
"weight": 193.0,
"jersey_number": "0",
"college": "CSU-Pueblo",
"high_school": "Williams Field (AZ)",
"birth_place": "Gilbert, AZ, USA",
"updated": "2022-09-05T15:14:38Z"
},
{
"id": "003f8716-bc1a-4328-9a98-80ed932eb4e5",
"full_name": "Terron Ward",
"first_name": "Terron",
"last_name": "Ward",
"abbr_name": "T.Ward",
"height": 67,
"weight": 201.0,
"jersey_number": "0",
"college": "Oregon State",
"high_school": "De La Salle (CA)",
"birth_place": "San Francisco, CA, USA",
"updated": "2022-03-09T19:48:22Z"
},
{
"id": "0043c962-e726-4ed2-8aa3-b0eb5cdc5567",
"full_name": "Bryan Cox",
"first_name": "Bryan",
"last_name": "Cox",
"abbr_name": "B.Cox",
"height": 75,
"weight": 270.0,
"jersey_number": "0",
"college": "Florida",
"high_school": "St. Thomas Aquinas (FL)",
"birth_place": "Fort Lauderdale, FL, USA",
"updated": "2022-09-01T21:23:48Z"
},
{
"id": "0045a36c-f464-49e0-a25a-9210edc94bc1",
"full_name": "Chase Daniel",
"first_name": "Chase",
"last_name": "Daniel",
"abbr_name": "C.Daniel",
"height": 72,
"weight": 229.0,
"jersey_number": "0",
"college": "Missouri",
"high_school": "Carroll (TX)",
"birth_place": "Irving, TX, USA",
"updated": "2023-07-24T12:38:22Z"
},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. |
{
"season": {
"id": "26a6a4e0-dfc9-11ee-8f7c-27de425212d4",
"year": 2024,
"type": "PST",
"name": "PST"
},
"conferences": [
{
"id": "1bdefe12-6cb2-4d6a-b208-b04602ae79c3",
"name": "AFC",
"alias": "AFC",
"divisions": [
{
"id": "324decdd-aa1b-4074-8958-c009d8fac31a",
"name": "AFC West",
"alias": "AFC_WEST",
"teams": [
{
"id": "1f6dcffb-9823-43cd-9ff4-e7a8466749b5",
"name": "Chargers",
"market": "Los Angeles",
"alias": "LAC",
"sr_id": "sr:competitor:4429",
"rank": {
"conference": 7,
"division": 3
},
"streak": {
"type": "loss",
"length": 1,
"desc": "Lost 1"
},
"strength_of_schedule": {
"sos": 0.5,
"wins": 1,
"total": 2
},
"strength_of_victory": {
"sov": 0,
"wins": 0,
"total": 0
},
"wins": 0,
"losses": 1,
"ties": 0,
"win_pct": 0,
"points_for": 12,
"points_against": 32,
"records": [
{
"category": "home",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0,
"points_for": 0,
"points_against": 0
},
{
"category": "afc",
"wins": 0,
"losses": 1,
"ties": 0,
"win_pct": 0,
"points_for": 12,
"points_against": 32
},
{
"category": "nfc",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0,
"points_for": 0,
"points_against": 0
},
{
"category": "division",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0,
"points_for": 0,
"points_against": 0
},
{
"category": "road",
"wins": 0,
"losses": 1,
"ties": 0,
"win_pct": 0,
"points_for": 12,
"points_against": 32
},
{
"category": "conference",
"wins": 0,
"losses": 1,
"ties": 0,
"win_pct": 0,
"points_for": 12,
"points_against": 32
}
]
},
{
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422",
"rank": {
"conference": 1,
"division": 1
},
"streak": {
"type": "loss",
"length": 1,
"desc": "Lost 1"
},
"strength_of_schedule": {
"sos": 0.778,
"wins": 7,
"total": 9
},
"strength_of_victory": {
"sov": 0.6,
"wins": 3,
"total": 5
},
"wins": 2,
"losses": 1,
"ties": 0,
"win_pct": 0.667,
"points_for": 77,
"points_against": 83,
"records": [
{
"category": "division",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0,
"points_for": 0,
"points_against": 0
},
{
"category": "conference",
"wins": 2,
"losses": 0,
"ties": 0,
"win_pct": 1,
"points_for": 55,
"points_against": 43
},
{
"category": "afc",
"wins": 2,
"losses": 0,
"ties": 0,
"win_pct": 1,
"points_for": 55,
"points_against": 43
},
{
"category": "home",
"wins": 2,
"losses": 0,
"ties": 0,
"win_pct": 1,
"points_for": 55,
"points_against": 43
},
{
"category": "road",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0,
"points_for": 0,
"points_against": 0
},
{
"category": "nfc",
"wins": 0,
"losses": 1,
"ties": 0,
"win_pct": 0,
"points_for": 22,
"points_against": 40
},
{
"category": "neutral",
"wins": 0,
"losses": 1,
"ties": 0,
"win_pct": 0,
"points_for": 22,
"points_against": 40
}
]
},
{
"id": "ce92bd47-93d5-4fe9-ada4-0fc681e6caa0",
"name": "Broncos",
"market": "Denver",
"alias": "DEN",
"sr_id": "sr:competitor:4418",
"rank": {
"conference": 5,
"division": 2
},
"streak": {
"type": "loss",
"length": 1,
"desc": "Lost 1"
},
"strength_of_schedule": {
"sos": 0.667,
"wins": 2,
"total": 3
},
"strength_of_victory": {
"sov": 0,
"wins": 0,
"total": 0
},
"wins": 0,
"losses": 1,
"ties": 0,
"win_pct": 0,
"points_for": 7,
"points_against": 31,
"records": [
{
"category": "afc",
"wins": 0,
"losses": 1,
"ties": 0,
"win_pct": 0,
"points_for": 7,
"points_against": 31
},
{
"category": "home",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0,
"points_for": 0,
"points_against": 0
},
{
"category": "nfc",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0,
"points_for": 0,
"points_against": 0
},
{
"category": "division",
"wins": 0,
"losses": 0,
"ties": 0,
"win_pct": 0,
"points_for": 0,
"points_against": 0
},
{
"category": "conference",
"wins": 0,
"losses": 1,
"ties": 0,
"win_pct": 0,
"points_for": 7,
"points_against": 31
},
{
"category": "road",
"wins": 0,
"losses": 1,
"ties": 0,
"win_pct": 0,
"points_for": 7,
"points_against": 31
}
]
}
]
}
]
}
],
"_comment": "Generation started @ 2025-04-18 13:32:55 UTC ended @ 2025-04-18 13:32:55 UTC"
}<season
xmlns="http://feed.elasticstats.com/schema/football/nfl/postgame-standings-v7.0.xsd" id="26a6a4e0-dfc9-11ee-8f7c-27de425212d4" year="2024" type="PST" name="PST">
<conference id="1bdefe12-6cb2-4d6a-b208-b04602ae79c3" name="AFC" alias="AFC">
<division id="324decdd-aa1b-4074-8958-c009d8fac31a" name="AFC West" alias="AFC_WEST">
<team id="1f6dcffb-9823-43cd-9ff4-e7a8466749b5" name="Chargers" market="Los Angeles" alias="LAC" sr_id="sr:competitor:4429" wins="0" losses="1" ties="0" win_pct="0.0" points_for="12" points_against="32">
<rank conference="7" division="3"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.5" wins="1" total="2"/>
<strength-of-victory sov="0.0" wins="0" total="0"/>
<records>
<record category="home" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="afc" wins="0" losses="1" ties="0" win_pct="0.0" points_for="12" points_against="32"/>
<record category="nfc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="division" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="road" wins="0" losses="1" ties="0" win_pct="0.0" points_for="12" points_against="32"/>
<record category="conference" wins="0" losses="1" ties="0" win_pct="0.0" points_for="12" points_against="32"/>
</records>
</team>
<team id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC" sr_id="sr:competitor:4422" wins="2" losses="1" ties="0" win_pct="0.667" points_for="77" points_against="83">
<rank conference="1" division="1"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.778" wins="7" total="9"/>
<strength-of-victory sov="0.6" wins="3" total="5"/>
<records>
<record category="division" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="conference" wins="2" losses="0" ties="0" win_pct="1.0" points_for="55" points_against="43"/>
<record category="afc" wins="2" losses="0" ties="0" win_pct="1.0" points_for="55" points_against="43"/>
<record category="home" wins="2" losses="0" ties="0" win_pct="1.0" points_for="55" points_against="43"/>
<record category="road" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="nfc" wins="0" losses="1" ties="0" win_pct="0.0" points_for="22" points_against="40"/>
<record category="neutral" wins="0" losses="1" ties="0" win_pct="0.0" points_for="22" points_against="40"/>
</records>
</team>
<team id="ce92bd47-93d5-4fe9-ada4-0fc681e6caa0" name="Broncos" market="Denver" alias="DEN" sr_id="sr:competitor:4418" wins="0" losses="1" ties="0" win_pct="0.0" points_for="7" points_against="31">
<rank conference="5" division="2"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.667" wins="2" total="3"/>
<strength-of-victory sov="0.0" wins="0" total="0"/>
<records>
<record category="afc" wins="0" losses="1" ties="0" win_pct="0.0" points_for="7" points_against="31"/>
<record category="home" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="nfc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="division" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="conference" wins="0" losses="1" ties="0" win_pct="0.0" points_for="7" points_against="31"/>
<record category="road" wins="0" losses="1" ties="0" win_pct="0.0" points_for="7" points_against="31"/>
</records>
</team>
</division>
<division id="b95cd27d-d631-4fe1-bc05-0ae47fc0b14b" name="AFC East" alias="AFC_EAST">
<team id="768c92aa-75ff-4a43-bcc0-f2798c2e1724" name="Bills" market="Buffalo" alias="BUF" sr_id="sr:competitor:4376" wins="2" losses="1" ties="0" win_pct="0.667" points_for="87" points_against="64">
<rank conference="2" division="1"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.5" wins="3" total="6"/>
<strength-of-victory sov="0.333" wins="1" total="3"/>
<records>
<record category="nfc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="home" wins="2" losses="0" ties="0" win_pct="1.0" points_for="58" points_against="32"/>
<record category="conference" wins="2" losses="1" ties="0" win_pct="0.667" points_for="87" points_against="64"/>
<record category="road" wins="0" losses="1" ties="0" win_pct="0.0" points_for="29" points_against="32"/>
<record category="afc" wins="2" losses="1" ties="0" win_pct="0.667" points_for="87" points_against="64"/>
<record category="division" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
</records>
</team>
</division>
<division id="e447e7c0-5997-4bb7-bea3-aaae48aedcb8" name="AFC South" alias="AFC_SOUTH">
<team id="82d2d380-3834-4938-835f-aec541e5ece7" name="Texans" market="Houston" alias="HOU" sr_id="sr:competitor:4324" wins="1" losses="1" ties="0" win_pct="0.5" points_for="46" points_against="35">
<rank conference="4" division="1"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.5" wins="2" total="4"/>
<strength-of-victory sov="0.0" wins="0" total="1"/>
<records>
<record category="conference" wins="1" losses="1" ties="0" win_pct="0.5" points_for="46" points_against="35"/>
<record category="division" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="road" wins="0" losses="1" ties="0" win_pct="0.0" points_for="14" points_against="23"/>
<record category="nfc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="home" wins="1" losses="0" ties="0" win_pct="1.0" points_for="32" points_against="12"/>
<record category="afc" wins="1" losses="1" ties="0" win_pct="0.5" points_for="46" points_against="35"/>
</records>
</team>
</division>
<division id="eb60da78-4eb5-4184-971e-2c5cd4ab4988" name="AFC North" alias="AFC_NORTH">
<team id="cb2f9f1f-ac67-424e-9e72-1475cb0ed398" name="Steelers" market="Pittsburgh" alias="PIT" sr_id="sr:competitor:4345" wins="0" losses="1" ties="0" win_pct="0.0" points_for="14" points_against="28">
<rank conference="6" division="2"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.5" wins="1" total="2"/>
<strength-of-victory sov="0.0" wins="0" total="0"/>
<records>
<record category="road" wins="0" losses="1" ties="0" win_pct="0.0" points_for="14" points_against="28"/>
<record category="nfc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="afc" wins="0" losses="1" ties="0" win_pct="0.0" points_for="14" points_against="28"/>
<record category="conference" wins="0" losses="1" ties="0" win_pct="0.0" points_for="14" points_against="28"/>
<record category="home" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="division" wins="0" losses="1" ties="0" win_pct="0.0" points_for="14" points_against="28"/>
</records>
</team>
<team id="ebd87119-b331-4469-9ea6-d51fe3ce2f1c" name="Ravens" market="Baltimore" alias="BAL" sr_id="sr:competitor:4413" wins="1" losses="1" ties="0" win_pct="0.5" points_for="53" points_against="41">
<rank conference="3" division="1"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.5" wins="2" total="4"/>
<strength-of-victory sov="0.0" wins="0" total="1"/>
<records>
<record category="nfc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="division" wins="1" losses="0" ties="0" win_pct="1.0" points_for="28" points_against="14"/>
<record category="conference" wins="1" losses="1" ties="0" win_pct="0.5" points_for="53" points_against="41"/>
<record category="road" wins="0" losses="1" ties="0" win_pct="0.0" points_for="25" points_against="27"/>
<record category="afc" wins="1" losses="1" ties="0" win_pct="0.5" points_for="53" points_against="41"/>
<record category="home" wins="1" losses="0" ties="0" win_pct="1.0" points_for="28" points_against="14"/>
</records>
</team>
</division>
</conference>
<conference id="b1808e5f-d40b-47c0-8af8-5175c0fdcd26" name="NFC" alias="NFC">
<division id="6dab3ca1-b9cb-403f-91dd-b2a3708ab060" name="NFC East" alias="NFC_EAST">
<team id="22052ff7-c065-42ee-bc8f-c4691c50e624" name="Commanders" market="Washington" alias="WAS" sr_id="sr:competitor:4432" wins="2" losses="1" ties="0" win_pct="0.667" points_for="91" points_against="106">
<rank conference="5" division="2"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.667" wins="4" total="6"/>
<strength-of-victory sov="0.0" wins="0" total="2"/>
<records>
<record category="division" wins="0" losses="1" ties="0" win_pct="0.0" points_for="23" points_against="55"/>
<record category="nfc" wins="2" losses="1" ties="0" win_pct="0.667" points_for="91" points_against="106"/>
<record category="afc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="home" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="road" wins="2" losses="1" ties="0" win_pct="0.667" points_for="91" points_against="106"/>
<record category="conference" wins="2" losses="1" ties="0" win_pct="0.667" points_for="91" points_against="106"/>
</records>
</team>
<team id="386bdbf9-9eea-4869-bb9a-274b0bc66e80" name="Eagles" market="Philadelphia" alias="PHI" sr_id="sr:competitor:4428" wins="4" losses="0" ties="0" win_pct="1.0" points_for="145" points_against="77">
<rank conference="1" division="1"/>
<streak type="win" length="4" desc="Won 4"/>
<strength-of-schedule sos="0.556" wins="5" total="9"/>
<strength-of-victory sov="0.556" wins="5" total="9"/>
<records>
<record category="road" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="conference" wins="3" losses="0" ties="0" win_pct="1.0" points_for="105" points_against="55"/>
<record category="afc" wins="1" losses="0" ties="0" win_pct="1.0" points_for="40" points_against="22"/>
<record category="neutral" wins="1" losses="0" ties="0" win_pct="1.0" points_for="40" points_against="22"/>
<record category="nfc" wins="3" losses="0" ties="0" win_pct="1.0" points_for="105" points_against="55"/>
<record category="home" wins="3" losses="0" ties="0" win_pct="1.0" points_for="105" points_against="55"/>
<record category="division" wins="1" losses="0" ties="0" win_pct="1.0" points_for="55" points_against="23"/>
</records>
</team>
</division>
<division id="390d000d-9949-42e6-bf5e-b166dc463675" name="NFC West" alias="NFC_WEST">
<team id="2eff2a03-54d4-46ba-890e-2bc3925548f3" name="Rams" market="Los Angeles" alias="LA" sr_id="sr:competitor:4387" wins="1" losses="1" ties="0" win_pct="0.5" points_for="49" points_against="37">
<rank conference="2" division="1"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.8" wins="4" total="5"/>
<strength-of-victory sov="0.0" wins="0" total="1"/>
<records>
<record category="afc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="division" 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="9"/>
<record category="conference" wins="1" losses="1" ties="0" win_pct="0.5" points_for="49" points_against="37"/>
<record category="home" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="nfc" wins="1" losses="1" ties="0" win_pct="0.5" points_for="49" points_against="37"/>
<record category="road" wins="0" losses="1" ties="0" win_pct="0.0" points_for="22" points_against="28"/>
</records>
</team>
</division>
<division id="6dc1933f-ca90-46e6-aaf7-9b95cc44306a" name="NFC North" alias="NFC_NORTH">
<team id="33405046-04ee-4058-a950-d606f8c30852" name="Vikings" market="Minnesota" alias="MIN" sr_id="sr:competitor:4423" wins="0" losses="1" ties="0" win_pct="0.0" points_for="9" points_against="27">
<rank conference="7" division="3"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.5" wins="1" total="2"/>
<strength-of-victory sov="0.0" wins="0" total="0"/>
<records>
<record category="nfc" wins="0" losses="1" ties="0" win_pct="0.0" points_for="9" points_against="27"/>
<record category="road" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="afc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="home" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="division" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="neutral" wins="0" losses="1" ties="0" win_pct="0.0" points_for="9" points_against="27"/>
<record category="conference" wins="0" losses="1" ties="0" win_pct="0.0" points_for="9" points_against="27"/>
</records>
</team>
<team id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB" sr_id="sr:competitor:4420" wins="0" losses="1" ties="0" win_pct="0.0" points_for="10" points_against="22">
<rank conference="3" division="1"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="1.0" wins="4" total="4"/>
<strength-of-victory sov="0.0" wins="0" total="0"/>
<records>
<record category="conference" wins="0" losses="1" ties="0" win_pct="0.0" points_for="10" points_against="22"/>
<record category="home" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="nfc" wins="0" losses="1" ties="0" win_pct="0.0" points_for="10" points_against="22"/>
<record category="road" wins="0" losses="1" ties="0" win_pct="0.0" points_for="10" points_against="22"/>
<record category="afc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="division" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
</records>
</team>
<team id="c5a59daa-53a7-4de0-851f-fb12be893e9e" name="Lions" market="Detroit" alias="DET" sr_id="sr:competitor:4419" wins="0" losses="1" ties="0" win_pct="0.0" points_for="31" points_against="45">
<rank conference="6" division="2"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.667" wins="2" total="3"/>
<strength-of-victory sov="0.0" wins="0" total="0"/>
<records>
<record category="afc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="road" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="nfc" wins="0" losses="1" ties="0" win_pct="0.0" points_for="31" points_against="45"/>
<record category="division" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="home" wins="0" losses="1" ties="0" win_pct="0.0" points_for="31" points_against="45"/>
<record category="conference" wins="0" losses="1" ties="0" win_pct="0.0" points_for="31" points_against="45"/>
</records>
</team>
</division>
<division id="2a46bf95-b036-4c6c-b69f-a80c4b6c46bf" name="NFC South" alias="NFC_SOUTH">
<team id="4254d319-1bc7-4f81-b4ab-b5e6f3402b69" name="Buccaneers" market="Tampa Bay" alias="TB" sr_id="sr:competitor:4388" wins="0" losses="1" ties="0" win_pct="0.0" points_for="20" points_against="23">
<rank conference="4" division="1"/>
<streak type="loss" length="1" desc="Lost 1"/>
<strength-of-schedule sos="0.667" wins="2" total="3"/>
<strength-of-victory sov="0.0" wins="0" total="0"/>
<records>
<record category="afc" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="nfc" wins="0" losses="1" ties="0" win_pct="0.0" points_for="20" points_against="23"/>
<record category="home" wins="0" losses="1" ties="0" win_pct="0.0" points_for="20" points_against="23"/>
<record category="road" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
<record category="conference" wins="0" losses="1" ties="0" win_pct="0.0" points_for="20" points_against="23"/>
<record category="division" wins="0" losses="0" ties="0" win_pct="0.0" points_for="0" points_against="0"/>
</records>
</team>
</division>
</conference>
</season>Draft - Round Start Times and Broadcast Info
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 04/17/2025 | Draft Summary Team Draft Summary | We've enhanced the round information in our NFL and NBA Draft endpoints. Broadcast by round Each round will now include a Start time Each round of the draft will now include a specific start time, in addition to the date.
|
{
"draft":
{
"id": "2dc77141-fc00-4003-b4f1-525db827ddf4",
"year": 2024,
"start_date": "2024-04-25",
"end_date": "2024-04-27",
"status": "closed",
"league":
{
"id": "3c6d318a-6164-4290-9bbc-bf9bb21cc4b8",
"name": "National Football League",
"alias": "NFL"
},
"broadcast":
{
"channel": "206",
"network": "ABC, ESPN, NFL Network"
},
"venue":
{
"name": "Campus Martius Park",
"address": "800 Woodward Ave",
"city": "Detroit",
"state": "MI",
"country": "USA"
}
},
"rounds":
[
{
"id": "5cf0e822-cc30-413c-9845-4da898c92392",
"number": 1,
"start_date": "2024-04-25",
"end_date": "2024-04-25",
"start_time": "2024-04-26 00:00:00 +0000",
"status": "closed",
"broadcast":
{
"channel": "327",
"network": "ESPN",
"internet": "https://www.espn.com"
},
"picks":
[
{
"id": "7efecd77-7159-4861-a3f2-72368103b95a",
"number": 1,
"overall": 1,
"traded": true,
"team":
{
"id": "7b112545-38e6-483c-a55c-96cf6ee49cb8",
"name": "Bears",
"market": "Chicago",
"alias": "CHI"
},
"prospect":
{
"id": "7e4a90d9-e19b-48f6-9978-5a3ada3b71c0",
"source_id": "8a3303bd-5625-4840-a539-3be7299339ae",
"league_id": "49d4b627-3f19-49a8-ae33-f539e0fb1f88",
"first_name": "Caleb",
"last_name": "Williams",
"name": "Caleb Williams",
"position": "QB",
"team_name": "USC",
"height": 73,
"weight": 215,
"experience": "JR",
"birth_place": "Washington, DC, USA",
"top_prospect": true
},
"trades":
[
{
"id": "a1723613-b48a-4d49-92e0-aea830892874"
}
]
},
{
"id": "8727614c-7451-4604-a081-8b8c09118508",
"number": 2,
"overall": 2,
"team":
{
"id": "22052ff7-c065-42ee-bc8f-c4691c50e624",
"name": "Commanders",
"market": "Washington",
"alias": "WAS"
},
"prospect":
{
"id": "f656455e-f11c-45ea-9251-d4a7d18a3ebc",
"source_id": "85e9db64-4d69-4885-9fbb-d8a1c5e4a8c2",
"league_id": "bab8c65a-9fff-410d-8e34-dc2f636d890e",
"first_name": "Jayden",
"last_name": "Daniels",
"name": "Jayden Daniels",
"position": "QB",
"team_name": "LSU",
"height": 76,
"weight": 210,
"experience": "SR",
"birth_place": "San Bernardino, CA, USA",
"top_prospect": true
}
},
{
"id": "52750d59-f4e4-45a6-b8c6-896f5987ff2f",
"number": 3,
"overall": 3,
"team":
{
"id": "97354895-8c77-4fd4-a860-32e62ea7382a",
"name": "Patriots",
"market": "New England",
"alias": "NE"
},
"prospect":
{
"id": "2f2c4ea7-e6c1-4bc0-9c48-2b55d0f985e5",
"source_id": "37899236-cd21-4817-96b8-014a0e824260",
"league_id": "d0c0630e-8925-4b81-a32b-e4146d95f01f",
"first_name": "Drake",
"last_name": "Maye",
"name": "Drake Maye",
"position": "QB",
"team_name": "North Carolina",
"height": 76,
"weight": 230,
"experience": "SO",
"birth_place": "Charlotte, NC, USA",
"top_prospect": true
}
},
{
"id": "80bb5c47-2b3d-430b-ad63-f2943ddab7dc",
"number": 4,
"overall": 4,
"team":
{
"id": "de760528-1dc0-416a-a978-b510d20692ff",
"name": "Cardinals",
"market": "Arizona",
"alias": "ARI"
},
"prospect":
{
"id": "56bace17-2c61-4efe-a208-6229bf8be044",
"source_id": "b89d93a7-7197-4bb5-91f7-5e73d954a5ab",
"league_id": "e8da21a8-796d-48a2-b644-57d08983ae01",
"first_name": "Marvin",
"last_name": "Harrison",
"name": "Marvin Harrison",
"position": "WR",
"team_name": "Ohio State",
"height": 75,
"weight": 209,
"experience": "JR",
"birth_place": "Philadelphia, PA, USA",
"top_prospect": true
}
},
{
"id": "5008d92b-97db-40ab-8f61-54d913581b62",
"number": 5,
"overall": 5,
"team":
{
"id": "1f6dcffb-9823-43cd-9ff4-e7a8466749b5",
"name": "Chargers",
"market": "Los Angeles",
"alias": "LAC"
},
"prospect":
{
"id": "3b3a9e57-a471-4282-a35e-285d9f9b5e03",
"source_id": "3a931031-9732-41fb-91d0-707b382710ec",
"league_id": "653dd688-fe1e-4e05-81d9-487823177f2b",
"first_name": "Joe",
"last_name": "Alt",
"name": "Joe Alt",
"position": "OL",
"team_name": "Notre Dame",
"height": 79,
"weight": 321,
"experience": "JR",
"birth_place": "North Oaks, MN, USA",
"top_prospect": true
}
},
{
"id": "4eef8521-ab32-4263-ba48-8faa6934b4e6",
"number": 6,
"overall": 6,
"team":
{
"id": "04aa1c9d-66da-489d-b16a-1dee3f2eec4d",
"name": "Giants",
"market": "New York",
"alias": "NYG"
},
"prospect":
{
"id": "dbcd37f8-3546-48e3-bb1b-5463c866f5e0",
"source_id": "964a5dc8-053a-41a3-9235-6d3722dccf7b",
"league_id": "55ef2022-50c2-465b-839e-c0f4c9e7c55c",
"first_name": "Malik",
"last_name": "Nabers",
"name": "Malik Nabers",
"position": "WR",
"team_name": "LSU",
"height": 72,
"weight": 200,
"experience": "JR",
"birth_place": "Youngsville, LA, USA",
"top_prospect": true
}
},
{
"id": "db58a8da-f070-4d96-9a4d-f12a7bc9a6f5",
"number": 7,
"overall": 7,
"team":
{
"id": "d26a1ca5-722d-4274-8f97-c92e49c96315",
"name": "Titans",
"market": "Tennessee",
"alias": "TEN"
},
"prospect":
{
"id": "9ccd1cef-9fec-466c-b053-a74166bc0828",
"source_id": "b49df21d-0091-4906-b09b-32724e5dac22",
"league_id": "f610a744-8d29-4bc3-99d6-595aae0ace8f",
"first_name": "JC",
"last_name": "Latham",
"name": "JC Latham",
"position": "OL",
"team_name": "Alabama",
"height": 78,
"weight": 342,
"experience": "JR",
"birth_place": "Oak Creek, WI, USA",
"top_prospect": true
}
},
{
"id": "e50752ab-c8fb-449b-865c-121d81cc7bec",
"number": 8,
"overall": 8,
"team":
{
"id": "e6aa13a4-0055-48a9-bc41-be28dc106929",
"name": "Falcons",
"market": "Atlanta",
"alias": "ATL"
},
"prospect":
{
"id": "5ef8dc8d-5ec0-413f-8bf2-fee0c7a49049",
"source_id": "6a0a6511-0031-434f-b4fd-af0a4304d619",
"league_id": "6499a161-b221-4591-b122-d99ece1be64b",
"first_name": "Michael",
"last_name": "Penix",
"name": "Michael Penix",
"position": "QB",
"team_name": "Washington",
"height": 75,
"weight": 213,
"experience": "SR",
"birth_place": "Cookeville, TN, USA",
"top_prospect": true
}
},
{
"id": "6e3f55df-9526-4b0f-be83-4d73a1c6d308",
"number": 9,
"overall": 9,
"team":
{
"id": "7b112545-38e6-483c-a55c-96cf6ee49cb8",
"name": "Bears",
"market": "Chicago",
"alias": "CHI"
},
"prospect":
{
"id": "d2a67700-4c6d-4c4e-a24d-adada7b622d2",
"source_id": "515ec194-a753-4a35-bfe7-cc1e0611226b",
"league_id": "f64694e0-0381-11ef-973d-5176a0ecbee4",
"first_name": "Rome",
"last_name": "Odunze",
"name": "Rome Odunze",
"position": "WR",
"team_name": "Washington",
"height": 75,
"weight": 212,
"experience": "JR",
"birth_place": "Las Vegas, NV, USA",
"top_prospect": true
}
},
{
"id": "0eb6a1f1-cc67-4459-87bc-a065df9fbdc8",
"number": 10,
"overall": 10,
"traded": true,
"team":
{
"id": "33405046-04ee-4058-a950-d606f8c30852",
"name": "Vikings",
"market": "Minnesota",
"alias": "MIN"
},
"prospect":
{
"id": "dcce9f80-f62d-44c4-b78e-b8e8d30e4ff1",
"source_id": "8d2fc425-6af1-4a61-b0db-53f5c94a6302",
"league_id": "587cc3c3-aeda-4ac7-8803-a7e4db195534",
"first_name": "J.J.",
"last_name": "McCarthy",
"name": "J.J. McCarthy",
"position": "QB",
"team_name": "Michigan",
"height": 75,
"weight": 202,
"experience": "JR",
"birth_place": "La Grange Park, IL, USA",
"top_prospect": true
},
"trades":
[
{
"id": "92864436-cd7b-40ab-9379-aa744299d21b"
}
]
},
--snip--<draft xmlns="http://feed.elasticstats.com/schema/draft/summary-v1.0.xsd" id="2dc77141-fc00-4003-b4f1-525db827ddf4" year="2024" start_date="2024-04-25" end_date="2024-04-27" status="closed">
<league id="3c6d318a-6164-4290-9bbc-bf9bb21cc4b8" name="National Football League" alias="NFL"/>
<broadcast channel="206" network="ABC, ESPN, NFL Network"/>
<venue name="Campus Martius Park" address="800 Woodward Ave" city="Detroit" state="MI" country="USA"/>
<rounds>
<round id="5cf0e822-cc30-413c-9845-4da898c92392" number="1" start_date="2024-04-25" end_date="2024-04-25" start_time="2024-04-26 00:00:00 +0000" status="closed">
<broadcast channel="327" network="ESPN" internet="https://www.espn.com"/>
<pick id="7efecd77-7159-4861-a3f2-72368103b95a" number="1" overall="1" traded="true">
<team id="7b112545-38e6-483c-a55c-96cf6ee49cb8" name="Bears" market="Chicago" alias="CHI"/>
<prospect id="7e4a90d9-e19b-48f6-9978-5a3ada3b71c0" source_id="8a3303bd-5625-4840-a539-3be7299339ae" league_id="49d4b627-3f19-49a8-ae33-f539e0fb1f88" first_name="Caleb" last_name="Williams" name="Caleb Williams" position="QB" team_name="USC" height="73" weight="215" experience="JR" birth_place="Washington, DC, USA" top_prospect="true"/>
<trades>
<trade id="a1723613-b48a-4d49-92e0-aea830892874"/>
</trades>
</pick>
<pick id="8727614c-7451-4604-a081-8b8c09118508" number="2" overall="2">
<team id="22052ff7-c065-42ee-bc8f-c4691c50e624" name="Commanders" market="Washington" alias="WAS"/>
<prospect id="f656455e-f11c-45ea-9251-d4a7d18a3ebc" source_id="85e9db64-4d69-4885-9fbb-d8a1c5e4a8c2" league_id="bab8c65a-9fff-410d-8e34-dc2f636d890e" first_name="Jayden" last_name="Daniels" name="Jayden Daniels" position="QB" team_name="LSU" height="76" weight="210" experience="SR" birth_place="San Bernardino, CA, USA" top_prospect="true"/>
</pick>
<pick id="52750d59-f4e4-45a6-b8c6-896f5987ff2f" number="3" overall="3">
<team id="97354895-8c77-4fd4-a860-32e62ea7382a" name="Patriots" market="New England" alias="NE"/>
<prospect id="2f2c4ea7-e6c1-4bc0-9c48-2b55d0f985e5" source_id="37899236-cd21-4817-96b8-014a0e824260" league_id="d0c0630e-8925-4b81-a32b-e4146d95f01f" first_name="Drake" last_name="Maye" name="Drake Maye" position="QB" team_name="North Carolina" height="76" weight="230" experience="SO" birth_place="Charlotte, NC, USA" top_prospect="true"/>
</pick>
<pick id="80bb5c47-2b3d-430b-ad63-f2943ddab7dc" number="4" overall="4">
<team id="de760528-1dc0-416a-a978-b510d20692ff" name="Cardinals" market="Arizona" alias="ARI"/>
<prospect id="56bace17-2c61-4efe-a208-6229bf8be044" source_id="b89d93a7-7197-4bb5-91f7-5e73d954a5ab" league_id="e8da21a8-796d-48a2-b644-57d08983ae01" first_name="Marvin" last_name="Harrison" name="Marvin Harrison" position="WR" team_name="Ohio State" height="75" weight="209" experience="JR" birth_place="Philadelphia, PA, USA" top_prospect="true"/>
</pick>
<pick id="5008d92b-97db-40ab-8f61-54d913581b62" number="5" overall="5">
<team id="1f6dcffb-9823-43cd-9ff4-e7a8466749b5" name="Chargers" market="Los Angeles" alias="LAC"/>
<prospect id="3b3a9e57-a471-4282-a35e-285d9f9b5e03" source_id="3a931031-9732-41fb-91d0-707b382710ec" league_id="653dd688-fe1e-4e05-81d9-487823177f2b" first_name="Joe" last_name="Alt" name="Joe Alt" position="OL" team_name="Notre Dame" height="79" weight="321" experience="JR" birth_place="North Oaks, MN, USA" top_prospect="true"/>
</pick>
<pick id="4eef8521-ab32-4263-ba48-8faa6934b4e6" number="6" overall="6">
<team id="04aa1c9d-66da-489d-b16a-1dee3f2eec4d" name="Giants" market="New York" alias="NYG"/>
<prospect id="dbcd37f8-3546-48e3-bb1b-5463c866f5e0" source_id="964a5dc8-053a-41a3-9235-6d3722dccf7b" league_id="55ef2022-50c2-465b-839e-c0f4c9e7c55c" first_name="Malik" last_name="Nabers" name="Malik Nabers" position="WR" team_name="LSU" height="72" weight="200" experience="JR" birth_place="Youngsville, LA, USA" top_prospect="true"/>
</pick>
<pick id="db58a8da-f070-4d96-9a4d-f12a7bc9a6f5" number="7" overall="7">
<team id="d26a1ca5-722d-4274-8f97-c92e49c96315" name="Titans" market="Tennessee" alias="TEN"/>
<prospect id="9ccd1cef-9fec-466c-b053-a74166bc0828" source_id="b49df21d-0091-4906-b09b-32724e5dac22" league_id="f610a744-8d29-4bc3-99d6-595aae0ace8f" first_name="JC" last_name="Latham" name="JC Latham" position="OL" team_name="Alabama" height="78" weight="342" experience="JR" birth_place="Oak Creek, WI, USA" top_prospect="true"/>
</pick>
<pick id="e50752ab-c8fb-449b-865c-121d81cc7bec" number="8" overall="8">
<team id="e6aa13a4-0055-48a9-bc41-be28dc106929" name="Falcons" market="Atlanta" alias="ATL"/>
<prospect id="5ef8dc8d-5ec0-413f-8bf2-fee0c7a49049" source_id="6a0a6511-0031-434f-b4fd-af0a4304d619" league_id="6499a161-b221-4591-b122-d99ece1be64b" first_name="Michael" last_name="Penix" name="Michael Penix" position="QB" team_name="Washington" height="75" weight="213" experience="SR" birth_place="Cookeville, TN, USA" top_prospect="true"/>
</pick>
<pick id="6e3f55df-9526-4b0f-be83-4d73a1c6d308" number="9" overall="9">
<team id="7b112545-38e6-483c-a55c-96cf6ee49cb8" name="Bears" market="Chicago" alias="CHI"/>
<prospect id="d2a67700-4c6d-4c4e-a24d-adada7b622d2" source_id="515ec194-a753-4a35-bfe7-cc1e0611226b" league_id="f64694e0-0381-11ef-973d-5176a0ecbee4" first_name="Rome" last_name="Odunze" name="Rome Odunze" position="WR" team_name="Washington" height="75" weight="212" experience="JR" birth_place="Las Vegas, NV, USA" top_prospect="true"/>
</pick>
<pick id="0eb6a1f1-cc67-4459-87bc-a065df9fbdc8" number="10" overall="10" traded="true">
<team id="33405046-04ee-4058-a950-d606f8c30852" name="Vikings" market="Minnesota" alias="MIN"/>
<prospect id="dcce9f80-f62d-44c4-b78e-b8e8d30e4ff1" source_id="8d2fc425-6af1-4a61-b0db-53f5c94a6302" league_id="587cc3c3-aeda-4ac7-8803-a7e4db195534" first_name="J.J." last_name="McCarthy" name="J.J. McCarthy" position="QB" team_name="Michigan" height="75" weight="202" experience="JR" birth_place="La Grange Park, IL, USA" top_prospect="true"/>
<trades>
<trade id="92864436-cd7b-40ab-9379-aa744299d21b"/>
</trades>
</pick>
<pick id="8a68f13f-3160-4a34-b5a4-2097cd405be6" number="11" overall="11" traded="true">
<team id="5fee86ae-74ab-4bdd-8416-42a9dd9964f3" name="Jets" market="New York" alias="NYJ"/>
<prospect id="993966bf-1878-43a7-81e5-adc2d685ea70" source_id="4ffa2329-a4ef-4030-b79f-48cdee71bc7b" league_id="e85b075a-5ca5-4ebe-b5d7-c14149b07ca5" first_name="Olumuyiwa" last_name="Fashanu" name="Olumuyiwa Fashanu" position="OL" team_name="Penn State" height="78" weight="312" experience="SR" birth_place="Waldorf, MD, USA" top_prospect="true"/>
<trades>
<trade id="92864436-cd7b-40ab-9379-aa744299d21b"/>
</trades>
</pick>
<pick id="2bb31bfe-7843-45e5-9d24-bf0a49335749" number="12" overall="12">
<team id="ce92bd47-93d5-4fe9-ada4-0fc681e6caa0" name="Broncos" market="Denver" alias="DEN"/>
<prospect id="31feed79-3512-4618-80e9-ecd45715a58f" source_id="1cf14b57-2bb2-442b-8bea-d77bb9d6cf47" league_id="f056c8ed-6ee5-492c-af11-3f7e3d97195c" first_name="Bo" last_name="Nix" name="Bo Nix" position="QB" team_name="Oregon" height="74" weight="217" experience="SR" birth_place="Arkadelphia, AR, USA" top_prospect="true"/>
</pick>
<pick id="67d80772-93b8-4a62-8ca3-ace2c5f54e89" number="13" overall="13">
<team id="7d4fcc64-9cb5-4d1b-8e75-8a906d1e1576" name="Raiders" market="Las Vegas" alias="LV"/>
<prospect id="1dd15fbe-94b4-40d5-a8c6-e04744bb980a" source_id="1170296d-f969-4e3a-923f-1bbed598415a" league_id="ad9fc7e3-0a6d-4e41-84c2-cf43b71aee13" first_name="Brock" last_name="Bowers" name="Brock Bowers" position="TE" team_name="Georgia" height="75" weight="243" experience="JR" birth_place="Napa, CA, USA" top_prospect="true"/>
</pick>
<pick id="8e625837-5961-4e3b-8176-c0684fcebf06" number="14" overall="14">
<team id="0d855753-ea21-4953-89f9-0e20aff9eb73" name="Saints" market="New Orleans" alias="NO"/>
<prospect id="9f704bd7-35e6-47e1-8507-28c6152d9885" source_id="967d9c1b-7297-41dc-a5ca-57ce4256f4de" league_id="ee26f53a-2ec5-48fe-9f00-697be6e4c31f" first_name="Taliese" last_name="Fuaga" name="Taliese Fuaga" position="OL" team_name="Oregon State" height="78" weight="324" experience="JR" birth_place="Tacoma, WA, USA" top_prospect="true"/>
</pick>
<pick id="e6a7aeb2-f653-45e9-819e-2dc60674d950" number="15" overall="15">
<team id="82cf9565-6eb9-4f01-bdbd-5aa0d472fcd9" name="Colts" market="Indianapolis" alias="IND"/>
<prospect id="d30c3426-b775-48fd-9801-50bb9cf15c3e" source_id="99b8a042-c37f-43ca-8f53-660b86ff2940" league_id="234d2423-bb97-4dfe-9a56-7c14b276720c" first_name="Laiatu" last_name="Latu" name="Laiatu Latu" position="DL" team_name="UCLA" height="77" weight="259" experience="SR" birth_place="Sacramento, CA, USA" top_prospect="true"/>
</pick>
<pick id="dfd7d388-20cf-4ff6-9374-ba67ebefc009" number="16" overall="16">
<team id="3d08af9e-c767-4f88-a7dc-b920c6d2b4a8" name="Seahawks" market="Seattle" alias="SEA"/>
<prospect id="3274f1b2-28d7-4623-83b0-8e06c97e40f1" source_id="3052ad9d-b65b-4a81-a816-f8d4ba57c9f7" league_id="d7cd56ba-a624-4149-83d0-a2c66df65804" first_name="Byron" last_name="Murphy" name="Byron Murphy" position="DL" team_name="Texas" height="73" weight="297" experience="JR" birth_place="DeSoto, TX, USA" top_prospect="true"/>
</pick>
<pick id="4a8abe4b-c58b-4bdd-81d7-02554aee4070" number="17" overall="17" traded="true">
<team id="33405046-04ee-4058-a950-d606f8c30852" name="Vikings" market="Minnesota" alias="MIN"/>
<prospect id="4a219fc0-68de-468a-8835-5b255526885e" source_id="122c6a03-68b1-4904-8808-b98ecf25bb69" league_id="1455441c-7e0e-484e-8e8a-5c7606b59709" first_name="Dallas" last_name="Turner" name="Dallas Turner" position="LB" team_name="Alabama" height="75" weight="247" experience="JR" birth_place="Fort Lauderdale, FL, USA" top_prospect="true"/>
<trades>
<trade id="27af66c1-53d8-45ff-956d-777cf5e10cc6"/>
</trades>
</pick>
<pick id="c9b37509-24b6-4baa-9ba5-af7f6e2b53e5" number="18" overall="18">
<team id="ad4ae08f-d808-42d5-a1e6-e9bc4e34d123" name="Bengals" market="Cincinnati" alias="CIN"/>
<prospect id="dcf856b1-7466-492e-83b8-a71d9998e6bf" source_id="66232b82-1b85-4dfe-8b46-2277c2f65be8" league_id="01dee31c-a9cb-4017-8c7b-bd69ee8d96b6" first_name="Amarius" last_name="Mims" name="Amarius Mims" position="OL" team_name="Georgia" height="80" weight="340" experience="JR" birth_place="Cochran, GA, USA" top_prospect="true"/>
</pick>
<pick id="2bd4dfdf-2a87-4c21-870b-1325daa8d81a" number="19" overall="19">
<team id="2eff2a03-54d4-46ba-890e-2bc3925548f3" name="Rams" market="Los Angeles" alias="LA"/>
<prospect id="0e45ab5b-1024-4cfe-8c0d-8a39b18ce44f" source_id="f77a26ad-e1d2-48bc-b677-d27cdc129426" league_id="6c0c2ab2-8333-4eb0-adb5-d8e0095d50ec" first_name="Jared" last_name="Verse" name="Jared Verse" position="DL" team_name="Florida State" height="76" weight="254" experience="JR" birth_place="Dayton, OH, USA" top_prospect="true"/>
</pick>
<pick id="3feafaf9-8717-4335-a0a9-0e93c73c3101" number="20" overall="20">
<team id="cb2f9f1f-ac67-424e-9e72-1475cb0ed398" name="Steelers" market="Pittsburgh" alias="PIT"/>
<prospect id="2eb8dde0-4f2c-4b5c-83cb-f79c73f1a965" source_id="3af57cbc-8e9c-4b3e-b817-9a00f4f72ac3" league_id="6646a5d5-9d75-4ba8-a4f9-05ba3b639095" first_name="Troy" last_name="Fautanu" name="Troy Fautanu" position="OL" team_name="Washington" height="76" weight="317" experience="JR" birth_place="Henderson, NV, USA" top_prospect="true"/>
</pick>
<pick id="a32f3884-10ec-47da-a598-77898f5c8571" number="21" overall="21">
<team id="4809ecb0-abd3-451d-9c4a-92a90b83ca06" name="Dolphins" market="Miami" alias="MIA"/>
<prospect id="2ecc48b1-f59f-474c-bb27-634c5712fdac" source_id="48dc4685-3f42-441c-a635-6c3a7dbd1206" league_id="9838dba3-f510-494b-b3ad-8639f792d182" first_name="Chop" last_name="Robinson" name="Chop Robinson" position="DE" team_name="Penn State" height="75" weight="254" experience="JR" birth_place="Gaithersburg, MD, USA" top_prospect="true"/>
</pick>
<pick id="21778e2a-1494-4985-b8ba-fd3de6016caa" number="22" overall="22">
<team id="386bdbf9-9eea-4869-bb9a-274b0bc66e80" name="Eagles" market="Philadelphia" alias="PHI"/>
<prospect id="c9bc2432-9283-4d4d-aef1-27e60a7c5293" source_id="d4662fa1-33c8-4125-94b8-9b112ef06e7f" league_id="93e6a6eb-a91e-4705-b5de-faa10f741913" first_name="Quinyon" last_name="Mitchell" name="Quinyon Mitchell" position="CB" team_name="Toledo" height="72" weight="195" experience="JR" birth_place="Williston, FL, USA" top_prospect="true"/>
</pick>
<pick id="3d2cd979-24a7-4895-b54c-b19a27dd3589" number="23" overall="23" traded="true">
<team id="f7ddd7fa-0bae-4f90-bc8e-669e4d6cf2de" name="Jaguars" market="Jacksonville" alias="JAC"/>
<prospect id="4947b38e-7d14-4936-9ba4-a617c0cf17fc" source_id="572f5c43-5525-4ca6-94e6-f7304048734a" league_id="271a233e-68b3-4261-a3aa-7667eaf9d3cc" first_name="Brian" last_name="Thomas" name="Brian Thomas" position="WR" team_name="LSU" height="75" weight="209" experience="JR" birth_place="Walker, LA, USA" top_prospect="true"/>
<trades>
<trade id="f9c61317-a3fd-4c3f-9b25-299f61267a27"/>
<trade id="27af66c1-53d8-45ff-956d-777cf5e10cc6"/>
<trade id="5f5bf3ab-de77-491b-a157-90eaad65be91"/>
</trades>
</pick>
<pick id="6232f14a-3b06-4e9e-91b9-427e8657157e" number="24" overall="24" traded="true">
<team id="c5a59daa-53a7-4de0-851f-fb12be893e9e" name="Lions" market="Detroit" alias="DET"/>
<prospect id="d54fd16e-7d5c-4bc5-b169-7e2595c7b3b7" source_id="6b57aebe-4679-4c31-9e19-da113e570845" league_id="bee08d8d-3b1a-4375-9ea3-e627da925807" first_name="Terrion" last_name="Arnold" name="Terrion Arnold" position="DB" team_name="Alabama" height="72" weight="189" experience="SO" birth_place="Tallahassee, FL, USA" top_prospect="true"/>
<trades>
<trade id="f4ec2d57-2420-4a50-844a-2faa2d67b120"/>
</trades>
</pick>
<pick id="7cc2e527-575e-440f-8bc6-f9088c071c5b" number="25" overall="25">
<team id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB"/>
<prospect id="b3ed5583-38b2-4cc8-91e5-e4dce165a9c3" source_id="a154a70f-dad2-46a0-ba8e-449c13be3284" league_id="43786378-9086-4abd-9757-e62617570dc8" first_name="Jordan" last_name="Morgan" name="Jordan Morgan" position="OL" team_name="Arizona" height="77" weight="311" experience="SR" birth_place="Marana, AZ, USA" top_prospect="true"/>
</pick>
<pick id="80823293-860d-40b6-9fde-092424bf28a5" number="26" overall="26">
<team id="4254d319-1bc7-4f81-b4ab-b5e6f3402b69" name="Buccaneers" market="Tampa Bay" alias="TB"/>
<prospect id="a29f348d-a22b-4c24-bf73-a7f0bfff91c5" source_id="769c6fec-2a4a-4fac-89b0-31bb4ade7163" league_id="8e0e175e-ab3d-42e1-8494-e6b56f051c79" first_name="Graham" last_name="Barton" name="Graham Barton" position="OL" team_name="Duke" height="77" weight="313" experience="SR" birth_place="Brentwood, TN, USA" top_prospect="true"/>
</pick>
<pick id="990b8113-7cd3-4360-ac1e-02bcaa4d0380" number="27" overall="27" traded="true">
<team id="de760528-1dc0-416a-a978-b510d20692ff" name="Cardinals" market="Arizona" alias="ARI"/>
<prospect id="c92902f3-d9bb-423f-8a09-ce98f3bc7fc2" source_id="a583f7c0-0928-41a3-ac56-1b4614a32141" league_id="7ceb8b7a-9797-4186-8dbe-4446b415c0fb" first_name="Darius" last_name="Robinson" name="Darius Robinson" position="DL" team_name="Missouri" height="77" weight="285" experience="GR" birth_place="Southfield, MI, USA" top_prospect="true"/>
<trades>
<trade id="48869c9b-a1a1-4639-b78a-eb46de410282"/>
</trades>
</pick>
<pick id="453546ee-0f4b-4699-ac36-632b4e5f0794" number="28" overall="28" traded="true">
<team id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC"/>
<prospect id="747df213-9885-42dc-a744-91321e737a30" source_id="2ad6ebe0-e615-4bc3-9ae3-4dfd9d903fce" league_id="52e049b1-0a7a-4e7f-9866-d2848e9cc478" first_name="Xavier" last_name="Worthy" name="Xavier Worthy" position="WR" team_name="Texas" height="71" weight="165" experience="JR" birth_place="Fresno, CA, USA" top_prospect="true"/>
<trades>
<trade id="d81bdb3c-9732-4038-b68a-94889e2923f0"/>
</trades>
</pick>
<pick id="f8672427-c697-4c4f-8cb8-10ef3521001d" number="29" overall="29" traded="true">
<team id="e627eec7-bbae-4fa4-8e73-8e1d6bc5c060" name="Cowboys" market="Dallas" alias="DAL"/>
<prospect id="5fcea3af-4810-4f5b-904e-e11c51145069" source_id="244c80f6-104e-425a-a633-5e34853aa21c" league_id="c5ef57f0-4ab8-491c-8c39-3af7d085dde8" first_name="Tyler" last_name="Guyton" name="Tyler Guyton" position="OL" team_name="Oklahoma" height="80" weight="322" experience="JR" birth_place="Manor, TX, USA" top_prospect="true"/>
<trades>
<trade id="f4ec2d57-2420-4a50-844a-2faa2d67b120"/>
</trades>
</pick>
<pick id="01d58045-677c-4ace-bca6-f9629741d060" number="30" overall="30">
<team id="ebd87119-b331-4469-9ea6-d51fe3ce2f1c" name="Ravens" market="Baltimore" alias="BAL"/>
<prospect id="fbb8b71e-4012-4984-960e-81e7fbeb8fd6" source_id="c6cb3e4b-b4bf-471e-a807-08b9fe9a9166" league_id="f6731363-93ed-4717-910c-317648e93139" first_name="Nate" last_name="Wiggins" name="Nate Wiggins" position="CB" team_name="Clemson" height="73" weight="173" experience="JR" birth_place="Atlanta, GA, USA" top_prospect="true"/>
</pick>
<pick id="0df7dae6-c47b-4c2b-8d65-3570803698a6" number="31" overall="31">
<team id="f0e724b0-4cbf-495a-be47-013907608da9" name="49ers" market="San Francisco" alias="SF"/>
<prospect id="4df71972-9b51-4cdb-814c-60d0caa5d074" source_id="29c3d58c-aced-4ecf-8808-f414dcd0917c" league_id="aca4c1b8-915f-4295-92e4-05b51feee6b1" first_name="Ricky" last_name="Pearsall" name="Ricky Pearsall" position="WR" team_name="Florida" height="73" weight="189" experience="SR" birth_place="Chandler, AZ, USA" top_prospect="true"/>
</pick>
<pick id="0c1014ce-3b9f-4dcf-a526-d8d835c5091e" number="32" overall="32" traded="true">
<team id="f14bf5cc-9a82-4a38-bc15-d39f75ed5314" name="Panthers" market="Carolina" alias="CAR"/>
<prospect id="ef658c2f-f078-4d44-acea-af21dacedb48" source_id="cd88bd06-9e70-4694-bd00-f92f5299b3b6" league_id="0bb0c37c-e76b-4529-92b0-b026be4f7d6c" first_name="Xavier" last_name="Legette" name="Xavier Legette" position="WR" team_name="South Carolina" height="73" weight="221" experience="SR" birth_place="Mullins, SC, USA" top_prospect="true"/>
<trades>
<trade id="d5f74ae4-6f9f-452d-83da-8f5e0d5c96fd"/>
<trade id="d81bdb3c-9732-4038-b68a-94889e2923f0"/>
</trades>
</pick>
</round>
<round id="63fec1cd-df3c-4076-a2ac-ccb881ab633f" number="2" start_date="2024-04-26" end_date="2024-04-26" start_time="2024-04-27 01:00:00 +0000" status="closed">
<broadcast/>
<pick id="35072d07-82c4-4661-9b3b-4a5f3c962772" number="1" overall="33" traded="true">
<team id="768c92aa-75ff-4a43-bcc0-f2798c2e1724" name="Bills" market="Buffalo" alias="BUF"/>
<prospect id="e1dd13eb-ba17-45b3-887c-e5a7bd006b11" source_id="82278f0f-caf8-4add-9c0f-9d71afce2d4f" league_id="6752915f-efe5-473d-a520-78cadfab6dda" first_name="Keon" last_name="Coleman" name="Keon Coleman" position="WR" team_name="Florida State" height="75" weight="213" experience="JR" birth_place="Opelousas, LA, USA" top_prospect="true"/>
<trades>
<trade id="d5f74ae4-6f9f-452d-83da-8f5e0d5c96fd"/>
</trades>
</pick>
<pick id="d9c48e70-9974-4023-b33a-710f35caa4f2" number="2" overall="34" traded="true">
<team id="1f6dcffb-9823-43cd-9ff4-e7a8466749b5" name="Chargers" market="Los Angeles" alias="LAC"/>
<prospect id="af781dad-2dc2-4eae-add5-344863fca647" source_id="204fc0ef-7f9f-4e4c-974e-2c153603a379" league_id="473bc7e5-c393-4f21-9e49-3ffc16711238" first_name="Ladd" last_name="McConkey" name="Ladd McConkey" position="WR" team_name="Georgia" height="72" weight="186" experience="JR" birth_place="Chatsworth, GA, USA" top_prospect="true"/>
<trades>
<trade id="5b5ca9a5-076f-4c5c-bd17-a5a565b591be"/>
</trades>
</pick>
<pick id="7bd98e5a-1067-4a5f-873d-b5134c4f039d" number="3" overall="35" traded="true">
<team id="e6aa13a4-0055-48a9-bc41-be28dc106929" name="Falcons" market="Atlanta" alias="ATL"/>
<prospect id="211eb509-7b12-474c-8447-92b6355d326e" source_id="3888ddaa-ff50-4220-9fc9-eaab1607e054" league_id="9f88e08f-2988-445e-bcc5-9dad063a9cda" first_name="Ruke" last_name="Orhorhoro" name="Ruke Orhorhoro" position="DT" team_name="Clemson" height="76" weight="294" experience="GR" birth_place="Lagos,, NGA" top_prospect="true"/>
<trades>
<trade id="5bd6647d-c599-4c04-b138-8720935bd8f4"/>
</trades>
</pick>
<pick id="a653b41d-8e80-48a7-ac23-36dfab9b1e84" number="4" overall="36">
<team id="22052ff7-c065-42ee-bc8f-c4691c50e624" name="Commanders" market="Washington" alias="WAS"/>
<prospect id="bfcbf3cf-9c03-4a44-8df0-6c3d8f78783f" source_id="63043c93-e316-4c8a-bc37-267b9791844f" league_id="9d373d6d-66f7-4ba9-9226-5d5e89a23a5e" first_name="Jer'Zhan" last_name="Newton" name="Jer'Zhan Newton" position="DL" team_name="Illinois" height="74" weight="304" experience="JR" birth_place="St. Petersburg, FL, USA" top_prospect="true"/>
</pick>
<pick id="e4946421-5ac7-4921-8b7f-badc43d37adc" number="5" overall="37" traded="true">
<team id="97354895-8c77-4fd4-a860-32e62ea7382a" name="Patriots" market="New England" alias="NE"/>
<prospect id="6bae1e0c-fe7c-4b9b-99dc-effd7434454a" source_id="d8b1c8e1-cb2c-4d5d-bcfb-83e83e31c7a9" league_id="446ecdc5-470d-4cb6-9a77-b54c108e3d3a" first_name="Ja'Lynn" last_name="Polk" name="Ja'Lynn Polk" position="WR" team_name="Washington" height="73" weight="203" experience="SO" birth_place="Lufkin, TX, USA" top_prospect="true"/>
<trades>
<trade id="5b5ca9a5-076f-4c5c-bd17-a5a565b591be"/>
</trades>
</pick>
<pick id="3ddd09aa-46fb-4060-b9c7-2331c4e1a683" number="6" overall="38">
<team id="d26a1ca5-722d-4274-8f97-c92e49c96315" name="Titans" market="Tennessee" alias="TEN"/>
<prospect id="7242166e-15db-4e8f-a7ea-51a017e76fc8" source_id="350bbf97-60a9-4ebf-8be5-923128c32c4b" league_id="136f06ed-a718-4551-b1b2-feda889b9b98" first_name="T'Vondre" last_name="Sweat" name="T'Vondre Sweat" position="DL" team_name="Texas" height="77" weight="366" experience="SR" birth_place="Huntsville, TX, USA" top_prospect="true"/>
</pick>
<pick id="44062f66-3167-4ddf-8f3e-c911d7249577" number="7" overall="39" traded="true">
<team id="2eff2a03-54d4-46ba-890e-2bc3925548f3" name="Rams" market="Los Angeles" alias="LA"/>
<prospect id="9e5839b1-1e95-409c-a96c-2b7e452fdbcb" source_id="b2b0e1a3-9f20-412d-8923-31beceaa927a" league_id="905fb2a2-6fc0-4af5-9f3c-860956cd164b" first_name="Braden" last_name="Fiske" name="Braden Fiske" position="DL" team_name="Florida State" height="76" weight="292" experience="SR" birth_place="Michigan City, IN, USA" top_prospect="true"/>
<trades>
<trade id="63b6c291-0638-417b-8fa0-4427ed3722ba"/>
<trade id="35e6b0c1-7d64-446a-a9ff-b8ce99e8d087"/>
</trades>
</pick>
<pick id="d1c9f615-96f6-43f2-8407-61979065ed47" number="8" overall="40" traded="true">
<team id="386bdbf9-9eea-4869-bb9a-274b0bc66e80" name="Eagles" market="Philadelphia" alias="PHI"/>
<prospect id="a61a0349-0592-4444-8429-faf71014b304" source_id="4ac2f750-3c56-4d5f-85b0-70c7fba84521" league_id="f213bbc9-1294-4bce-84b0-3752e63ff363" first_name="Cooper" last_name="DeJean" name="Cooper DeJean" position="DB" team_name="Iowa" height="73" weight="203" experience="JR" birth_place="Odebolt, IA, USA" top_prospect="true"/>
<trades>
<trade id="1ce76ddc-2617-49a5-8259-e9b886452935"/>
<trade id="e4b7483c-bd4a-442d-861d-b97f606feab4"/>
</trades>
</pick>
<pick id="8748b4d2-a10e-4b23-b2c9-6e1f497af488" number="9" overall="41" traded="true">
<team id="0d855753-ea21-4953-89f9-0e20aff9eb73" name="Saints" market="New Orleans" alias="NO"/>
<prospect id="639e3847-dd0a-41ed-bea6-d0a46d479897" source_id="37fad87a-3aef-4b1e-acd2-02b3548cb2f6" league_id="db912dac-e488-4c39-806b-a10e990d6bf4" first_name="Kool-Aid" last_name="McKinstry" name="Kool-Aid McKinstry" position="DB" team_name="Alabama" height="72" weight="199" experience="JR" birth_place="Birmingham, AL, USA" top_prospect="true"/>
<trades>
<trade id="19dea2e3-d483-4c1c-9ab3-483aee8632e1"/>
<trade id="d3995cce-eb60-429a-aec2-b076bac2af6d"/>
</trades>
</pick>
<pick id="7833efec-ef6c-4136-8726-93d6f3134c7c" number="10" overall="42" traded="true">
<team id="82d2d380-3834-4938-835f-aec541e5ece7" name="Texans" market="Houston" alias="HOU"/>
<prospect id="a5fb7b3e-7572-40f8-98bd-4bea4055ba31" source_id="9a354f0f-37db-42a4-bcd9-0941b8bf8993" league_id="b85f8a10-e1c2-4e5d-8aa5-08091feb1883" first_name="Kamari" last_name="Lassiter" name="Kamari Lassiter" position="DB" team_name="Georgia" height="72" weight="186" experience="JR" birth_place="Savannah, GA, USA" top_prospect="true"/>
<trades>
<trade id="5f5bf3ab-de77-491b-a157-90eaad65be91"/>
</trades>
</pick>
<pick id="14dff00a-8d64-4925-bdee-1d21900a0c98" number="11" overall="43" traded="true">
<team id="de760528-1dc0-416a-a978-b510d20692ff" name="Cardinals" market="Arizona" alias="ARI"/>
<prospect id="7a13ef14-8222-453a-90bf-325fe4bd61d8" source_id="71741072-eb6a-4d21-9645-31f67d764e3d" league_id="5f3ab1fc-cdc0-499d-8cc2-36433b9ac7f6" first_name="Max" last_name="Melton" name="Max Melton" position="DB" team_name="Rutgers" height="71" weight="187" experience="JR" birth_place="Mays Landing, NJ, USA" top_prospect="true"/>
<trades>
<trade id="5bd6647d-c599-4c04-b138-8720935bd8f4"/>
</trades>
</pick>
<pick id="da236674-0787-4698-8c00-0442125408bb" number="12" overall="44">
<team id="7d4fcc64-9cb5-4d1b-8e75-8a906d1e1576" name="Raiders" market="Las Vegas" alias="LV"/>
<prospect id="34baf199-e72e-473f-a4cf-6e7f40cda999" source_id="e4473656-83ec-4c0c-b46a-654e0dd0f993" league_id="756376bf-35dd-41b8-8be4-ab7f1a6681a8" first_name="Jackson" last_name="Powers-Johnson" name="Jackson Powers-Johnson" position="OL" team_name="Oregon" height="75" weight="328" experience="JR" birth_place="Draper, UT, USA" top_prospect="true"/>
</pick>
<pick id="e988f301-75e3-44a6-8c1c-3e8849c30dfc" number="13" overall="45" traded="true">
<team id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB"/>
<prospect id="033e837b-fd43-4d6f-b69b-6831417ca9d4" source_id="e61eede1-9b6c-42ff-928d-dc7ee11f7337" league_id="5424462c-3f8e-4e2a-832d-c29916d395cb" first_name="Edgerrin" last_name="Cooper" name="Edgerrin Cooper" position="LB" team_name="Texas A&M" height="74" weight="230" experience="JR" birth_place="Covington, LA, USA" top_prospect="true"/>
<trades>
<trade id="06024c1d-f2cf-4716-a670-23592b1861a3"/>
<trade id="d3995cce-eb60-429a-aec2-b076bac2af6d"/>
</trades>
</pick>
<pick id="2947170e-5d17-4d83-ae84-8200a70c997c" number="14" overall="46" traded="true">
<team id="f14bf5cc-9a82-4a38-bc15-d39f75ed5314" name="Panthers" market="Carolina" alias="CAR"/>
<prospect id="35f538ce-f111-4663-a2c3-0060775345a9" source_id="921c8db6-497d-4f0b-8bf8-9741e19345ec" league_id="5c842941-844b-4f6a-bce4-26b377146674" first_name="Jonathon" last_name="Brooks" name="Jonathon Brooks" position="RB" team_name="Texas" height="72" weight="216" experience="SO" birth_place="Hallettsville, TX, USA" top_prospect="true"/>
<trades>
<trade id="35903d2b-88bc-44da-98e1-6b115828efaf"/>
</trades>
</pick>
<pick id="b9a4e1f5-2593-48a9-a756-6c128c8403d1" number="15" overall="47" traded="true">
<team id="04aa1c9d-66da-489d-b16a-1dee3f2eec4d" name="Giants" market="New York" alias="NYG"/>
<prospect id="9ce488d5-3e14-4577-ab6f-05b2c270066a" source_id="0c05f1cf-bd29-4f0e-9300-bf1f59c6fa22" league_id="be2b6a6f-0e18-4394-a681-d414a3a306b8" first_name="Tyler" last_name="Nubin" name="Tyler Nubin" position="DB" team_name="Minnesota" height="74" weight="199" experience="SR" birth_place="St. Charles, IL, USA" top_prospect="true"/>
<trades>
<trade id="b0052518-02be-4f16-ae3d-2d005d91b34d"/>
</trades>
</pick>
<pick id="03731ff9-2ee2-47fc-923b-8c094301efba" number="16" overall="48">
<team id="f7ddd7fa-0bae-4f90-bc8e-669e4d6cf2de" name="Jaguars" market="Jacksonville" alias="JAC"/>
<prospect id="b00fd66f-d3b7-4781-845f-c8cc783d917f" source_id="ebaf9355-b8c4-408f-a65f-467587737dfa" league_id="32f98e05-a998-4e0c-8131-0e4b17cb7dd5" first_name="Maason" last_name="Smith" name="Maason Smith" position="DT" team_name="LSU" height="77" weight="306" experience="SO" birth_place="Houma, LA, USA" top_prospect="true"/>
</pick>
<pick id="55799c85-bd89-4c1a-a132-bfaa77e46812" number="17" overall="49">
<team id="ad4ae08f-d808-42d5-a1e6-e9bc4e34d123" name="Bengals" market="Cincinnati" alias="CIN"/>
<prospect id="604ef7b2-0180-42d9-a959-fbe20b2c01e5" source_id="f5946173-ebd2-4585-a5e5-b3369d3267a8" league_id="ffb4ddbb-f7be-47e8-b5de-19c32d68fc49" first_name="Kris" last_name="Jenkins" name="Kris Jenkins" position="DL" team_name="Michigan" height="75" weight="299" experience="SR" birth_place="Olney, MD, USA" top_prospect="true"/>
</pick>
<pick id="0219b994-fda4-4e49-9fe7-fb58eaf670cb" number="18" overall="50" traded="true">
<team id="22052ff7-c065-42ee-bc8f-c4691c50e624" name="Commanders" market="Washington" alias="WAS"/>
<prospect id="c97e3cfd-4def-48b5-8d4a-69cd2c7aac4c" source_id="cd7c9d2b-d374-4d30-baeb-5a49a1eabbed" league_id="f20bc1dc-7243-4c87-8274-a6e311c21ef9" first_name="Mike" last_name="Sainristil" name="Mike Sainristil" position="DB" team_name="Michigan" height="69" weight="182" experience="GR" birth_place="Everett, MA, USA" top_prospect="true"/>
<trades>
<trade id="0b040880-e45a-4f73-bf0b-c450b96dd00b"/>
<trade id="1ce76ddc-2617-49a5-8259-e9b886452935"/>
</trades>
</pick>
<pick id="06edd318-0ade-4f28-baed-d05d20edc9ba" number="19" overall="51">
<team id="cb2f9f1f-ac67-424e-9e72-1475cb0ed398" name="Steelers" market="Pittsburgh" alias="PIT"/>
<prospect id="36becfef-2f36-4d15-8fec-ce6d2f054251" source_id="abda94a5-62f5-48e9-997e-7881577af813" league_id="ab7a4eef-8591-448d-ad78-02b21a38504e" first_name="Zach" last_name="Frazier" name="Zach Frazier" position="OL" team_name="West Virginia" height="75" weight="313" experience="JR" birth_place="Fairmont, WV, USA" top_prospect="true"/>
</pick>
<pick id="cf8bedac-23a0-4ae3-bf88-2d12f38f0c0c" number="20" overall="52" traded="true">
<team id="82cf9565-6eb9-4f01-bdbd-5aa0d472fcd9" name="Colts" market="Indianapolis" alias="IND"/>
<prospect id="66c580b2-b279-49f9-a169-c460e3953a4b" source_id="46e96060-b073-4ea2-ad26-dff32979b3fb" league_id="190dbc97-2b7c-4023-b6b0-5729b854b60b" first_name="Adonai" last_name="Mitchell" name="Adonai Mitchell" position="WR" team_name="Texas" height="74" weight="205" experience="JR" birth_place="Missouri City, TX, USA" top_prospect="true"/>
<trades>
<trade id="63b6c291-0638-417b-8fa0-4427ed3722ba"/>
<trade id="35903d2b-88bc-44da-98e1-6b115828efaf"/>
</trades>
</pick>
<pick id="42f69dcf-7795-4719-ab3c-a64949e2afcc" number="21" overall="53" traded="true">
<team id="22052ff7-c065-42ee-bc8f-c4691c50e624" name="Commanders" market="Washington" alias="WAS"/>
<prospect id="b7bf9ed4-6d0d-485d-8c57-295a32a78b9d" source_id="835d204f-c470-40f8-a812-91aff288395c" league_id="b5c717af-9116-483c-9ab3-c9db0a988ab8" first_name="Ben" last_name="Sinnott" name="Ben Sinnott" position="TE" team_name="Kansas State" height="76" weight="250" experience="JR" birth_place="Waterloo, IA, USA" top_prospect="true"/>
<trades>
<trade id="1ce76ddc-2617-49a5-8259-e9b886452935"/>
</trades>
</pick>
<pick id="d32ea20b-ee9c-435a-823b-ea91475677c9" number="22" overall="54">
<team id="d5a2eb42-8065-4174-ab79-0a6fa820e35e" name="Browns" market="Cleveland" alias="CLE"/>
<prospect id="31b54c47-d01e-437d-8cff-2e04dc781f3c" source_id="1ee960cb-12c2-45f3-b517-0d08b7b59780" league_id="593fdfcf-8852-457e-bb9a-0411533eca32" first_name="Michael" last_name="Hall" name="Michael Hall" position="DT" team_name="Ohio State" height="75" weight="290" experience="JR" birth_place="Streetsboro, OH, USA" top_prospect="true"/>
</pick>
<pick id="97d7167d-bc1c-4d64-a460-3a8118127112" number="23" overall="55">
<team id="4809ecb0-abd3-451d-9c4a-92a90b83ca06" name="Dolphins" market="Miami" alias="MIA"/>
<prospect id="f366812e-adc4-4b07-ab24-8d6ca41ef71d" source_id="f40a1cf3-7b4c-45a9-bf3f-c68ce6de21f3" league_id="1c049a8d-42ba-480b-89dc-764477c6c3f2" first_name="Patrick" last_name="Paul" name="Patrick Paul" position="OL" team_name="Houston" height="80" weight="331" experience="JR" birth_place="Houston, TX, USA" top_prospect="true"/>
</pick>
<pick id="72e55497-ee9e-4df1-ad4f-0cbad4abea99" number="24" overall="56">
<team id="e627eec7-bbae-4fa4-8e73-8e1d6bc5c060" name="Cowboys" market="Dallas" alias="DAL"/>
<prospect id="7c9c9e20-f34d-45fa-b9eb-4ff3153375b1" source_id="1f545e30-6338-4d6c-982a-4ee4f57e2aca" league_id="7495a11d-6782-4dc1-9186-d2a2cca205d4" first_name="Marshawn" last_name="Kneeland" name="Marshawn Kneeland" position="DL" team_name="Western Michigan" height="75" weight="267" experience="JR" birth_place="Grand Rapids, MI, USA" top_prospect="true"/>
</pick>
<pick id="8a61fdea-9be8-4238-a016-86c773cfd975" number="25" overall="57">
<team id="4254d319-1bc7-4f81-b4ab-b5e6f3402b69" name="Buccaneers" market="Tampa Bay" alias="TB"/>
<prospect id="65d60bd9-581f-49f0-91cb-e24121b7cee1" source_id="bad8a29e-e48d-452d-bdac-4265ac39bd1e" league_id="5bd59487-cd06-4286-bc62-17cae182abf9" first_name="Chris" last_name="Braswell" name="Chris Braswell" position="LB" team_name="Alabama" height="75" weight="251" experience="SR" birth_place="Baltimore, MD, USA" top_prospect="true"/>
</pick>
<pick id="5d9e90b0-fef7-49a2-ad49-c60e5e27484d" number="26" overall="58">
<team id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB"/>
<prospect id="71483eab-3b51-4060-bf7c-ea3d9b747dae" source_id="4194ab2b-e329-4430-a922-d3b3f5289e8f" league_id="0bf54af0-cd8f-48ac-96b9-b742562a3e53" first_name="Javon" last_name="Bullard" name="Javon Bullard" position="DB" team_name="Georgia" height="71" weight="198" experience="JR" birth_place="Milledgeville, GA, USA" top_prospect="true"/>
</pick>
<pick id="83242f19-2d44-405f-9704-9988308b2d10" number="27" overall="59">
<team id="82d2d380-3834-4938-835f-aec541e5ece7" name="Texans" market="Houston" alias="HOU"/>
<prospect id="2242d59c-5377-4235-b9d2-dedd8afeb921" source_id="8a8c8f84-df86-4f76-94cc-82afaf531cd2" league_id="b38af46f-8c06-42e1-952e-d992da83eaca" first_name="Blake" last_name="Fisher" name="Blake Fisher" position="OL" height="78" weight="310" experience="JR" birth_place="Avon, IN, USA"/>
</pick>
<pick id="5dbff95c-39f8-473a-833d-a87e27556dc0" number="28" overall="60">
<team id="768c92aa-75ff-4a43-bcc0-f2798c2e1724" name="Bills" market="Buffalo" alias="BUF"/>
<prospect id="ba7a2dd4-3bf0-4492-b93e-ab4df0f71fa3" source_id="23a47450-5813-480c-a905-2f7c340d6421" league_id="9098b52a-bc60-4a3d-9eaa-4611966a576e" first_name="Cole" last_name="Bishop" name="Cole Bishop" position="SAF" team_name="Utah" height="74" weight="206" experience="JR" birth_place="Peachtree City, GA, USA" top_prospect="true"/>
</pick>
<pick id="9d551e4c-f485-4b77-9b2a-4c024d866add" number="29" overall="61">
<team id="c5a59daa-53a7-4de0-851f-fb12be893e9e" name="Lions" market="Detroit" alias="DET"/>
<prospect id="c26d4135-c075-4d60-bfa7-8804f941244f" source_id="e1b2260d-d7c3-4fa6-9990-e12c0ea635ea" league_id="c4da8885-d3f7-4593-b325-3e3dc408d1b6" first_name="Ennis" last_name="Rakestraw" name="Ennis Rakestraw" position="DB" team_name="Missouri" height="71" weight="183" experience="JR" birth_place="Dallas, TX, USA" top_prospect="true"/>
</pick>
<pick id="f3d139fd-323e-47ad-8080-48c3222716fc" number="30" overall="62">
<team id="ebd87119-b331-4469-9ea6-d51fe3ce2f1c" name="Ravens" market="Baltimore" alias="BAL"/>
<prospect id="567870a6-fc5b-4270-b47f-2ac26565aca2" source_id="48929b74-ab35-434f-b00c-92e499bb94f4" league_id="6ced226c-387c-47d4-a4ce-cf4d583e9e65" first_name="Roger" last_name="Rosengarten" name="Roger Rosengarten" position="OL" team_name="Washington" height="77" weight="308" experience="SO" birth_place="Highlands Ranch, CO, USA" top_prospect="true"/>
</pick>
<pick id="9be4b7dd-9e3b-44c8-bc2c-741ec686957e" number="31" overall="63" traded="true">
<team id="6680d28d-d4d2-49f6-aace-5292d3ec02c2" name="Chiefs" market="Kansas City" alias="KC"/>
<prospect id="1f45e49d-3224-457c-b84c-2996a97f1fb4" source_id="237b5d7b-988b-4f92-9737-44e1cf8778d0" league_id="6f3a80b4-9b7b-4429-aec1-bc508ef8e0e6" first_name="Kingsley" last_name="Suamataia" name="Kingsley Suamataia" position="OL" team_name="BYU" height="77" weight="326" experience="SO" birth_place="Orem, UT, USA" top_prospect="true"/>
<trades>
<trade id="128c121f-369f-407a-aa43-61bdcf85bbec"/>
</trades>
</pick>
<pick id="0b7fd34d-b03c-4590-bd55-b377859764bb" number="32" overall="64" traded="true">
<team id="f0e724b0-4cbf-495a-be47-013907608da9" name="49ers" market="San Francisco" alias="SF"/>
<prospect id="af7af183-2868-4013-bef0-9db02a861024" source_id="19a438b6-e898-47e3-bc2f-d9cff4f800eb" league_id="2b93704f-fab1-40b3-b13e-07d85303bb25" first_name="Renardo" last_name="Green" name="Renardo Green" position="DB" height="72" weight="186" experience="SR" birth_place="Orlando, FL, USA"/>
<trades>
<trade id="128c121f-369f-407a-aa43-61bdcf85bbec"/>
</trades>
</pick>
</round>
</rounds>
</draft>
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":[
]
}
]
}
]
}IDs for Officials
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 03/06/2025 | Game Roster | We've added globally unique identifiers (GUIDs) to all NFL officials. Locate officials - and their IDs - by game in the Game Roster endpoint. |
<game xmlns="http://feed.elasticstats.com/schema/football/roster-v7.0.xsd" id="d9651a88-95fa-4143-87b0-7699f514c3a6" status="created" scheduled="2025-02-26T21:11:00+00:00" entry_mode="LDE" clock="15:00" quarter="1" game_type="regular" conference_game="false">
--snip--
<home id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB" sr_id="sr:competitor:4420" used_timeouts="0" remaining_timeouts="3" used_challenges="0" remaining_challenges="2"/>
<away id="82d2d380-3834-4938-835f-aec541e5ece7" name="Texans" market="Houston" alias="HOU" sr_id="sr:competitor:4324" used_timeouts="0" remaining_timeouts="3" used_challenges="0" remaining_challenges="2"/>
</summary>
--snip--
<officials>
<official id="29737c90-caf7-11ec-830b-21d7b865f54e" full_name="Lo van Pham" number="99" assignment="referee"/>
<official id="5b5e4e10-501f-11ef-92c2-77c30ac6c61a" full_name="Jamie Alfieri-Tuss" number="0" assignment="umpire"/>
<official id="77980520-3898-11ee-b2de-574aa938ad02" full_name="Dale Keller" number="9" assignment="downjudge"/>
<official id="7bc82550-501e-11ef-9f94-dd57f135dded" full_name="Sebrina Brunson" number="0" assignment="linejudge"/>
<official id="7296fa00-501f-11ef-92c2-77c30ac6c61a" full_name="Scott Walker" number="11" assignment="fieldjudge"/>
<official id="a63df020-501f-11ef-92c2-77c30ac6c61a" full_name="Gavin Anderson" number="0" assignment="sidejudge"/>
<official id="aef3d0f0-501e-11ef-9f94-dd57f135dded" full_name="Julie Johnson" number="0" assignment="backjudge"/>
<official id="fa8af8a0-501d-11ef-9f94-dd57f135dded" full_name="Desiree Abrams" number="0" assignment="replayofficial"/>
</officials>
</game>{
"id": "d9651a88-95fa-4143-87b0-7699f514c3a6",
"status": "created",
"scheduled": "2025-02-26T21:11:00+00:00",
"entry_mode": "LDE",
"clock": "15:00",
"quarter": 1,
"game_type": "regular",
"conference_game": false,
--snip--
"officials":
[
{
"id": "29737c90-caf7-11ec-830b-21d7b865f54e",
"full_name": "Lo van Pham",
"number": "99",
"assignment": "referee"
},
{
"id": "5b5e4e10-501f-11ef-92c2-77c30ac6c61a",
"full_name": "Jamie Alfieri-Tuss",
"number": "0",
"assignment": "umpire"
},
{
"id": "77980520-3898-11ee-b2de-574aa938ad02",
"full_name": "Dale Keller",
"number": "9",
"assignment": "downjudge"
},
{
"id": "7bc82550-501e-11ef-9f94-dd57f135dded",
"full_name": "Sebrina Brunson",
"number": "0",
"assignment": "linejudge"
},
{
"id": "7296fa00-501f-11ef-92c2-77c30ac6c61a",
"full_name": "Scott Walker",
"number": "11",
"assignment": "fieldjudge"
},
{
"id": "a63df020-501f-11ef-92c2-77c30ac6c61a",
"full_name": "Gavin Anderson",
"number": "0",
"assignment": "sidejudge"
},
{
"id": "aef3d0f0-501e-11ef-9f94-dd57f135dded",
"full_name": "Julie Johnson",
"number": "0",
"assignment": "backjudge"
},
{
"id": "fa8af8a0-501d-11ef-9f94-dd57f135dded",
"full_name": "Desiree Abrams",
"number": "0",
"assignment": "replayofficial"
}
],
}Brazilian Portuguese Language Support
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 11/19/2024 | All | We've added support for Brazilian Portuguese translations. Use |
{
"type":"play",
"id":"333e9e80-a2ef-11ef-a7cf-cb2a0d8f3e1d",
"sequence":1731633426342,
"clock":"15:00",
"home_points":0,
"away_points":0,
"play_type":"pass",
"wall_clock":"2024-11-15T01:16:49+00:00",
"description":"1-Jalen Hurts passa short right completo para PHI 24. Captura feita por 83-Jahan Dotson em PHI 24. Ganho de 8 jardas. Pushed out of bounds by N.Igbinoghene at PHI 38.",
"players_rushed":4,
"men_in_box":7,
"fake_punt":false,
"fake_field_goal":false,
"screen_pass":true,
"blitz":false,
"play_direction":"Right Sideline",
"left_tightends":1,
"right_tightends":0,
"hash_mark":"Left Hash",
"pocket_location":"Middle",
"qb_at_snap":"Under Center",
"huddle":"Huddle",
"pass_route":"WR Screen",
"play_action":false,
"run_pass_option":true,
"created_at":"2024-11-15T01:17:06+00:00",
"updated_at":"2024-11-15T15:12:49+00:00",
"start_situation":{
"clock":"15:00",
"down":1,
"yfd":10,
"possession":{
"id":"386bdbf9-9eea-4869-bb9a-274b0bc66e80",
"name":"Philadelphia Eagles",
"market":"Philadelphia",
"alias":"PHI",
"sr_id":"sr:competitor:4428"
},
"location":{
"id":"386bdbf9-9eea-4869-bb9a-274b0bc66e80",
"name":"Philadelphia Eagles",
"market":"Philadelphia",
"alias":"PHI",
"sr_id":"sr:competitor:4428",
"yardline":30
}
},
"end_situation":{
"clock":"15:00",
"down":2,
"yfd":2,
"possession":{
"id":"386bdbf9-9eea-4869-bb9a-274b0bc66e80",
"name":"Philadelphia Eagles",
"market":"Philadelphia",
"alias":"PHI",
"sr_id":"sr:competitor:4428"
},
"location":{
"id":"386bdbf9-9eea-4869-bb9a-274b0bc66e80",
"name":"Philadelphia Eagles",
"market":"Philadelphia",
"alias":"PHI",
"sr_id":"sr:competitor:4428",
"yardline":38
}
},
"statistics":[
{
"stat_type":"pass",
"attempt":1,
"complete":1,
"yards":8,
"att_yards":-6,
"firstdown":0,
"inside_20":0,
"goaltogo":0,
"blitz":0,
"hurry":0,
"knockdown":0,
"pocket_time":1.311,
"on_target_throw":1,
"batted_pass":0,
"player":{
"id":"64bd0f02-6a5d-407e-98f1-fd02048ea21d",
"name":"Jalen Hurts",
"jersey":"01",
"position":"QB",
"sr_id":"sr:player:2040065"
},
"team":{
"id":"386bdbf9-9eea-4869-bb9a-274b0bc66e80",
"name":"Philadelphia Eagles",
"market":"Philadelphia",
"alias":"PHI",
"sr_id":"sr:competitor:4428"
}
},
{
"stat_type":"receive",
"firstdown":0,
"target":1,
"reception":1,
"yards":8,
"yards_after_catch":14,
"inside_20":0,
"goaltogo":0,
"dropped":0,
"catchable":0,
"yards_after_contact":4,
"player":{
"id":"d4a7917d-f327-431b-9b87-83af341c3e21",
"name":"Jahan Dotson",
"jersey":"83",
"position":"WR",
"sr_id":"sr:player:1436296"
},
"team":{
"id":"386bdbf9-9eea-4869-bb9a-274b0bc66e80",
"name":"Philadelphia Eagles",
"market":"Philadelphia",
"alias":"PHI",
"sr_id":"sr:competitor:4428"
}
},
{
"stat_type":"defense",
"tackle":1,
"category":"defense",
"missed_tackles":0,
"def_target":1,
"def_comp":1,
"blitz":0,
"hurry":0,
"knockdown":0,
"batted_pass":0,
"player":{
"id":"b4b346b6-6175-407c-a6cd-103368a1609f",
"name":"Noah Igbinoghene",
"jersey":"01",
"position":"CB",
"sr_id":"sr:player:2040555"
},
"team":{
"id":"22052ff7-c065-42ee-bc8f-c4691c50e624",
"name":"Washington Commanders",
"market":"Washington",
"alias":"WAS",
"sr_id":"sr:competitor:4432"
}
}
],
"details":[
{
"category":"pass_completion",
"description":"1-Jalen Hurts passa short right completo para PHI 24.",
"sequence":0,
"direction":"short right",
"yards":8,
"start_location":{
"alias":"PHI",
"yardline":30
},
"end_location":{
"alias":"PHI",
"yardline":24
},
"players":[
{
"id":"64bd0f02-6a5d-407e-98f1-fd02048ea21d",
"name":"Jalen Hurts",
"jersey":"01",
"position":"QB",
"sr_id":"sr:player:2040065",
"role":"pass"
}
]
},
{
"category":"pass_reception",
"description":"Captura feita por 83-Jahan Dotson em PHI 24. Ganho de 8 jardas.",
"sequence":1,
"yards":8,
"result":"pushed out of bounds",
"start_location":{
"alias":"PHI",
"yardline":24
},
"end_location":{
"alias":"PHI",
"yardline":38
},
"players":[
{
"id":"d4a7917d-f327-431b-9b87-83af341c3e21",
"name":"Jahan Dotson",
"jersey":"83",
"position":"WR",
"sr_id":"sr:player:1436296",
"role":"catch"
}
]
},
{
"category":"pushed_out_of_bounds",
"description":"Pushed out of bounds by N.Igbinoghene at PHI 38.",
"sequence":2,
"start_location":{
"alias":"PHI",
"yardline":38
},
"end_location":{
"alias":"PHI",
"yardline":38
},
"players":[
{
"id":"b4b346b6-6175-407c-a6cd-103368a1609f",
"name":"Noah Igbinoghene",
"jersey":"01",
"position":"CB",
"sr_id":"sr:player:2040555",
"role":"tackle"
}
]
}
]
},
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.
|
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 NFL playoffs, 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"
},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"
}
}
]
}
],
}'Reserve/Future' Player Status
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 04/19/2024 | Player Profile Team Profile Team Roster | Added FRES (Reserve/Future) as a valid player status. |
'Practice Squad' Player Status
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 03/13/2024 | Player Profile Team Profile Team Roster | Added PRA_IR (Practice Squad Injured Reserve) as a valid player status. |
Preseason Stats
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 02/26/2024 | Player Profile | Added preseason statistics to the Player Profile endpoint. |
Team Profile Enhancements
| Release Date | Feeds Affected | Benefit |
|---|---|---|
| 09/20/2023 | League Hierarchy Team Profile | Added several data points to team profiles. New data includes:
|
<team id="0d855753-ea21-4953-89f9-0e20aff9eb73" name="Saints" market="New Orleans" alias="NO"
sr_id="sr:competitor:4425" founded="1967" owner="Gayle Benson" general_manager="Mickey Loomis"
president="Dennis Lauscha" mascot="Gumbo, Sir Saint" nicknames="The Black and Gold"
fight_song="When the Saints Go Marching In" championships_won="1" championship_seasons="2009"
conference_titles="1" division_titles="9" playoff_appearances="14">{
"id": "0d855753-ea21-4953-89f9-0e20aff9eb73",
"name": "Saints",
"market": "New Orleans",
"alias": "NO",
"sr_id": "sr:competitor:4425",
"founded": 1967,
"owner": "Gayle Benson",
"general_manager": "Mickey Loomis",
"president": "Dennis Lauscha",
"mascot": "Gumbo, Sir Saint",
"nicknames": "The Black and Gold",
"fight_song": "When the Saints Go Marching In",
"championships_won": 1,
"championship_seasons": "2009",
"conference_titles": 1,
"division_titles": 9,
"playoff_appearances": 14,
"franchise": {
"id": "bdf043f4-8199-4f76-92ea-5604cc53ad12",
"name": "Saints",
"alias": "NO"
},Enhanced Simulations
| Release Date |
| 08/08/2023 |
In-Game Player Status
| Release Date |
| 07/28/2023 |
Player Experience
| Release Date |
| 07/28/2023 |
'Suspended' Game Status
| Release Date |
| 07/28/2023 |
Jersey Number Support
| Release Date |
| 07/28/2023 |
Push Pulse Feed
| Release Date |
| 07/26/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 Return Statistic
| Release Date |
| 08/30/2022 |
Game Duration Added
| Release Date |
| 08/15/2022 |
New Drive Start/End Reasons
| Release Date |
| 08/15/2022 |
'Defensive Lineman' Position Added
| Release Date |
| 08/15/2022 |
Daily Transactions Endpoint
| Release Date |
| 07/18/2022 |
Compensatory Draft Pick Support
| Release Date |
| 04/13/2022 |
Enhanced Standings Data
| Release Date |
| 12/14/2021 |
