Wnba APIwnba.com ↗
Get detailed WNBA team playoff schedules and game scores, including series information and comprehensive game details for all teams. Track playoff matchups, results, and series progression throughout the postseason.
curl -X GET 'https://api.parse.bot/scraper/e8beb0d1-e4f8-467f-b9ab-e8bf63e35638/get_team_playoff_games?team=liberty&season=2025' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace wnba-com-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: WNBA SDK — fetch playoff game scores for a team."""
from parse_apis.wnba_com_api import WNBA, TeamSlug, TeamNotFound
client = WNBA()
# Get all 2025 playoff games for the New York Liberty
liberty = client.team(slug=TeamSlug.LIBERTY)
for game in liberty.playoff_games(season="2025", limit=10):
print(f"{game.date} | {game.away_team.name} ({game.away_team.score}) @ "
f"{game.home_team.name} ({game.home_team.score}) | {game.status} | {game.series_text}")
# Drill into first game details
first_game = liberty.playoff_games(season="2025", limit=1).first()
if first_game:
print(f"\nGame {first_game.game_id}: {first_game.game_label} at {first_game.arena}, {first_game.arena_city}")
# Typed error handling for an invalid team
try:
bad_team = client.team(slug="nonexistent")
bad_team.playoff_games(season="2025", limit=1).first()
except TeamNotFound as exc:
print(f"\nTeam not found: {exc}")
print("\nexercised: team / playoff_games / TeamNotFound")
Retrieve all playoff games for a specific WNBA team in a given season. Returns game scores, series progression, arena details, and final status for each playoff game. Results are returned as a single list covering all rounds the team participated in.
| Param | Type | Description |
|---|---|---|
| team | string | WNBA team slug. |
| season | string | 4-digit season year (e.g. 2025). |
{
"type": "object",
"fields": {
"team": "string",
"games": "array of playoff game objects with scores",
"season": "string",
"total_playoff_games": "integer"
},
"sample": {
"data": {
"team": "liberty",
"games": [
{
"date": "2025-09-14",
"arena": "PHX Arena",
"status": "Final/OT",
"game_id": "1042500131",
"away_team": {
"name": "New York Liberty",
"wins": 1,
"score": 76,
"losses": 0,
"team_id": 1611661313,
"tricode": "NYL"
},
"home_team": {
"name": "Phoenix Mercury",
"wins": 0,
"score": 69,
"losses": 1,
"team_id": 1611661317,
"tricode": "PHX"
},
"arena_city": "Phoenix",
"game_label": "First Round",
"arena_state": "AZ",
"season_type": "Playoffs",
"series_text": "NYL leads 1-0"
}
],
"season": "2025",
"total_playoff_games": 3
},
"status": "success"
}
}About the Wnba API
The Wnba API on Parse exposes 1 endpoint for the publicly available data on wnba.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.