WNBA Daily Schedule API Documentation
You need an API key to use SportsBlaze. Get access at www.sportsblaze.com.
This endpoint updates every 1 second.
Description
This endpoint returns WNBA schedules by date.
API Endpoint
https://api.sportsblaze.com/wnba/v1/schedule/daily/{date}.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,Playoffs
).
id
The game id (e.g. 0805152b-9fa7-57c2-885f-3a21af6580c7
). Separate multiple ids with a comma (e.g. 0805152b-9fa7-57c2-885f-3a21af6580c7,f062b202-b9c7-5a4b-b42b-13b1f92ece7a
).
team
The away or home team id or name (e.g. cdd7db4a-cea9-5c56-918e-9843da405da2
or Indiana Fever
). Separate multiple teams with a comma (e.g. Indiana Fever,Chicago Sky
).
status
The game status (e.g. Scheduled
or In Progress
). Separate multiple status with a comma (e.g. Scheduled,Final
).
Example URLs
2025-05-17 daily schedule:
https://api.sportsblaze.com/wnba/v1/schedule/daily/2025-05-17.json?key=your_key
Example Response
{
"league": {
"id": "wnba",
"name": "WNBA",
"sport": "Basketball"
},
"games": [
{
"season": {
"year": 2025,
"type": "Regular Season"
},
"id": "0805152b-9fa7-57c2-885f-3a21af6580c7",
"teams": {
"away": {
"id": "d3c711d0-d7a3-5eee-a120-d5cc366b9a9c",
"name": "Chicago Sky"
},
"home": {
"id": "cdd7db4a-cea9-5c56-918e-9843da405da2",
"name": "Indiana Fever"
}
},
"date": "2025-05-17T15:00:00Z",
"status": "Final",
"venue": {
"name": "Gainbridge Fieldhouse",
"location": "Indianapolis, IN"
},
"scores": {
"periods": [
{
"number": 1,
"type": "Regulation",
"away": {
"points": 17
},
"home": {
"points": 22
}
},
{
"number": 2,
"type": "Regulation",
"away": {
"points": 15
},
"home": {
"points": 23
}
},
{
"number": 3,
"type": "Regulation",
"away": {
"points": 13
},
"home": {
"points": 20
}
},
{
"number": 4,
"type": "Regulation",
"away": {
"points": 13
},
"home": {
"points": 28
}
}
],
"total": {
"away": {
"points": 58
},
"home": {
"points": 93
}
}
}
}
],
"updated": "2025-05-19T20:19:20Z"
}