# WNBA Players Roster

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

## Facts

- Endpoint: GET https://fanfare-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/fanfare-api-fly-dev-fc5a2e90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FamSm7oGPlBwdAkFXujC6

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

Example prompt: Can you give me the full list of active WNBA players this season — I want to see each player's name, position, jersey number, and team?

## When to prefer this

Use this endpoint when you need a comprehensive, current-season roster of all active WNBA players with basic profile info (name, position, jersey, team). Prefer this over player-stats endpoints when you need roster enumeration rather than performance metrics.

## Known failure modes

- Data may be stale if the season roster has not been updated recently
- Returns empty or incomplete list if the WNBA season is in offseason
- HTTP 402 if payment of $0.001 USDC is not provided
- HTTP 500 if the upstream data source is unavailable

## 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, with each player's name, position, jersey number, and team affiliation.

## 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/fanfare-api-fly-dev-fc5a2e90/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)
