# Fanfare WNBA Player Season Stats

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

Returns season stats (points, rebounds, assists) for a WNBA player identified by ESPN player ID.

## Facts

- Endpoint: GET https://fanfare.run/wnba/player/:player_id
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-run-f9eddbf5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vOgOkD6gdIthh8AN8c9TX

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

Example prompt: What are Breanna Stewart's season stats this year — points, rebounds, and assists? Her ESPN player ID is 2529081.

## When to prefer this

Use this endpoint when you need quick, structured season-level stats (points, rebounds, assists) for a specific WNBA player and already have or can resolve their ESPN player ID. Prefer this over general sports APIs when working within the Fanfare ecosystem alongside other WNBA or sports endpoints.

## Known failure modes

- Invalid or unknown ESPN player ID returns a 404 or empty response
- Player not active in current WNBA season returns no stats
- Malformed player_id path parameter results in an error
- Payment failure (x402) if USDC balance insufficient

## How this service works

Season stats for a WNBA player — points, rebounds, and assists. Look up by ESPN player ID.

## Output

Returns season statistics for the specified WNBA player including points, rebounds, and assists for the current season.

## Example request

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

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "player_id"
     ],
     "properties": {
      "player_id": {
       "type": "string",
       "description": "ESPN player ID"
      }
     }
    },
    "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-f9eddbf5/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)
