# Fanfare WNBA Players Roster

> Fanfare WNBA Players Roster 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 all active WNBA players for the current season, including name, position, jersey number, and team.

## Facts

- Endpoint: GET https://fanfare.run/wnba/players
- 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-f78de92a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zs9rDnK1NKbBDWspTi7yh

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-f78de92a
```

Example prompt: Can you pull up the full list of active WNBA players for this season — I want to see their names, positions, jersey numbers, and teams?

## When to prefer this

Use this endpoint when you need a comprehensive, current list of all active WNBA players with basic roster metadata. Ideal for building player lookup tools, populating dropdowns, cross-referencing players with stats or schedules, or answering questions about who plays for which WNBA team. Prefer this over manual searches or generic sports APIs when you need structured, machine-readable WNBA roster data at low cost.

## Known failure modes

- Off-season or no active season: may return empty list or error if no current season data is available
- Network/service errors: standard HTTP 4xx/5xx responses if the service is unavailable
- Stale data: roster may lag real-time transactions like trades or signings mid-season

## How this service works

All active WNBA players for the current season — name, position, jersey number, and team.

## Output

A list of all active WNBA players for the current season, each with their full name, position (e.g. guard, forward, center), jersey number, and team name.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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": {}
    }
   },
   "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-f78de92a/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)
