# Fanfare WNBA Schedule

> Fanfare WNBA Schedule is a paid API for AI agents from fanfare.run, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns WNBA game schedule for a given date, including matchups, scores, and game status.

## Facts

- Endpoint: GET https://fanfare.run/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/fanfare-run-abab1373
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yTmHvVxrntU-JrBHlQA_P

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 fanfare-run-abab1373
```

Example prompt: What WNBA games are scheduled for July 15, 2025, and what are the scores or game statuses?

## When to prefer this

Use this endpoint when you need WNBA-specific game schedule data for a particular date, including live scores and game status. Prefer over generic sports APIs when WNBA is specifically needed and cost-per-call pricing is acceptable.

## Known failure modes

- No games on the requested date returns an empty list
- Invalid date format returns a validation error
- Future dates with no schedule yet may return empty results
- Service unavailable if upstream sports data provider is down

## How this service works

WNBA game schedule for any date — matchups, scores, and game status. Pass a date to find games on a specific day.

## Output

A list of WNBA games on the requested date, including the two competing teams, current or final scores, and the game status (e.g. scheduled, in-progress, final).

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fanfare-run-abab1373/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fanfare.run](https://www.zero.xyz/host/fanfare.run/llms.txt)
