# Fanfare NBA Standings

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

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

## Facts

- Endpoint: GET https://fanfare.run/nba/standings
- Price: $0.001/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-4561a7c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aU94zXr7Ju-I6-44llB3N

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-4561a7c7
```

Example prompt: What are the current NBA standings for both conferences — show me wins, losses, win percentage, and where each team ranks?

## When to prefer this

Use this endpoint when you need a quick, structured snapshot of current NBA conference standings for all 30 teams without needing play-by-play or game-level detail. Ideal for building leaderboards, answering 'who's in first?' questions, or generating playoff race summaries.

## Known failure modes

- Service unavailable or timeout if upstream data source is down
- Stale standings if data has not been updated recently
- Payment failure if x402 USDC payment of $0.001 is not properly authorized
- Empty or partial data if standings have not yet been populated at the start of a season

## How this service works

Current NBA standings by conference — wins, losses, win percentage, and conference rank for all 30 teams.

## Output

Returns a structured list of all 30 NBA teams organized by conference, each entry containing the team name, wins, losses, win percentage, and conference rank — reflecting the current live standings for the season.

## 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-4561a7c7/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)
