WNBA 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 WNBA team rosters.
API Endpoint
https://api.sportsblaze.com/wnba/v1/rosters/{season}.json
Parameters
key
(required)
Your SportsBlaze API key.
team
The team id or name (e.g. cdd7db4a-cea9-5c56-918e-9843da405da2
or Indiana Fever
). Separate multiple teams with a comma (e.g. Indiana Fever,Las Vegas Aces
).
id
The player id (e.g. 652136d7-d96f-5ea9-a5ed-04013b20312b
). Separate multiple ids with a comma (e.g. 652136d7-d96f-5ea9-a5ed-04013b20312b,e49108a6-2993-58a8-b47d-b88387a472c1
).
name
The player name (e.g. Caitlin Clark
). Separate multiple names with a comma (e.g. Caitlin Clark,Angel Reese
).
position
The player position (e.g. F
). Separate multiple positions with a comma (e.g. F,G
).
Example URLs
2025 team rosters:
https://api.sportsblaze.com/wnba/v1/rosters/2025.json?key=your_key
2025 team rosters, Indiana Fever team:
https://api.sportsblaze.com/wnba/v1/rosters/2025.json?key=your_key&team=Indiana%20Fever
2025 team rosters, Indiana Fever & Chicago Sky teams, G & F positions:
https://api.sportsblaze.com/wnba/v1/rosters/2025.json?key=your_key&team=Indiana%20Fever,Chicago%20Sky&position=G,F
Example Response
{
"league": {
"id": "wnba",
"name": "WNBA",
"sport": "Basketball"
},
"season": {
"year": 2025
},
"teams": [
{
"id": "d3c711d0-d7a3-5eee-a120-d5cc366b9a9c",
"name": "Chicago Sky",
"roster": [
{
"id": "e49108a6-2993-58a8-b47d-b88387a472c1",
"name": "Angel Reese",
"first": "Angel",
"last": "Reese",
"position": "F",
"number": "5",
"birthdate": "2002-05-06",
"age": 23,
"height": 75,
"weight": 165,
"headshot": "https://cdn.wnba.com/headshots/wnba/latest/1040x760/1642291.png"
}
]
},
{
"id": "cdd7db4a-cea9-5c56-918e-9843da405da2",
"name": "Indiana Fever",
"roster": [
{
"id": "652136d7-d96f-5ea9-a5ed-04013b20312b",
"name": "Caitlin Clark",
"first": "Caitlin",
"last": "Clark",
"position": "G",
"number": "22",
"birthdate": "2002-01-22",
"age": 23,
"height": 72,
"weight": 157,
"headshot": "https://cdn.wnba.com/headshots/wnba/latest/1040x760/1642286.png"
}
]
}
],
"updated": "2025-05-20T18:56:26Z"
}