# WNBA Game Schedule

> WNBA Game Schedule is a paid API for AI agents from mlb-stats-api.fly.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the WNBA game schedule, optionally filtered by a specific date

## Facts

- Endpoint: GET https://mlb-stats-api.fly.dev/wnba/schedule
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mlb-stats-api-fly-dev-4537b6af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ei6RN7HTJwYQ0ZpK6moX2

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mlb-stats-api-fly-dev-4537b6af
```

Example prompt: What WNBA games are scheduled for July 15, 2025?

## When to prefer this

Use this endpoint when you need WNBA-specific game schedule data filtered by date, especially when building sports dashboards, answering fan questions about upcoming Women's basketball games, or automating game-day notifications. Prefer this over generic sports APIs when the WNBA is specifically required.

## Known failure modes

- Invalid date format (not YYYY-MM-DD) returns an error
- No games scheduled on the requested date returns an empty list
- Date outside the WNBA season may return empty results
- Service downtime or upstream data unavailability returns a 5xx error

## How this service works

WNBA game schedule. Optional: date (YYYY-MM-DD).

## Output

A list of WNBA games scheduled for the requested date (or full season schedule if no date provided), including team matchups, game times, and related game metadata.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "date": "2025-07-15"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "date": {
       "type": "string",
       "description": "Game date (YYYY-MM-DD)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data",
  "sport",
  "errors",
  "league",
  "warnings",
  "request_id",
  "retrieved_at"
 ],
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "id",
     "clock",
     "score",
     "sport",
     "venue",
     "league",
     "period",
     "season",
     "status",
     "date_utc",
     "away_team",
     "home_team"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "clock": {
      "type": "null"
     },
     "score": {
      "type": "object",
      "required": [
       "away",
       "home",
       "quarters"
      ],
      "properties": {
       "away": {
        "type": "number"
       },
       "home": {
        "type": "number"
       },
       "quarters": {
        "type": "array",
        "items": {
         "type": "object",
         "required": [
          "away",
          "home",
          "quarter"
         ],
         "properties": {
          "away": {
           "type": "number"
          },
          "home": {
           "type": "number"
          },
          "quarter": {
           "type": "number"
          }
         }
        }
       }
      }
     },
     "sport": {
      "type": "string"
     },
     "venue": {
      "type": "object",
      "required": [
       "city",
       "name",
       "state",
       "surface",
       "roof_type"
      ],
      "properties": {
       "city": {
        "type": "string"
       },
       "name": {
        "type": "string"
       },
       "state": {
        "type": "string"
       },
       "surface": {
        "type": "null"
       },
       "roof_type": {
        "type": "string"
       }
      }
     },
     "league": {
      "type": "string"
     },
     "period": {
      "type": "number"
     },
     "season": {
      "type": "string"
     },
     "status": {
      "type": "string"
     },
     "date_utc": {
      "type": "string"
     },
     "away_team": {
      "type": "object",
      "required": [
       "id",
       "city",
       "name",
       "division",
       "full_name",
       "conference",
       "abbreviation"
      ],
      "properties": {
       "id": {
        "type": "string"
       },
       "city": {
        "type": "string"
       },
       "name": {
        "type": "string"
       },
       "division": {
        "type": "null"
       },
       "full_name": {
        "type": "string"
       },
       "conference": {
        "type": "null"
       },
  
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mlb-stats-api-fly-dev-4537b6af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mlb-stats-api.fly.dev](https://www.zero.xyz/host/mlb-stats-api.fly.dev/llms.txt)
