# WNBA Player Season Stats by Player ID

> WNBA Player Season Stats by Player ID is a paid API for AI agents from mlb-stats-api.fly.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns season statistics for a WNBA player given their ESPN player ID.

## Facts

- Endpoint: GET https://mlb-stats-api.fly.dev/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/mlb-stats-api-fly-dev-dd4e0a62
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EoxMNMzTDnWZMbdS7aAcJ

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 mlb-stats-api-fly-dev-dd4e0a62
```

Example prompt: What are A'ja Wilson's season stats this year? Her ESPN player ID is 3149391.

## When to prefer this

Use this endpoint when you need season-level statistics for a specific WNBA player and already have (or can look up) the ESPN player ID. Prefer this over general sports APIs when the user is asking about WNBA specifically and needs quick, per-player stat retrieval rather than team-level or standings data.

## Known failure modes

- Invalid or unknown player_id returns an error or empty response
- Player ID that belongs to a non-WNBA player returns no results
- Network or upstream ESPN data unavailability causes a 5xx error
- Missing player_id path parameter results in a 404 or bad request
- Player has no stats recorded yet (e.g. injured all season) may return empty stats object

## How this service works

Season stats for a WNBA player by player_id.

## Output

Returns a JSON object containing season statistics for the specified WNBA player, including metrics such as points per game, rebounds, assists, field goal percentage, and other standard basketball stat categories for the current or most recent season.

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