# Fanfare WNBA Standings

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

Returns current WNBA standings including wins, losses, win percentage, and conference rank for all teams.

## Facts

- Endpoint: GET https://fanfare.run/wnba/standings
- Price: $0.001000/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-394012c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GYYsq9KV8hXRAACwiiEmL

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-394012c0
```

Example prompt: What are the current WNBA standings — show me each team's wins, losses, win percentage, and where they rank in their conference?

## When to prefer this

Use this endpoint when you need a quick, structured snapshot of the current WNBA season standings across all teams. Ideal for answering fan questions about team rankings, playoff positioning, or win-loss records without needing to specify any filtering parameters.

## Known failure modes

- Standings data may be stale if the upstream sports data source hasn't updated after recent games
- No input parameters supported — cannot filter by conference or team
- Returns HTTP 402 if payment via x402 protocol is not properly handled
- Service may be unavailable during maintenance windows

## How this service works

Current WNBA standings with wins, losses, win percentage, and conference rank.

## Output

A list of all WNBA teams with their current season standings data, including number of wins, losses, winning percentage, and conference rank, organized by conference.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fanfare-run-394012c0/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)
