# Fanfare NBA Players

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

## Facts

- Endpoint: GET https://fanfare.run/nba/players
- 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-6f6ad13e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_82SQC-vQL-BwjtevQHDsu

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

Example prompt: Can you pull up the full list of all active NBA players this season — I want to see each player's name, position, jersey number, and which team they're on?

## When to prefer this

Use this endpoint when you need a comprehensive, current-season list of all active NBA players with their roster details (name, position, jersey number, team). Ideal for building player lookup tables, powering autocomplete, filtering by team or position, or enriching other NBA data. Prefer this over web scraping or static datasets when freshness and accuracy for the current season matter.

## Known failure modes

- Service unavailable or 5xx error if fanfare.run is down
- Payment required (402) if x402 micropayment is not properly handled
- Empty or stale data if season roster has not yet been updated
- Rate limiting if too many calls are made in rapid succession

## How this service works

All active NBA players for the current season — name, position, jersey number, and team.

## Output

A list of all currently active NBA players for the current season, each entry containing the player's name, position (e.g. PG, SG, SF, PF, C), jersey number, and team name.

## 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-6f6ad13e/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)
