NFL Team Rosters 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 team rosters.
API Endpoint
https://api.sportsblaze.com/nfl/v1/rosters/{season}.json
Parameters
key
(required)
Your SportsBlaze API key.
team
The 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
).
id
The player id (e.g. a3d3734c-ffec-5c1d-94c1-848b34cedb37
). Separate multiple ids with a comma (e.g. a3d3734c-ffec-5c1d-94c1-848b34cedb37,b73f5cf5-77d2-5529-8490-4d337aebde87
).
name
The player name (e.g. Saquon Barkley
). Separate multiple names with a comma (e.g. Saquon Barkley,Jalen Hurts
).
position
The player position (e.g. QB
). Separate multiple positions with a comma (e.g. WR,RB
).
Example URLs
2024 team rosters:
https://api.sportsblaze.com/nfl/v1/rosters/2024.json?key=your_key
2024 team rosters, Philadelphia Eagles team:
https://api.sportsblaze.com/nfl/v1/rosters/2024.json?key=your_key&team=Philadelphia%20Eagles
2024 team rosters, Philadelphia Eagles & Kansas City Chiefs teams, QB & RB positions:
https://api.sportsblaze.com/nfl/v1/rosters/2024.json?key=your_key&team=Philadelphia%20Eagles,Kansas%20City%20Chiefs&position=QB,RB
Example Response
{
"league": {
"id": "nfl",
"name": "NFL",
"sport": "Football"
},
"season": {
"year": 2024
},
"teams": [
{
"id": "1ea77ce7-fbf4-5347-ba3c-fabab06f310d",
"name": "Philadelphia Eagles",
"roster": [
{
"id": "a3d3734c-ffec-5c1d-94c1-848b34cedb37",
"name": "Saquon Barkley",
"first": "Saquon",
"last": "Barkley",
"position": "RB",
"number": "26",
"birthdate": "1997-02-09",
"age": 28,
"height": 72,
"weight": 232,
"headshot": "https://static.www.nfl.com/image/upload/{format}/league/ugiuanl8bf6uoya5mgid"
},
{
"id": "b73f5cf5-77d2-5529-8490-4d337aebde87",
"name": "Jalen Hurts",
"first": "Jalen",
"last": "Hurts",
"position": "QB",
"number": "1",
"birthdate": "1998-08-07",
"age": 26,
"height": 73,
"weight": 223,
"headshot": "https://static.www.nfl.com/image/upload/{format}/league/k2p5yb4qmqwoo3qcapgt"
}
]
}
],
"updated": "2025-04-20T03:51:58Z"
}