# WNBA Teams List

> WNBA Teams List is a paid API for AI agents from mlb-stats-api.fly.dev, paid per call via x402, $0.001000/call, status unknown (last checked 2026-09-13).

Returns a list of all WNBA teams with identifiers and metadata such as name, abbreviation, city, conference, and division.

## Facts

- Endpoint: GET https://mlb-stats-api.fly.dev/wnba/teams
- Price: $0.001000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mlb-stats-api-fly-dev-cc1b4014
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HB9MxEIQ2x1uhMMpurKGn

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

Example prompt: Can you give me a list of all the WNBA teams, including their names, abbreviations, cities, and which conference and division they're in?

## When to prefer this

Use this endpoint when you need a complete directory of WNBA teams — for example, to populate a dropdown, resolve a team name to an ID before querying player or standings data, or enumerate all teams in the league. Prefer this over manual lookups or broader sports APIs when working specifically in the WNBA domain on the mlb-stats-api platform.

## Known failure modes

- Service unavailable (503) if the fly.dev instance is sleeping or overloaded
- Payment required (402) if x402 payment is not properly attached
- Empty or stale data if the upstream sports data source is not updated

## How this service works

All WNBA teams.

## Output

A list of all WNBA teams, each with fields such as team ID, full name, abbreviation, city, conference, and division.

## 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/mlb-stats-api-fly-dev-cc1b4014/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)
