# Fanfare WNBA Teams List

> Fanfare WNBA Teams List 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 WNBA teams with their IDs, city names, abbreviations, and conference affiliations for use in further queries.

## Facts

- Endpoint: GET https://fanfare-api.fly.dev/wnba/teams
- 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-6a0676ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KgHuHMxMvmIJ7mocV2Wvb

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-6a0676ad
```

Example prompt: Give me the full list of all WNBA teams — I need their team IDs, city names, abbreviations, and which conference they're in so I can look up schedules and standings.

## When to prefer this

Use this endpoint when you need a complete directory of WNBA teams and their metadata, especially to obtain team IDs required by other Fanfare WNBA endpoints such as schedules and standings. Prefer this over hardcoding team IDs or abbreviations, as it provides the authoritative list for the current season.

## Known failure modes

- Service unavailable on fly.dev — 503 or connection timeout
- Payment not processed — 402 response requiring x402 payment
- Empty or malformed JSON response if data source is stale
- Rate limiting if called excessively without payment

## How this service works

All WNBA teams with ID, city, abbreviation, and conference. Use team IDs to query schedules and standings.

## Output

A list of all WNBA teams, each with a unique team ID, city, team abbreviation, and conference name. These IDs can be used as parameters in other Fanfare endpoints to query schedules and standings.

## 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": [
  "data",
  "sport",
  "errors",
  "league",
  "warnings",
  "request_id",
  "retrieved_at"
 ],
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "id",
     "city",
     "name",
     "record",
     "division",
     "full_name",
     "conference",
     "abbreviation",
     "division_rank",
     "conference_rank"
    ],
    "properties": {
     "id": {
      "type": "string"
     },
     "city": {
      "type": "string"
     },
     "name": {
      "type": "string"
     },
     "record": {
      "type": "null"
     },
     "division": {
      "type": "null"
     },
     "full_name": {
      "type": "string"
     },
     "conference": {
      "type": "null"
     },
     "abbreviation": {
      "type": "string"
     },
     "division_rank": {
      "type": "null"
     },
     "conference_rank": {
      "type": "null"
     }
    }
   }
  },
  "sport": {
   "type": "string"
  },
  "errors": {
   "type": "array",
   "items": {
    "type": "unknown"
   }
  },
  "league": {
   "type": "string"
  },
  "warnings": {
   "type": "array",
   "items": {
    "type": "unknown"
   }
  },
  "request_id": {
   "type": "string"
  },
  "retrieved_at": {
   "type": "string"
  }
 }
}
```

## More

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