# WNBA Active Players List

> WNBA Active Players List 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-15).

Returns a list of all active WNBA players for the current season

## Facts

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

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-0fefdfda
```

Example prompt: Can you pull up a complete list of all active WNBA players right now?

## When to prefer this

Use this endpoint when you need a full enumeration of active WNBA players, for example to populate a dropdown, build a search index, or find a player ID before calling the WNBA player stats endpoint. Prefer this over the WNBA player stats endpoint when you don't yet have a player_id and need to discover one.

## Known failure modes

- Service unavailable (502/503) if the fly.dev instance is sleeping or overloaded
- Empty or stale data if the underlying sports data source hasn't been updated for the current season
- Payment failure if x402 USDC payment of $0.001 is not properly authorized
- No filtering capability — returns all players, not a subset

## How this service works

All active WNBA players.

## Output

A list of all currently active WNBA players, likely including player IDs, names, teams, and positions — suitable for use as a directory or for feeding into player-specific stat lookups.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "_truncated",
  "_originalSize"
 ],
 "properties": {
  "_truncated": {
   "type": "boolean"
  },
  "_originalSize": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mlb-stats-api-fly-dev-0fefdfda/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)
