NFL Season Schedule API Documentation
You need an API key to use SportsBlaze. Get access at www.sportsblaze.com.
This endpoint updates every 60 seconds.
Description
This endpoint returns NFL schedules by season.
API Endpoint
https://api.sportsblaze.com/nfl/v1/schedule/season/{season}.json
Parameters
key
(required)
Your SportsBlaze API key.
type
The season type (e.g. Regular Season
or Playoffs
). Separate multiple types with a comma (e.g. Preseason,Regular Season
).
id
The game id (e.g. 3a2030c5-1e3a-54ef-8d73-e541a910e4b5
). Separate multiple ids with a comma (e.g. 3a2030c5-1e3a-54ef-8d73-e541a910e4b5,43e5da6e-2801-53b2-9205-f44807c37bba
).
team
The away or home team id or name (e.g. 1ea77ce7-fbf4-5347-ba3c-fabab06f310d
or Philadelphia Eagles
). Separate multiple teams with a comma (e.g. Philadelphia Eagles,Kansas City Chiefs
).
status
The game status (e.g. Scheduled
or In Progress
). Separate multiple status with a comma (e.g. Scheduled,Final
).
Example URLs
2024 season schedule:
https://api.sportsblaze.com/nfl/v1/schedule/season/2024.json?key=your_key
Example Response
{
"league": {
"id": "nfl",
"name": "NFL",
"sport": "Football"
},
"games": [
{
"season": {
"year": 2024,
"type": "Playoffs",
"week": 4
},
"id": "3a2030c5-1e3a-54ef-8d73-e541a910e4b5",
"teams": {
"away": {
"id": "93144434-dd9d-59e9-8520-a31af39403bc",
"name": "Kansas City Chiefs"
},
"home": {
"id": "1ea77ce7-fbf4-5347-ba3c-fabab06f310d",
"name": "Philadelphia Eagles"
}
},
"date": "2025-02-09T23:30:00Z",
"status": "Final",
"venue": {
"name": "Caesars Superdome",
"location": "New Orleans"
},
"scores": {
"periods": [
{
"number": 1,
"type": "Regulation",
"away": {
"points": 0
},
"home": {
"points": 7
}
},
{
"number": 2,
"type": "Regulation",
"away": {
"points": 0
},
"home": {
"points": 17
}
},
{
"number": 3,
"type": "Regulation",
"away": {
"points": 6
},
"home": {
"points": 10
}
},
{
"number": 4,
"type": "Regulation",
"away": {
"points": 16
},
"home": {
"points": 6
}
}
],
"total": {
"away": {
"points": 22
},
"home": {
"points": 40
}
}
}
}
],
"updated": "2025-04-19T18:24:06Z"
}