NFL API – Awards Endpoints
June 25th, 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"
}