# WNBA — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Sports | **Website:** [www.wnba.com/team/1611661313/new-york-liberty](https://www.wnba.com/team/1611661313/new-york-liberty) | **Docs:** [parse.bot/marketplace/bfa8b400-59d8-4357-8356-8dbe2f79037b/wnba-com-api](https://parse.bot/marketplace/bfa8b400-59d8-4357-8356-8dbe2f79037b/wnba-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-wnba-com-api-bfa8b400/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_team_playoff_games

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `season` | string | No | 4-digit season year (e.g. 2025). |
| `team` | string | No | WNBA team slug. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wnba-com-api-bfa8b400/get_team_playoff_games \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"season":"<string>","team":"<string>"}'
```
