# Fanfare API – WNBA Player Season Stats

> Fanfare API – WNBA Player Season Stats 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 season stats (points, rebounds, assists) for a WNBA player identified by ESPN player ID.

## Facts

- Endpoint: GET https://fanfare-api.fly.dev/wnba/player/:player_id
- 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-50a974e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xg4wgFI5k-B7jPWlrGPEE

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-50a974e1
```

Example prompt: What are the season stats — points, rebounds, and assists — for WNBA player with ESPN ID 3149391 this season?

## When to prefer this

Use this endpoint when you need season-level WNBA player statistics (points, rebounds, assists) and have the ESPN player ID available. It is purpose-built for WNBA and more focused than general sports data aggregators.

## Known failure modes

- Invalid or unknown ESPN player ID returns a 404 or empty result
- Player not active in current season may return no stats
- Incorrect player_id format may return a 400 error
- Service downtime or rate limiting may return 5xx errors
- Payment failure (x402) if USDC not provided

## How this service works

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

## Output

A JSON object containing the WNBA player's current season statistics including points per game, rebounds per game, and assists per game, keyed by ESPN player ID.

## 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-api-fly-dev-50a974e1/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)
