Browse by category below. Select any group or question to jump straight to it. Use your browser's find (Ctrl/Cmd + F) to search the page.
Table of Contents
Getting Started
Coverage
How is each NFL game covered?
Coverage information for the NFL can be found here.
Do you cover the Pro Bowl?
No. We do not currently cover the Pro Bowl in the NFL API.
Integration
How can I get started with my integration?
Set up an account, learn the NFL API basics, study our game workflows, tackle in-depth integration scenarios, and more by visiting our NFL v7 Integration Guide.
Are simulations available for this API?
Yes! You can replay past games as though they were live using our on-demand Simulations service.
What format are date fields presented in?
Date values are presented in the ISO 8601 standard format.
Timestamp fields are in UTC. These could include scheduled start times or play-by-play event timestamps. Examples: scheduled="2024-02-11T23:30:00+00:00", created_at="2024-02-11T23:43:20+00:00"
Date-only fields reflect local league convention and are not UTC-adjusted. These could include season start dates and birth dates. Examples: start_date="2024-08-16", date_of_birth="1984-09-22"
How do I locate the TTL (Time to Live)/cache on an API endpoint?
The cache (in seconds) can be accessed in the returned header information on each RESTful API call, under cache-control.
ex. cache-control: max-age=1, public, s-maxage=1 or cache-control: public, must-revalidate, max-age=120
Data Workflow
How can I find timings for data entry updates?
Our NFL Data Entry Workflow section covers data availability updates. This includes updates for transactions, rankings, depth charts, stat validation, and more.
Learn more: the Update Frequencies guide details how often each feed refreshes.
How do you represent coin tosses in the Game Play-by-Play?
A coin toss entry (coin_toss) will appear in each game immediately following the 1st quarter, 3rd quarter, and overtime elements. The 3rd quarter coin_toss object represents an inverse of the teams' decisions at the beginning of the game.
Within the coin_toss object are entries for outcome, decision, and direction for the home and away teams. The coin toss winner (outcome="won") may choose to either defer (decision="defer"), kick (decision="kick"), or receive (decision="receive"). The team that decides to defer or kick in the period is the team electing which end of the field they wish to defend. Defending directions are north, south, east, and west (ex. direction="south").
Please note that the direction property may not always be available.
<coin_toss>
<home outcome="won" decision="defer" direction="south"/>
<away outcome="lost" decision="receive" direction="south"/>
</coin_toss><game xmlns="http://feed.elasticstats.com/schema/football/pbp-v7.0.xsd" id="3bb41c33-5d92-46c5-8954-dea91ef6dc0e" status="closed" scheduled="2023-12-03T21:25:00+00:00" attendance="72887" entry_mode="LDE" clock="00:00" quarter="4" sr_id="sr:match:41209527" game_type="regular" conference_game="false" duration="3:20">
<summary>
<season id="a538d200-e916-4272-aa07-b486094a1668" year="2023" type="REG" name="REG"/>
<week id="0796e6a9-84ca-4651-9813-bc8bb391ad95" sequence="13" title="13"/>
<venue id="790c1f04-73c6-4f6f-8b1e-78a62260be90" name="SoFi Stadium" city="Inglewood" state="CA" country="USA" zip="90301" address="1000 S Prairie Ave" capacity="70240" surface="artificial" roof_type="outdoor" sr_id="sr:venue:52183">
<location lat="33.953536" lng="-118.338734"/>
</venue>
<home id="2eff2a03-54d4-46ba-890e-2bc3925548f3" name="Rams" market="Los Angeles" alias="LA" sr_id="sr:competitor:4387" used_timeouts="0" remaining_timeouts="3" points="36" used_challenges="2" remaining_challenges="0">
<record wins="10" losses="7" ties="0"/>
</home>
<away id="d5a2eb42-8065-4174-ab79-0a6fa820e35e" name="Browns" market="Cleveland" alias="CLE" sr_id="sr:competitor:4417" used_timeouts="3" remaining_timeouts="0" points="19" used_challenges="1" remaining_challenges="1">
<record wins="11" losses="6" ties="0"/>
</away>
</summary>
<quarter id="1a8ded1c-0adc-486c-a034-5fa36c5d2a52" number="1" sequence="1">
<scoring>
<home id="2eff2a03-54d4-46ba-890e-2bc3925548f3" name="Rams" market="Los Angeles" alias="LA" sr_id="sr:competitor:4387" points="10"/>
<away id="d5a2eb42-8065-4174-ab79-0a6fa820e35e" name="Browns" market="Cleveland" alias="CLE" sr_id="sr:competitor:4417" points="7"/>
</scoring>
<coin_toss>
<home outcome="won" decision="defer" direction="south"/>
<away outcome="lost" decision="receive" direction="south"/>
</coin_toss>
<play-by-play>
<drive id="a5c50761-a5c7-4177-b185-53cf857b31c2" sequence="1"/>
---snip---
<event id="11030480-9230-11ee-a2a3-8db1c4f06774" sequence="1701644570138.0" clock="00:00" created_at="2023-12-03T23:02:50+00:00" updated_at="2023-12-03T23:02:50+00:00" wall_clock="2023-12-03T23:02:48+00:00" type="period_end">
<description>End Quarter 2</description>
</event>
</play-by-play>
</quarter>
<quarter id="a2d75823-2e73-4dd1-99ec-19fe5a8940ae" number="3" sequence="3">
<scoring>
<home id="2eff2a03-54d4-46ba-890e-2bc3925548f3" name="Rams" market="Los Angeles" alias="LA" sr_id="sr:competitor:4387" points="7"/>
<away id="d5a2eb42-8065-4174-ab79-0a6fa820e35e" name="Browns" market="Cleveland" alias="CLE" sr_id="sr:competitor:4417" points="3"/>
</scoring>
<coin_toss>
<home outcome="won" decision="receive" direction="north"/>
<away outcome="lost" decision="kick" direction="north"/>
</coin_toss>{
"id": "3bb41c33-5d92-46c5-8954-dea91ef6dc0e",
"status": "closed",
"scheduled": "2023-12-03T21:25:00+00:00",
"attendance": 72887,
"entry_mode": "LDE",
"clock": "00:00",
"quarter": 4,
"sr_id": "sr:match:41209527",
"game_type": "regular",
"conference_game": false,
"duration": "3:20",
"summary":
{
"season":
{
"id": "a538d200-e916-4272-aa07-b486094a1668",
"year": 2023,
"type": "REG",
"name": "REG"
},
"week":
{
"id": "0796e6a9-84ca-4651-9813-bc8bb391ad95",
"sequence": 13,
"title": "13"
},
"home":
{
"id": "2eff2a03-54d4-46ba-890e-2bc3925548f3",
"name": "Rams",
"market": "Los Angeles",
"alias": "LA",
"sr_id": "sr:competitor:4387",
"used_timeouts": 0,
"remaining_timeouts": 3,
"points": 36,
"used_challenges": 2,
"remaining_challenges": 0,
"record":
{
"wins": 10,
"losses": 7,
"ties": 0
}
},
"away":
{
"id": "d5a2eb42-8065-4174-ab79-0a6fa820e35e",
"name": "Browns",
"market": "Cleveland",
"alias": "CLE",
"sr_id": "sr:competitor:4417",
"used_timeouts": 3,
"remaining_timeouts": 0,
"points": 19,
"used_challenges": 1,
"remaining_challenges": 1,
"record":
{
"wins": 11,
"losses": 6,
"ties": 0
}
}
},
"periods":
[
{
"period_type": "quarter",
"id": "1a8ded1c-0adc-486c-a034-5fa36c5d2a52",
"number": 1,
"sequence": 1,
"scoring":
{
"home":
{
"id": "2eff2a03-54d4-46ba-890e-2bc3925548f3",
"name": "Rams",
"market": "Los Angeles",
"alias": "LA",
"sr_id": "sr:competitor:4387",
"points": 10
},
"away":
{
"id": "d5a2eb42-8065-4174-ab79-0a6fa820e35e",
"name": "Browns",
"market": "Cleveland",
"alias": "CLE",
"sr_id": "sr:competitor:4417",
"points": 7
}
},
"coin_toss":
{
"home":
{
"outcome": "won",
"decision": "defer",
"direction": "south"
},
"away":
{
"outcome": "lost",
"decision": "receive",
"direction": "south"
}
},
---snip---
{
"period_type": "quarter",
"id": "a2d75823-2e73-4dd1-99ec-19fe5a8940ae",
"number": 3,
"sequence": 3,
"scoring":
{
"home":
{
"id": "2eff2a03-54d4-46ba-890e-2bc3925548f3",
"name": "Rams",
"market": "Los Angeles",
"alias": "LA",
"sr_id": "sr:competitor:4387",
"points": 7
},
"away":
{
"id": "d5a2eb42-8065-4174-ab79-0a6fa820e35e",
"name": "Browns",
"market": "Cleveland",
"alias": "CLE",
"sr_id": "sr:competitor:4417",
"points": 3
}
},
"coin_toss":
{
"home":
{
"outcome": "won",
"decision": "receive",
"direction": "north"
},
"away":
{
"outcome": "lost",
"decision": "kick",
"direction": "north"
}
},
"pbp":
[
{
"type": "drive",
"id": "e7036061-9048-4b8c-b665-bd68374462dc",
"sequence": 15,
"start_reason": "Kickoff",
"end_reason": "Punt",
"play_count": 4,
"duration": "2:28",
"first_downs": 1,
"gain": 25,
"penalty_yards": 0,
"created_at": "2023-12-03T23:16:23+00:00",
"updated_at": "2023-12-03T23:21:23+00:00",
"team_sequence": 8,
"start_clock": "15:00",
"end_clock": "12:32",
"first_drive_yardline": 83,
"last_drive_yardline": 58,
"farthest_drive_yardline": 58,
"net_yards": 25,
"pat_points_attempted": 0,
"offensive_team":
{
"points": 0,
"id": "2eff2a03-54d4-46ba-890e-2bc3925548f3"
},
"defensive_team":
{
"points": 0,
"id": "d5a2eb42-8065-4174-ab79-0a6fa820e35e"
},
"events":
[
{
"type": "play",
"id": "15340400-9230-11ee-a2a3-8db1c4f06774",
"sequence": 1701645383357,
"clock": "15:00",
"home_points": 13,
"away_points": 10,
"play_type": "kickoff",
"wall_clock": "2023-12-03T23:16:12+00:00",
"description": "D.Hopkins kicks 56 yards from CLE 35 to the LA 9. A.Trammell returns the kickoff. Tackled by K.Hailassie at LA 17.",
"fake_punt": false,
"fake_field_goal": false,
"screen_pass": false,
"hash_mark": "Right Hash",
"play_action": false,
"run_pass_option": false,
"created_at": "2023-12-03T23:16:23+00:00",
"updated_at": "2023-12-04T21:01:45+00:00",
"start_situation":
{
"clock": "15:00",
"down": 0,
"yfd": 0,
"possession":
{
"id": "d5a2eb42-8065-4174-ab79-0a6fa820e35e",
"name": "Browns",
"market": "Cleveland",
"alias": "CLE",
"sr_id": "sr:competitor:4417"
},
"location":
{
"id": "d5a2eb42-8065-4174-ab79-0a6fa820e35e",
"name": "Browns",
"market": "Cleveland",
"alias": "CLE",
"sr_id": "sr:competitor:4417",
"yardline": 35
}
},
"end_situation":
{
"clock": "14:55",
"down": 1,
"yfd": 10,
"possession":
{
"id": "2eff2a03-54d4-46ba-890e-2bc3925548f3",
"name": "Rams",
"market": "Los Angeles",
"alias": "LA",
"sr_id": "sr:competitor:4387"
},
"location":
{
"id": "2eff2a03-54d4-46ba-890e-2bc3925548f3",
"name": "Rams",
"market": "Los Angeles",
"alias": "LA",
"sr_id": "sr:competitor:4387",
"yardline": 17
}
},
"statistics":
[
{
"stat_type": "kick",
"attempt": 1,
"yards": 56,
"net_yards": 48,
"inside_20": 1,
"onside_attempt": 0,
"onside_success": 0,
"squib_kick": 0,
"player":
{
"id": "058c99fc-470c-4579-a165-03e043335cc1",
"name": "Dustin Hopkins",
"jersey": "07",
"position": "K",
"sr_id": "sr:player:828769"
},
"team":
{
"id": "d5a2eb42-8065-4174-ab79-0a6fa820e35e",
"name": "Browns",
"market": "Cleveland",
"alias": "CLE",
"sr_id": "sr:competitor:4417"
}
},
{
"stat_type": "return",
"return": 1,
"yards": 8,
"category": "kick_return",
"player":
{
"id": "c1d52f55-4c65-4b37-8457-f0dc028c85bc",
"name": "Austin Trammell",
"jersey": "81",
"position": "WR",
"sr_id": "sr:player:2198468"
},
"team":
{
"id": "2eff2a03-54d4-46ba-890e-2bc3925548f3",
"name": "Rams",
"market": "Los Angeles",
"alias": "LA",
"sr_id": "sr:competitor:4387"
}
},
{
"stat_type": "defense",
"tackle": 1,
"category": "special_team",
"missed_tackles": 0,
"def_target": 0,
"def_comp": 0,
"blitz": 0,
"hurry": 0,
"knockdown": 0,
"batted_pass": 0,
"player":
{
"id": "d470e520-f421-11ed-990e-333ce5b07033",
"name": "Kahlef Hailassie",
"jersey": "25",
"position": "CB",
"sr_id": "sr:player:1472984"
},
"team":
{
"id": "d5a2eb42-8065-4174-ab79-0a6fa820e35e",
"name": "Browns",
"market": "Cleveland",
"alias": "CLE",
"sr_id": "sr:competitor:4417"
}
}
],
"details":
[
{
"category": "kick_off",
"description": "D.Hopkins kicks 56 yards from CLE 35 to the LA 9.",
"sequence": 0,
"yards": 56,
"result": "returned",
"start_location":
{
"alias": "CLE",
"yardline": 35
},
"end_location":
{
"alias": "LA",
"yardline": 9
},
"players":
[
{
"id": "058c99fc-470c-4579-a165-03e043335cc1",
"name": "Dustin Hopkins",
"jersey": "07",
"position": "K",
"sr_id": "sr:player:828769",
"role": "kick"
}
]
},
{
"category": "kick_off_return",
"description": "A.Trammell returns the kickoff.",
"sequence": 1,
"yards": 8,
"result": "tackled",
"start_location":
{
"alias": "LA",
"yardline": 9
},
"end_location":
{
"alias": "LA",
"yardline": 17
},
"players":
[
{
"id": "058c99fc-470c-4579-a165-03e043335cc1",
"name": "Dustin Hopkins",
"jersey": "07",
"position": "K",
"sr_id": "sr:player:828769",
"role": "kick"
},
{
"id": "c1d52f55-4c65-4b37-8457-f0dc028c85bc",
"name": "Austin Trammell",
"jersey": "81",
"position": "WR",
"sr_id": "sr:player:2198468",
"role": "return"
}
]
},
{
"category": "tackle",
"description": "Tackled by K.Hailassie at LA 17.",
"sequence": 2,
"start_location":
{
"alias": "LA",
"yardline": 17
},
"end_location":
{
"alias": "LA",
"yardline": 17
},
"players":
[
{
"id": "d470e520-f421-11ed-990e-333ce5b07033",
"name": "Kahlef Hailassie",
"jersey": "25",
"position": "CB",
"sr_id": "sr:player:1472984",
"role": "tackle"
}
]
}
]
},
Schedules
When will the NFL schedule be available in the API after it is announced?
Once the NFL officially releases the schedule, full schedule data is typically available in the API within 2–3 hours.
Learn more: the Schedules integration scenario walks through retrieving and maintaining schedule data.
How do I pull in schedule data for future games in which teams are not yet known?
For matchups where the teams aren't yet known, this API uses a TBD placeholder team. This virtual team has its own unique ID specific to this API.
Find the TBD team in the Teams endpoint.
<team id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="TBD" market="Team" alias="TBD"/>
The matchups will appear as below in the Schedule endpoints.
<season xmlns="http://feed.elasticstats.com/schema/football/schedule-v7.0.xsd" id="c0655d01-17f9-11f1-92c4-398db1c54270" year="2026" type="PST" name="PST">
<week id="3148a26f-27f5-4abe-801e-c37744108bec" sequence="1" title="1">
<game id="31411547-0248-422d-8d6b-29028209fe1e" status="scheduled" scheduled="2027-01-16T21:30:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="Wild Card">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<time_zones/>
</game>
<game id="0965cd42-9cd8-4b80-9e89-0a03789b65a7" status="scheduled" scheduled="2027-01-17T01:00:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="Wild Card">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<time_zones/>
</game>
<game id="b40a3fdb-40ea-4683-9f08-d4e4e2d50cb0" status="scheduled" scheduled="2027-01-17T18:00:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="Wild Card">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<time_zones/>
</game>
<game id="169785ed-4a55-477c-bb15-1eea71c71948" status="scheduled" scheduled="2027-01-17T21:30:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="Wild Card">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<time_zones/>
</game>
<game id="a5be2137-b03a-4b3b-a4a0-9322e234d65a" status="scheduled" scheduled="2027-01-18T01:15:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="Wild Card">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<broadcast network="NBC/Peacock"/>
<time_zones/>
</game>
<game id="99be5b4c-ec1c-4cc0-8b7f-2f4f4efa863a" status="scheduled" scheduled="2027-01-19T01:15:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="Wild Card">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<broadcast network="ABC/ESPN"/>
<time_zones/>
</game>
</week>
<week id="a94e1839-b576-434b-8d7c-d5776bca58e6" sequence="2" title="2">
<game id="4e01cd83-4f0f-483f-a91e-528952876a2f" status="scheduled" scheduled="2027-01-23T21:30:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="Divisional">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<time_zones/>
</game>
<game id="abd9cf78-f489-484d-8602-ab5884e344cd" status="scheduled" scheduled="2027-01-24T01:15:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="Divisional">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<time_zones/>
</game>
<game id="f4dc6117-910c-4582-9684-0c4ed3c6da06" status="scheduled" scheduled="2027-01-24T20:00:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="Divisional">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<time_zones/>
</game>
<game id="ab65f4d6-0990-4860-a751-01af2717d370" status="scheduled" scheduled="2027-01-24T23:30:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="Divisional">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<time_zones/>
</game>
</week>
<week id="4497b0ea-fd07-4a9a-a506-1f25c3e057ca" sequence="3" title="3">
<game id="2b831228-bce5-4340-9df3-b0df9708aef2" status="scheduled" scheduled="2027-01-31T20:00:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="NFC Championship">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<broadcast network="FOX"/>
<time_zones/>
</game>
<game id="28899095-c0e0-45a0-845d-a87589376661" status="scheduled" scheduled="2027-01-31T23:30:00+00:00" entry_mode="LDE" game_type="playoff" conference_game="true" title="AFC Championship">
<home id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<away id="23ed0bf0-f058-11ee-9989-93cc4251593a" name="Team TBD" alias="TBD"/>
<broadcast network="CBS/Paramount+"/>
<time_zones/>
</game>
</week>
<week id="3517850f-2ccd-4182-9d4c-3bf349e50d33" sequence="4" title="4">
<game id="74ad283c-b554-4937-8c55-de7b4ae1d9e2" status="scheduled" scheduled="2027-02-14T23:30:00+00:00" entry_mode="LDE" neutral_site="true" game_type="playoff" conference_game="false" title="Super Bowl LXI" parent_id="f6c2b12d-966c-41a5-98a7-054620fba38b">
<venue id="790c1f04-73c6-4f6f-8b1e-78a62260be90" name="SoFi Stadium" city="Inglewood" state="CA" country="USA" zip="90301" address="1000 S Prairie Ave" capacity="70240" surface="artificial" roof_type="outdoor" sr_id="sr:venue:52183">
<location lat="33.953536" lng="-118.338734"/>
</venue>
<home name="NFC Championship (win)" alias="NFC Championship (win)">
<source id="2b831228-bce5-4340-9df3-b0df9708aef2" title="NFC Championship" status="scheduled" coverage="full" game_type="playoff" scheduled="2027-01-31T20:00:00+00:00" entry_mode="LDE" outcome="win"/>
</home>
<away name="AFC Championship (win)" alias="AFC Championship (win)">
<source id="28899095-c0e0-45a0-845d-a87589376661" title="AFC Championship" status="scheduled" coverage="full" game_type="playoff" scheduled="2027-01-31T23:30:00+00:00" entry_mode="LDE" outcome="win"/>
</away>
<broadcast network="ABC/ESPN"/>
<time_zones venue="US/Pacific"/>
</game>
</week>
</season>{
"id": "c0655d01-17f9-11f1-92c4-398db1c54270",
"year": 2026,
"type": "PST",
"name": "PST",
"weeks": [
{
"id": "3148a26f-27f5-4abe-801e-c37744108bec",
"sequence": 1,
"title": "1",
"games": [
{
"id": "31411547-0248-422d-8d6b-29028209fe1e",
"status": "scheduled",
"scheduled": "2027-01-16T21:30:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "Wild Card",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"time_zones": {}
},
{
"id": "0965cd42-9cd8-4b80-9e89-0a03789b65a7",
"status": "scheduled",
"scheduled": "2027-01-17T01:00:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "Wild Card",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"time_zones": {}
},
{
"id": "b40a3fdb-40ea-4683-9f08-d4e4e2d50cb0",
"status": "scheduled",
"scheduled": "2027-01-17T18:00:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "Wild Card",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"time_zones": {}
},
{
"id": "169785ed-4a55-477c-bb15-1eea71c71948",
"status": "scheduled",
"scheduled": "2027-01-17T21:30:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "Wild Card",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"time_zones": {}
},
{
"id": "a5be2137-b03a-4b3b-a4a0-9322e234d65a",
"status": "scheduled",
"scheduled": "2027-01-18T01:15:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "Wild Card",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"broadcast": {
"network": "NBC/Peacock"
},
"time_zones": {}
},
{
"id": "99be5b4c-ec1c-4cc0-8b7f-2f4f4efa863a",
"status": "scheduled",
"scheduled": "2027-01-19T01:15:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "Wild Card",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"broadcast": {
"network": "ABC/ESPN"
},
"time_zones": {}
}
]
},
{
"id": "a94e1839-b576-434b-8d7c-d5776bca58e6",
"sequence": 2,
"title": "2",
"games": [
{
"id": "4e01cd83-4f0f-483f-a91e-528952876a2f",
"status": "scheduled",
"scheduled": "2027-01-23T21:30:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "Divisional",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"time_zones": {}
},
{
"id": "abd9cf78-f489-484d-8602-ab5884e344cd",
"status": "scheduled",
"scheduled": "2027-01-24T01:15:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "Divisional",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"time_zones": {}
},
{
"id": "f4dc6117-910c-4582-9684-0c4ed3c6da06",
"status": "scheduled",
"scheduled": "2027-01-24T20:00:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "Divisional",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"time_zones": {}
},
{
"id": "ab65f4d6-0990-4860-a751-01af2717d370",
"status": "scheduled",
"scheduled": "2027-01-24T23:30:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "Divisional",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"time_zones": {}
}
]
},
{
"id": "4497b0ea-fd07-4a9a-a506-1f25c3e057ca",
"sequence": 3,
"title": "3",
"games": [
{
"id": "2b831228-bce5-4340-9df3-b0df9708aef2",
"status": "scheduled",
"scheduled": "2027-01-31T20:00:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "NFC Championship",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"broadcast": {
"network": "FOX"
},
"time_zones": {}
},
{
"id": "28899095-c0e0-45a0-845d-a87589376661",
"status": "scheduled",
"scheduled": "2027-01-31T23:30:00+00:00",
"entry_mode": "LDE",
"game_type": "playoff",
"conference_game": true,
"title": "AFC Championship",
"home": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"away": {
"id": "23ed0bf0-f058-11ee-9989-93cc4251593a",
"name": "Team TBD",
"alias": "TBD"
},
"broadcast": {
"network": "CBS/Paramount+"
},
"time_zones": {}
}
]
},
{
"id": "3517850f-2ccd-4182-9d4c-3bf349e50d33",
"sequence": 4,
"title": "4",
"games": [
{
"id": "74ad283c-b554-4937-8c55-de7b4ae1d9e2",
"status": "scheduled",
"scheduled": "2027-02-14T23:30:00+00:00",
"entry_mode": "LDE",
"neutral_site": true,
"game_type": "playoff",
"conference_game": false,
"title": "Super Bowl LXI",
"parent_id": "f6c2b12d-966c-41a5-98a7-054620fba38b",
"venue": {
"id": "790c1f04-73c6-4f6f-8b1e-78a62260be90",
"name": "SoFi Stadium",
"city": "Inglewood",
"state": "CA",
"country": "USA",
"zip": "90301",
"address": "1000 S Prairie Ave",
"capacity": 70240,
"surface": "artificial",
"roof_type": "outdoor",
"sr_id": "sr:venue:52183",
"location": {
"lat": "33.953536",
"lng": "-118.338734"
}
},
"home": {
"name": "NFC Championship (win)",
"alias": "NFC Championship (win)",
"source": {
"id": "2b831228-bce5-4340-9df3-b0df9708aef2",
"title": "NFC Championship",
"status": "scheduled",
"coverage": "full",
"game_type": "playoff",
"scheduled": "2027-01-31T20:00:00+00:00",
"entry_mode": "LDE",
"outcome": "win"
}
},
"away": {
"name": "AFC Championship (win)",
"alias": "AFC Championship (win)",
"source": {
"id": "28899095-c0e0-45a0-845d-a87589376661",
"title": "AFC Championship",
"status": "scheduled",
"coverage": "full",
"game_type": "playoff",
"scheduled": "2027-01-31T23:30:00+00:00",
"entry_mode": "LDE",
"outcome": "win"
}
},
"broadcast": {
"network": "ABC/ESPN"
},
"time_zones": {
"venue": "US/Pacific"
}
}
]
}
],
"_comment": "Generation started @ 2026-05-19 21:13:04 +0000 ended @ 2026-05-19 21:13:04 +0000"
}Make note of the status attribute to determine whether the time of the game is known. A status of time-tbd indicates the game has been scheduled, but a time has yet to be announced. A status of scheduled indicates the game time is known.
Game Data
Game Statuses
What are the game statuses and their descriptions?
Here are the valid game statuses and their descriptions:
scheduled– The game is scheduled to occur.created– Game data (rosters, officials, etc) are being pre-loaded in preparation for the game.inprogress– The game is in progress.halftime– The game is currently at halftime.complete– The game is over, but stat validation is not complete.closed– The game is over and the stats have been validated.cancelled– The game has been cancelled. No makeup game will be played as a result.postponed– The game has been postponed, to be made up at another day and time. Once the makeup game is announced, a new game and ID will be created and scheduled on the announced makeup date. You should request the Schedule feed(s) regularly to identify the re-scheduled makeup game(s).delayed– The scheduled game, or a game that was in progress, is now delayed for some reason.suspended– The game has been suspended and will be rescheduled in the future, continuing where they left off. The game ID will remain the same.flex-schedule– The game is currently scheduled to occur on a specific date and time, however, it will more than likely be moved to a different time for broadcast purposes.time-tbd– The game has been scheduled, but a time has yet to be announced.
Learn more: see the Game Status Workflow guide for how each status maps to the right endpoint.
Play Types & Details
What are the play types I can expect to see?
Here are the valid play types:
passrushfaircatch_kickextra_pointconversionfree_kickkickoffpuntfield_goalpenalty
What are the event types I can expect to see?
Here are the valid event types:
setuptimeouttv_timeouttwo_minute_warningcommentperiod_endgame_over
What are the possible detail categories I can expect to see?
Here are the valid detail categories:
aborted_snapaborted_snap_recoveryblocked_kickblocked_kick_recoverydefensive_conversion_fumble_recoverydefensive_conversion_interception_recoverydefensive_conversion_recoverydownedextra_point_attemptfair_catchfield_goalfield_goal_returnfirst_downforced_fumblefourth_down_conversionfumblefumble_out_of_boundskick_offkick_off_returnkneellateralmuffed_kickmuffed_puntno_playonside_kick_offonside_kick_off_recoveryopponent_aborted_snap_recoveryopponent_blocked_kick_recoveryopponent_fumble_recoveryout_of_boundsown_aborted_snap_recoveryown_blocked_kick_recoveryown_fumble_recoverypasspass_completionpass_incompletionpass_interceptionpass_interception_returnpass_receptionpenaltypuntpunt_returnpushed_out_of_boundsran_out_of_boundsreviewreview_pendingrushsacksafetyscramblespikestat_correctiontackleteam_timeoutthird_down_conversiontouchbacktouchdowntwo_point_attempttwo_point_passtwo_point_returntwo_point_resulttwo_point_rush
<detail category="pass_incompletion" sequence="1" direction="short middle">
<description>J.Allen pass incomplete short middle intended for D.Knox.</description>
<start_location alias="BUF" yardline="42"/>
<end_location alias="BUF" yardline="45"/>
<players>
<player id="5fb525c5-4e70-4ede-8c49-94ad0cf66b7d" name="Dawson Knox" jersey="88" position="TE" sr_id="sr:player:1229734" role="receive"/>
<player id="3069db07-aa43-4503-ab11-2ae5c0002721" name="Josh Allen" jersey="17" position="QB" sr_id="sr:player:1208608" role="pass"/>
</players>
</detail>{
"category": "pass_incompletion",
"description": "J.Allen pass incomplete short middle intended for D.Knox.",
"sequence": 1,
"direction": "short middle",
"start_location": {
"alias": "BUF",
"yardline": 42
},
"end_location": {
"alias": "BUF",
"yardline": 45
},
"players": [
{
"id": "5fb525c5-4e70-4ede-8c49-94ad0cf66b7d",
"name": "Dawson Knox",
"jersey": "88",
"position": "TE",
"sr_id": "sr:player:1229734",
"role": "receive"
},
{
"id": "3069db07-aa43-4503-ab11-2ae5c0002721",
"name": "Josh Allen",
"jersey": "17",
"position": "QB",
"sr_id": "sr:player:1208608",
"role": "pass"
}
]
}What are the possible player role values in play details?
role values in play details?Here are the valid player roles:
ast_sackast_tackleblockcatchconversiondefenddefenderdownfair_catchfirst_downforce_fumforce_fum_astfum_recfumblehitholdkicklateralmissmuffout_of_boundspasspenaltypuntreceiverecoveryreturnreviewed_byrushsacksafetysnaptackletimeouttouchback
<details>
<detail category="pass" sequence="0">
<description>B.Purdy steps back to pass.</description>
<start_location alias="SF" yardline="30"/>
<end_location alias="SF" yardline="30"/>
<players>
<player id="d5aef708-ad61-4ab8-a637-62ff96e92040" name="Brock Purdy" jersey="13" position="QB" sr_id="sr:player:1420461" role="pass"/>
</players>
</detail>
<detail category="pass_incompletion" sequence="1" direction="deep left">
<description>B.Purdy pass incomplete deep left intended for D.Samuel.</description>
<start_location alias="SF" yardline="30"/>
<end_location alias="SF" yardline="47"/>
<players>
<player id="628a6a0a-4fde-4024-8d7c-28674953d5af" name="Deebo Samuel Sr." jersey="19" position="WR" sr_id="sr:player:1218302" role="receive"/>
<player id="d5aef708-ad61-4ab8-a637-62ff96e92040" name="Brock Purdy" jersey="13" position="QB" sr_id="sr:player:1420461" role="pass"/>
</players>
</detail>
</details>"details": [
{
"category": "pass_completion",
"description": "B.Purdy pass short middle complete to KC 46.",
"sequence": 0,
"direction": "short middle",
"yards": 11,
"start_location": {
"alias": "SF",
"yardline": 49
},
"end_location": {
"alias": "KC",
"yardline": 46
},
"players": [
{
"id": "d5aef708-ad61-4ab8-a637-62ff96e92040",
"name": "Brock Purdy",
"jersey": "13",
"position": "QB",
"sr_id": "sr:player:1420461",
"role": "pass"
}
]
},
{
"category": "pass_reception",
"description": "Catch made by C.McCaffrey at KC 46. Gain of 11 yards.",
"sequence": 1,
"yards": 11,
"result": "tackled",
"start_location": {
"alias": "KC",
"yardline": 46
},
"end_location": {
"alias": "KC",
"yardline": 40
},
"players": [
{
"id": "f96db0af-5e25-42d1-a07a-49b4e065b364",
"name": "Christian McCaffrey",
"jersey": "23",
"position": "RB",
"sr_id": "sr:player:1129507",
"role": "catch"
}
]
},What are the possible review type values in play details?
type values in play details?Here are the valid detail.review.type values.
The review/challenge outcome appears under review.result as either overturned or upheld. In cases where a team initiates a challenge (rather than an official review), a team object will appear within review.
backward passfirst downfumbleillegal forward passineligible receiverkick touchedloose ball recoverypass completionpass interceptionpotential foulrunner broke the planerunner was down by contactrunning into the kickersafetyshort of the line to gaintargetingtipped passtoo many players on fieldtouchback
<play id="a7fddcb0-7e8f-11ef-a8f8-6731672f2233" sequence="1727634146815.0" clock="2:23" home_points="0" away_points="28" wall_clock="2024-09-29T18:22:20+00:00" players_rushed="4" men_in_box="7" fake_punt="false" fake_field_goal="false" screen_pass="false" blitz="false" play_direction="Middle" left_tightends="0" right_tightends="2" hash_mark="Right Hash" pocket_location="Middle" qb_at_snap="Shotgun" huddle="Huddle" pass_route="In" play_action="false" run_pass_option="false" created_at="2024-09-29T18:22:26+00:00" updated_at="2024-09-30T18:17:42+00:00" type="pass">
<start_situation clock="2:23" down="2" yfd="10">
<possession id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB" sr_id="sr:competitor:4420"/>
<location id="33405046-04ee-4058-a950-d606f8c30852" name="Vikings" market="Minnesota" alias="MIN" sr_id="sr:competitor:4423" yardline="34"/>
</start_situation>
<end_situation clock="2:16" down="3" yfd="10">
<possession id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB" sr_id="sr:competitor:4420"/>
<location id="33405046-04ee-4058-a950-d606f8c30852" name="Vikings" market="Minnesota" alias="MIN" sr_id="sr:competitor:4423" yardline="34"/>
</end_situation>
<description>J.Love steps back to pass. Pass incomplete deep middle intended for D.Wicks. Green Bay challenged the pass completion and the play was upheld. Timeout #1 by GB.</description>
<statistics>
<timeout>
<team id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB" sr_id="sr:competitor:4420"/>
</timeout>
<pass attempt="1" complete="0" att_yards="0" firstdown="0" inside_20="0" goaltogo="0" incompletion_type="Poorly Thrown" blitz="0" hurry="0" knockdown="0" pocket_time="3.015" on_target_throw="0" batted_pass="0">
<team id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB" sr_id="sr:competitor:4420"/>
<player id="e5094779-e94f-4052-8597-bdbee3719f6b" name="Jordan Love" jersey="10" position="QB" sr_id="sr:player:2040035"/>
</pass>
<receive firstdown="0" target="1" inside_20="0" goaltogo="0" dropped="0" catchable="0">
<team id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB" sr_id="sr:competitor:4420"/>
<player id="ea3d1393-8c3b-4e81-a519-f636d28d692e" name="Dontayvion Wicks" jersey="13" position="WR" sr_id="sr:player:1692361"/>
</receive>
<defense missed_tackles="0" def_target="1" def_comp="0" blitz="0" hurry="0" knockdown="0" batted_pass="0">
<team id="33405046-04ee-4058-a950-d606f8c30852" name="Vikings" market="Minnesota" alias="MIN" sr_id="sr:competitor:4423"/>
<player id="bcbbd7af-5a61-41f2-bae6-1e034755e7ef" name="Kamu Grugier-Hill" jersey="54" position="LB" sr_id="sr:player:1074210"/>
</defense>
</statistics>
<details>
<detail category="pass" sequence="0">
<description>J.Love steps back to pass.</description>
<start_location alias="MIN" yardline="34"/>
<end_location alias="MIN" yardline="34"/>
<players>
<player id="e5094779-e94f-4052-8597-bdbee3719f6b" name="Jordan Love" jersey="10" position="QB" sr_id="sr:player:2040035" role="pass"/>
</players>
</detail>
<detail category="pass_incompletion" sequence="1" direction="deep middle">
<description>Pass incomplete deep middle intended for D.Wicks.</description>
<start_location alias="MIN" yardline="34"/>
<end_location alias="MIN" yardline="34"/>
<players>
<player id="ea3d1393-8c3b-4e81-a519-f636d28d692e" name="Dontayvion Wicks" jersey="13" position="WR" sr_id="sr:player:1692361" role="receive"/>
<player id="e5094779-e94f-4052-8597-bdbee3719f6b" name="Jordan Love" jersey="10" position="QB" sr_id="sr:player:2040035" role="pass"/>
</players>
</detail>
<detail category="review" sequence="2">
<description>Green Bay challenged the pass completion and the play was upheld.</description>
<start_location alias="MIN" yardline="34"/>
<end_location alias="MIN" yardline="34"/>
<review result="upheld" type="pass completion">
<team id="a20471b4-a8d9-40c7-95ad-90cc30e46932" name="Packers" market="Green Bay" alias="GB" sr_id="sr:competitor:4420"/>
</review>
<players>
</players>
</detail>
<detail category="team_timeout" sequence="3">
<description>Timeout #1 by GB.</description>
<start_location alias="MIN" yardline="34"/>
<end_location alias="MIN" yardline="34"/>
<players>
</players>
</detail>
</details>
</play>{
"type": "play",
"id": "a7fddcb0-7e8f-11ef-a8f8-6731672f2233",
"sequence": 1727634146815.0,
"clock": "2:23",
"home_points": 0,
"away_points": 28,
"play_type": "pass",
"wall_clock": "2024-09-29T18:22:20+00:00",
"description": "J.Love steps back to pass. Pass incomplete deep middle intended for D.Wicks. Green Bay challenged the pass completion and the play was upheld. Timeout #1 by GB.",
"players_rushed": 4,
"men_in_box": 7,
"fake_punt": false,
"fake_field_goal": false,
"screen_pass": false,
"blitz": false,
"play_direction": "Middle",
"left_tightends": 0,
"right_tightends": 2,
"hash_mark": "Right Hash",
"pocket_location": "Middle",
"qb_at_snap": "Shotgun",
"huddle": "Huddle",
"pass_route": "In",
"play_action": false,
"run_pass_option": false,
"created_at": "2024-09-29T18:22:26+00:00",
"updated_at": "2024-09-30T18:17:42+00:00",
"start_situation": {
"clock": "2:23",
"down": 2,
"yfd": 10,
"possession": {
"id": "a20471b4-a8d9-40c7-95ad-90cc30e46932",
"name": "Packers",
"market": "Green Bay",
"alias": "GB",
"sr_id": "sr:competitor:4420"
},
"location": {
"id": "33405046-04ee-4058-a950-d606f8c30852",
"name": "Vikings",
"market": "Minnesota",
"alias": "MIN",
"sr_id": "sr:competitor:4423",
"yardline": 34
}
},
"end_situation": {
"clock": "2:16",
"down": 3,
"yfd": 10,
"possession": {
"id": "a20471b4-a8d9-40c7-95ad-90cc30e46932",
"name": "Packers",
"market": "Green Bay",
"alias": "GB",
"sr_id": "sr:competitor:4420"
},
"location": {
"id": "33405046-04ee-4058-a950-d606f8c30852",
"name": "Vikings",
"market": "Minnesota",
"alias": "MIN",
"sr_id": "sr:competitor:4423",
"yardline": 34
}
},
"statistics": [
{
"stat_type": "timeout",
"team": {
"id": "a20471b4-a8d9-40c7-95ad-90cc30e46932",
"name": "Packers",
"market": "Green Bay",
"alias": "GB",
"sr_id": "sr:competitor:4420"
}
},
{
"stat_type": "pass",
"attempt": 1,
"complete": 0,
"att_yards": 0,
"firstdown": 0,
"inside_20": 0,
"goaltogo": 0,
"incompletion_type": "Poorly Thrown",
"blitz": 0,
"hurry": 0,
"knockdown": 0,
"pocket_time": 3.015,
"on_target_throw": 0,
"batted_pass": 0,
"player": {
"id": "e5094779-e94f-4052-8597-bdbee3719f6b",
"name": "Jordan Love",
"jersey": "10",
"position": "QB",
"sr_id": "sr:player:2040035"
},
"team": {
"id": "a20471b4-a8d9-40c7-95ad-90cc30e46932",
"name": "Packers",
"market": "Green Bay",
"alias": "GB",
"sr_id": "sr:competitor:4420"
}
},
{
"stat_type": "receive",
"firstdown": 0,
"target": 1,
"inside_20": 0,
"goaltogo": 0,
"dropped": 0,
"catchable": 0,
"player": {
"id": "ea3d1393-8c3b-4e81-a519-f636d28d692e",
"name": "Dontayvion Wicks",
"jersey": "13",
"position": "WR",
"sr_id": "sr:player:1692361"
},
"team": {
"id": "a20471b4-a8d9-40c7-95ad-90cc30e46932",
"name": "Packers",
"market": "Green Bay",
"alias": "GB",
"sr_id": "sr:competitor:4420"
}
},
{
"stat_type": "defense",
"missed_tackles": 0,
"def_target": 1,
"def_comp": 0,
"blitz": 0,
"hurry": 0,
"knockdown": 0,
"batted_pass": 0,
"player": {
"id": "bcbbd7af-5a61-41f2-bae6-1e034755e7ef",
"name": "Kamu Grugier-Hill",
"jersey": "54",
"position": "LB",
"sr_id": "sr:player:1074210"
},
"team": {
"id": "33405046-04ee-4058-a950-d606f8c30852",
"name": "Vikings",
"market": "Minnesota",
"alias": "MIN",
"sr_id": "sr:competitor:4423"
}
}
],
"details": [
{
"category": "pass",
"description": "J.Love steps back to pass.",
"sequence": 0,
"start_location": {
"alias": "MIN",
"yardline": 34
},
"end_location": {
"alias": "MIN",
"yardline": 34
},
"players": [
{
"id": "e5094779-e94f-4052-8597-bdbee3719f6b",
"name": "Jordan Love",
"jersey": "10",
"position": "QB",
"sr_id": "sr:player:2040035",
"role": "pass"
}
]
},
{
"category": "pass_incompletion",
"description": "Pass incomplete deep middle intended for D.Wicks.",
"sequence": 1,
"direction": "deep middle",
"start_location": {
"alias": "MIN",
"yardline": 34
},
"end_location": {
"alias": "MIN",
"yardline": 34
},
"players": [
{
"id": "ea3d1393-8c3b-4e81-a519-f636d28d692e",
"name": "Dontayvion Wicks",
"jersey": "13",
"position": "WR",
"sr_id": "sr:player:1692361",
"role": "receive"
},
{
"id": "e5094779-e94f-4052-8597-bdbee3719f6b",
"name": "Jordan Love",
"jersey": "10",
"position": "QB",
"sr_id": "sr:player:2040035",
"role": "pass"
}
]
},
{
"category": "review",
"description": "Green Bay challenged the pass completion and the play was upheld.",
"sequence": 2,
"start_location": {
"alias": "MIN",
"yardline": 34
},
"end_location": {
"alias": "MIN",
"yardline": 34
},
"review": {
"result": "upheld",
"type": "pass completion",
"team": {
"id": "a20471b4-a8d9-40c7-95ad-90cc30e46932",
"name": "Packers",
"market": "Green Bay",
"alias": "GB",
"sr_id": "sr:competitor:4420"
}
},
"players": []
},
{
"category": "team_timeout",
"description": "Timeout #1 by GB.",
"sequence": 3,
"start_location": {
"alias": "MIN",
"yardline": 34
},
"end_location": {
"alias": "MIN",
"yardline": 34
},
"players": []
}
]
},What are the point after score types I can expect to see in the feeds?
Here are the valid score types:
extra_pointconversionpenalty
What are the play results (details.result or pulse.details.result) I can expect to see?
details.result or pulse.details.result) I can expect to see?Here are the valid result types. These are available in Game Play-by-Play, Push Events, and Push Pulse.
acceptedbackward passblockeddeclineddownedfair catchfumbledgoodmissedmuffedno goodnullified touchdownoffsetoverturnedpasspenaltypushed out of boundsran out of boundsreturnedrushtackledtouchbacktouchdown
Drives
What are the start and end reasons for a drive that I can expect to see?
Here are the end reasons for a drive:
UNKNOWN– Start/EndTouchdown– Start/EndSafety– EndField Goal– Start/EndMissed FG– Start/EndBlocked FG– Start/EndBlocked FG, Downs– Start/EndBlocked FG, Safety– EndPunt– Start/EndBlocked Punt– Start/EndBlocked Punt, Downs– Start/EndBlocked Punt, Safety– EndDowns– Start/EndInterception– Start/EndFumble– Start/EndFumble, Safety- EndMissed FG– EndMuffed FG– Start/EndMuffed Punt– StartMuffed Kickoff– StartKickoff– StartOwn Kickoff– StartOnside Kick– StartKickoff, No Play– StartEnd of Half– EndEnd of Game– EndOvertime Possession– Start (not in use for NFL)
Scoring
When are the game scores added to the Schedule feeds?
Game and period scores are added to the feed when the game status changes to complete.
Players & Personnel
Player Statuses
What are the player statuses and their descriptions?
Here are the valid player statuses and their descriptions. Note that additional decommissioned statuses may appear in older seasons.
ACT- ActiveDUP- Duplicate player profile. All profiles marked as duplicates can be ignored.EXE- ExemptFRES- Reserve/FutureIR- Injured ReserveIRD- Injured Reserve - Designated for ReturnNON- Non-football related injured reserveNWT- Not with teamPRA- Practice SquadPRA_IR- Practice Squad Injured ReservePUP- Physically unable to performRET- RetiredSUS- SuspendedUDF- Unsigned draft pickUFA- Unsigned free agent
Learn more: the Rosters and Players integration scenario covers how player and roster data is structured and retrieved.
What are the player game statuses and when can I expect them to populate?
Here are the valid player game statuses:
deactivateddnp(Did Not Play)playedstarted
These player game statuses will appear within the Game Roster feed exclusively.
When a game is set to created, all players are marked as played. Approximately 90 minutes before kickoff, NFL teams will announce inactive players for their game. At this time, affected players are adjusted to deactivated. At the conclusion of the game, players are adjusted to started, played, and dnp as necessary.
<player id="56b26b71-8f1e-416c-a7e5-62cd67c98f4b" name="Matthew Orzech" jersey="42"
last_name="Orzech" first_name="Matthew" abbr_name="M.Orzech" birth_date="1995-04-12"
weight="245.0" height="75" position="LS" age="28" birth_place="San Diego, CA, USA"
high_school="Paloma Valley (CA)" college="Azusa Pacific" college_conf="Great Northwest Athletic Conference"
rookie_year="2019" status="played" sr_id="sr:player:1737543" in_game_status="active">
</player>
<player id="a93e2eb0-d264-11ec-b16e-cf7159baf83d" name="Zyon Gilbert" jersey="27"
last_name="Gilbert" first_name="Zyon" abbr_name="Z.Gilbert" birth_date="1999-02-04"
weight="182.0" height="73" position="CB" age="24" birth_place="Montgomery, AL, USA"
high_school="Jefferson Davis (AL)" college="Florida Atlantic" college_conf="Conference USA"
rookie_year="2022" status="dnp" sr_id="sr:player:1236108" in_game_status="active">
</player>
<player id="b5d116d8-11d4-43b1-8f0b-9a3ba26648c9" name="Elgton Jenkins" jersey="74"
last_name="Jenkins" first_name="Elgton" abbr_name="E.Jenkins" birth_date="1995-12-26" weight="311.0"
height="77" position="OL" age="27" birth_place="Clarksdale, MS, USA" high_school="Clarksdale (MS)"
college="Mississippi State" college_conf="Southeastern Conference" rookie_year="2019"
status="started" sr_id="sr:player:1203480" in_game_status="active">
</player>
{
"id": "56b26b71-8f1e-416c-a7e5-62cd67c98f4b",
"name": "Matthew Orzech",
"jersey": "42",
"last_name": "Orzech",
"first_name": "Matthew",
"abbr_name": "M.Orzech",
"birth_date": "1995-04-12",
"weight": 245.0,
"height": 75,
"position": "LS",
"age": 28,
"birth_place": "San Diego, CA, USA",
"high_school": "Paloma Valley (CA)",
"college": "Azusa Pacific",
"college_conf": "Great Northwest Athletic Conference",
"rookie_year": 2019,
"status": "played",
"sr_id": "sr:player:1737543",
"in_game_status": "active"
},
{
"id": "a93e2eb0-d264-11ec-b16e-cf7159baf83d",
"name": "Zyon Gilbert",
"jersey": "27",
"last_name": "Gilbert",
"first_name": "Zyon",
"abbr_name": "Z.Gilbert",
"birth_date": "1999-02-04",
"weight": 182.0,
"height": 73,
"position": "CB",
"age": 24,
"birth_place": "Montgomery, AL, USA",
"high_school": "Jefferson Davis (AL)",
"college": "Florida Atlantic",
"college_conf": "Conference USA",
"rookie_year": 2022,
"status": "dnp",
"sr_id": "sr:player:1236108",
"in_game_status": "active"
},
{
"id": "b5d116d8-11d4-43b1-8f0b-9a3ba26648c9",
"name": "Elgton Jenkins",
"jersey": "74",
"last_name": "Jenkins",
"first_name": "Elgton",
"abbr_name": "E.Jenkins",
"birth_date": "1995-12-26",
"weight": 311.0,
"height": 77,
"position": "OL",
"age": 27,
"birth_place": "Clarksdale, MS, USA",
"high_school": "Clarksdale (MS)",
"college": "Mississippi State",
"college_conf": "Southeastern Conference",
"rookie_year": 2019,
"status": "started",
"sr_id": "sr:player:1203480",
"in_game_status": "active",
"draft": {
"year": 2019,
"round": 2,
"number": 44,
"team": {
"id": "a20471b4-a8d9-40c7-95ad-90cc30e46932",
"name": "Packers",
"market": "Green Bay",
"alias": "GB",
"sr_id": "sr:competitor:4420"
}
}
},What are the possible in-game player status updates (player.in_game_status) I can expect to see in the Game Roster endpoint?
player.in_game_status) I can expect to see in the Game Roster endpoint?Here are the valid in-game player statuses:
activeprobablequestionabledoubtfuloutbenchedunknown
<player id="bbd0942c-6f77-4f83-a6d0-66ec6548019e" name="Kirk Cousins" jersey="08" last_name="Cousins"
first_name="Kirk" abbr_name="K.Cousins" birth_date="1988-08-19" weight="205.0" height="75"
position="QB" age="35" birth_place="Barrington, IL, USA" high_school="Holland Christian (MI)"
college="Michigan State" college_conf="Big Ten Conference" rookie_year="2012" status="started"
sr_id="sr:player:828891" in_game_status="out">
<draft year="2012" round="4" number="102">
<team id="22052ff7-c065-42ee-bc8f-c4691c50e624" name="Commanders" market="Washington" alias="WAS" sr_id="sr:competitor:4432"/>
</draft>
</player> {
"id": "bbd0942c-6f77-4f83-a6d0-66ec6548019e",
"name": "Kirk Cousins",
"jersey": "08",
"last_name": "Cousins",
"first_name": "Kirk",
"abbr_name": "K.Cousins",
"birth_date": "1988-08-19",
"weight": 205.0,
"height": 75,
"position": "QB",
"age": 35,
"birth_place": "Barrington, IL, USA",
"high_school": "Holland Christian (MI)",
"college": "Michigan State",
"college_conf": "Big Ten Conference",
"rookie_year": 2012,
"status": "started",
"sr_id": "sr:player:828891",
"in_game_status": "out",
"draft": {
"year": 2012,
"round": 4,
"number": 102,
"team": {
"id": "22052ff7-c065-42ee-bc8f-c4691c50e624",
"name": "Commanders",
"market": "Washington",
"alias": "WAS",
"sr_id": "sr:competitor:4432"
}
}
},Player Positions
What are the player positions I can expect to see?
Here are the valid player positions and their descriptions. Note that additional decommissioned positions may appear in older seasons.
C- CenterCB- CornerbackDB- Defensive BackDE- Defensive EndDL- Defensive LinemanDT- Defensive TackleFB- FullbackFS- Free SafetyG- Offensive GuardK- KickerLB- LinebackerLS- Long SnapperMLB- Middle LinebackerNT- Nose TackleOG- Offensive GuardOL- Offensive LinemanOLB- Outside LinebackerOT- Offensive TackleP- PunterQB- QuarterbackRB- Running BackSAF- SafetySS- Strong SafetyT- Offensive TackleTE- Tight EndWR- Wide Receiver
How are player positions handled in the feeds?
Players may receive a "game" position. This game position may not match the position listed on the player's profile outside the game.
What coach positions do you display?
Here are the coach positions currently supported by our API. Please note: these are not fixed enumeration values and may be expanded or updated in the future.
- Offensive Coordinator
- Interim Head Coach
- Defensive Coordinator
- Head Coach
- Special Teams Coordinator
- Co-Offensive Coordinator
- Assistant Head Coach/Defensive Coordinator
- Co-Defensive Coordinator
- Interim Defensive Coordinator
- Interim Offensive Coordinator
<coaches>
<coach id="109f7f41-490e-4adf-a6cb-2591bf886a97" full_name="Brandon Staley" first_name="Brandon" last_name="Staley" position="Defensive Coordinator"/>
<coach id="1bb0ec40-3be3-11f0-8ad9-dd7f0645615e" full_name="Phil Galiano" first_name="Phil" last_name="Galiano" position="Special Teams Coordinator"/>
<coach id="65fbdbc0-efad-11ef-bc11-51c2b11c914a" full_name="Doug Nussmeier" first_name="Doug" last_name="Nussmeier" position="Offensive Coordinator"/>
<coach id="793d9b0d-0b96-4f64-aa8b-f5f7ae72c4ec" full_name="Kellen Moore" first_name="Kellen" last_name="Moore" position="Head Coach"/>
</coaches>Transactions
What are the valid transaction_code and transaction_type values?
Here are the valid transaction codes and types:
ACT- ActivatedCL- ClaimedCEXP- Contract ExpiredCEXT- Contract ExtensionDEC- DeceasedFA- Declared Free AgencyTAG- Designated Franchise TagDRA- DraftedSUS- League SuspensionABS- Leave of AbsenceNWT- Not with TeamTRAN- Other TransactionEXE- Placed on Exempt/Commissioner’s ListIR- Placed on Injured ReserveIRDR- Placed on Injured Reserve – Designated for ReturnPUP- Placed on Physically Unable to Perform ListNON- Placed on Reserve/Non Football Injury ListRSGN- Re-SignedRSUS- Reinstated from SuspensionREL- ReleasedRET- RetiredEDRA- Selected in Expansion DraftSGN- SignedPRA- Assigned to Practice SquadTSUS- Team SuspensionTRD- TradedWA- WaivedWAI- Waived – Injury
<player id="18be19e0-cc7e-11ec-8d55-87af3a9174bd" name="Stanley Berryhill" first_name="Stanley" last_name="Berryhill" position="WR" sr_id="sr:player:1261410">
<transaction id="69bea440-6ceb-11ee-8808-8d33a3153a68" desc="WR Stanley Berryhill was reinstated from suspension." effective_date="2023-10-17" last_modified="2023-10-17T12:48:35Z" transaction_type="Reinstated from Suspension" transaction_code="RSUS" transaction_year="2023" status_before="SUS" status_after="UFA">
</transaction>
</player>{
"id": "c816f5e3-7abe-4fc5-b6e0-4151017210b0",
"name": "Jack Jones",
"first_name": "Jack",
"last_name": "Jones",
"jersey": "13",
"position": "DB",
"sr_id": "sr:player:1209584",
"transactions": [
{
"id": "fa1ea9a0-6d0d-11ee-935e-2d7aaab01588",
"desc": "The New England Patriots placed DB Jack Jones on IRD.",
"effective_date": "2023-10-17",
"last_modified": "2023-10-17T16:55:53Z",
"transaction_type": "Placed on Injury Reserve - Designated for Return",
"transaction_code": "IRDR",
"transaction_year": 2023,
"status_before": "IR",
"status_after": "IRD",
"from_team": {
"id": "97354895-8c77-4fd4-a860-32e62ea7382a",
"name": "Patriots",
"market": "New England",
"alias": "NE",
"sr_id": "sr:competitor:4424"
},
"to_team": {
"id": "97354895-8c77-4fd4-a860-32e62ea7382a",
"name": "Patriots",
"market": "New England",
"alias": "NE",
"sr_id": "sr:competitor:4424"
}
}
]
},What is the breadth of your transaction availability?
Our NFL transaction data goes back to 2002. All data can be accessed via the Daily Transactions endpoint.
Injuries
What are the possible injury status values I can expect to see in the feeds?
Here are the valid injury status values:
Questionable- The player has a 50/50 chance to playDoubtful- The player is very unlikely to playOut- The player will not play
Officials
What are the possible official assignments I can expect to see in the feeds?
Here are the valid official assignments:
refereeumpireheadlinesmanlinejudgefieldjudgesidejudgebackjudgedownjudgereplayofficial
<officials>
<official full_name="Shawn Hochuli" number="83" assignment="referee"/>
<official full_name="Tim Podraza" number="47" assignment="linejudge"/>
<official full_name="Jason Ledet" number="72" assignment="fieldjudge"/>
<official full_name="Rich Martinez" number="39" assignment="backjudge"/>
<official full_name="Chad Hill" number="125" assignment="sidejudge"/>
<official full_name="Terry Killens" number="77" assignment="umpire"/>
<official full_name="Tyler Cerimeli" number="0" assignment="replayofficial"/>
<official full_name="Patrick Holt" number="106" assignment="downjudge"/>
</officials>"officials": [
{
"full_name": "Shawn Hochuli",
"number": "83",
"assignment": "referee"
},
{
"full_name": "Tim Podraza",
"number": "47",
"assignment": "linejudge"
},
{
"full_name": "Jason Ledet",
"number": "72",
"assignment": "fieldjudge"
},
{
"full_name": "Rich Martinez",
"number": "39",
"assignment": "backjudge"
},
{
"full_name": "Chad Hill",
"number": "125",
"assignment": "sidejudge"
},
{
"full_name": "Terry Killens",
"number": "77",
"assignment": "umpire"
},
{
"full_name": "Tyler Cerimeli",
"number": "0",
"assignment": "replayofficial"
},
{
"full_name": "Patrick Holt",
"number": "106",
"assignment": "downjudge"
}
],Statistics
Statistics
How are assisted sacks calculated in the feeds?
Assisted sacks are credited when two players sack the quarterback. We provide this in the Play-by-Play feed and Game Boxscore as an integer. Those sacks are rolled up into the sacks stat and can be a float, since each assisted sack counts as half (0.5) of a sack.
For example, if a player had 2 solo sacks and 3 ast_sacks in a game, their game-level sacks total would be 3.5 (2 + 3 × 0.5).
<player id="bc69c92c-58ff-44b2-a18b-07a08ee78dc6" name="Jonathan Greenard" jersey="52" position="DE"
sr_id="sr:player:2040593" tackles="3" assists="3" combined="6" sacks="2.5" sack_yards="25.0"
interceptions="0" passes_defended="0" forced_fumbles="0" fumble_recoveries="0" qb_hits="4" tloss="2.0"
tloss_yards="21.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": "bc69c92c-58ff-44b2-a18b-07a08ee78dc6",
"name": "Jonathan Greenard",
"jersey": "52",
"position": "DE",
"sr_id": "sr:player:2040593",
"tackles": 3,
"assists": 3,
"combined": 6,
"sacks": 2.5,
"sack_yards": 25.0,
"interceptions": 0,
"passes_defended": 0,
"forced_fumbles": 0,
"fumble_recoveries": 0,
"qb_hits": 4,
"tloss": 2.0,
"tloss_yards": 21.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
},Subjective Statistics
What are subjective stats and how are they handled?
Subjective stats are a variety of data points that go beyond typical stats like yards, pass attempts, and touchdowns. Due to how the data is collected, it requires an operator to re-watch the game, so there is a delay before it appears in the feeds.
These data points are delivered the following Tuesday by the end of the day (6:00 PM ET) and will appear in the existing NFL API feeds. The data is available in both XML and JSON feed formats. As demand rises for additional data points, we will continue to refine the data set collected.
Which statistics are subjective?
Here are the valid subjective statistics:
Batted PassesBroken TacklesCatchable PassDefender BlitzDefensive CompletionDefensive TargetDropped PassFake Field GoalFake PuntHang TimeHash MarkHuddleHurryIncompletion TypeKneel downKnockdownLeft TightendsMen in BoxMissed TackleOn Target ThrowsOnside AttemptOnside SuccessPass RoutePlay ActionPlay DirectionPlayers RushedPocket LocationPocket TimeQB at SnapQB BlitzQB HurryQB KnockdownRight TightendsRun Pass OptionRunning LaneScrambleScreen PassTE LocationTeam BlitzYards After Contact
Leaders
What league leader stats are available?
The League Leaders endpoint provides ranked leaders across the following categories:
| Category | Available Stats |
|---|---|
| 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 |
Reference Data
Season Types
What are the season types and their descriptions?
Here are the valid season types and their descriptions:
PRE- Pre-seasonREG- Regular seasonPST- Post-season
Standings
What are the possible clinched status values I can expect to see in the Postgame Standings feed?
Here are the valid clinched status values and their definitions:
conference- Clinched Home-Field Advantagedivision_first_round_bye- Clinched First-Round Byedivision- Clinched Division Titleplayoff_berth- Clinched Playoff Berthwildcard- Clinched Wild Cardeliminated- Eliminated
<team id="386bdbf9-9eea-4869-bb9a-274b0bc66e80" name="Eagles" market="Philadelphia" alias="PHI" sr_id="sr:competitor:4428" wins="14" losses="3" ties="0" win_pct="0.824" points_for="477" points_against="344">
<rank conference="1" division="1" clinched="conference"/>{
"id": "6680d28d-d4d2-49f6-aace-5292d3ec02c2",
"name": "Chiefs",
"market": "Kansas City",
"alias": "KC",
"sr_id": "sr:competitor:4422",
"rank": {
"conference": 1,
"division": 1,
"clinched": "conference"
},Learn more: the Standings integration scenario explains how to retrieve standings and interpret clinch scenarios.
Venues
What are the venue roof types I can expect to see?
Here are the valid roof types: outdoor, dome, or retractable_dome
What are the venue surfaces I can expect to see?
Here are the valid venue surfaces: turf or artificial
Pulse Data
What are the possible event types (payload.pulse.event_type) I can expect to see covered in the Push Pulse feed?
payload.pulse.event_type) I can expect to see covered in the Push Pulse feed?Here are the valid event types:
timeouttime_adjusteddeletetimeout_overgame_suspendedgame_suspended_overcoin_tossplay_startplay_overchallengetv_timeouttv_timeout_overreviewreview_overplayers_lining_upin_game_player_statusgame_complete
NFL Draft
Draft
How can I best integrate with your NFL Draft data?
Visit our NFL Draft integration guide for the most comprehensive info.
When can I expect NFL draftees to populate in the Prospects endpoint?
Prospects are typically added in mid to late March, after the draft order is determined by the NFL.
How is the data within the draft feeds populated?
Sportradar’s experts seed players from our NCAA database. We use a variety of sources to generate a comprehensive list of players who expect to be drafted. The list is typically 500+ players.
When does the draft order become available?
We set the NFL draft order - and populate the yearly Draft Summary endpoint - after all compensatory picks have been determined.
How is an NFL prospect specified as a top prospect?
Top prospects are subjective. We use the same sources for top prospects as we do when creating the initial draft pool.
When are drafted players added to the core endpoints?
Drafted players will be available on their NFL team (Team Profile) after each completed round.
For more on how to integrate a draft day solution, see this guide.
More questions?Reach out to [email protected] for further assistance.
