# Fanfare WNBA Schedule

> Fanfare WNBA Schedule is a paid API for AI agents from fanfare-api.fly.dev, 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-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/fanfare-api-fly-dev-f06c6288
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eIkyLSJ2B9_HL12An_xVN

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-api-fly-dev-f06c6288
```

Example prompt: What WNBA games are scheduled for July 15, 2025 — show me the matchups and their current scores or status.

## When to prefer this

Use this endpoint when you need WNBA game schedule data for a specific date, including upcoming games, live scores, or final results. Prefer over generic sports APIs when WNBA-specific structured schedule data is needed with low cost per call.

## Known failure modes

- No games scheduled for the specified date — returns empty list
- Invalid date format — expects YYYY-MM-DD
- Date out of season range — no data available
- Network/server error from fly.dev hosting

## 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 for the requested date, including team matchups, scores (if available), and 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"
    }
   }
  }
 }
}
```

## 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/fanfare-api-fly-dev-f06c6288/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fanfare-api.fly.dev](https://www.zero.xyz/host/fanfare-api.fly.dev/llms.txt)
