# Fanfare NBA Player Season Stats

> Fanfare NBA Player Season Stats 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 season statistics for an NBA player (points, rebounds, assists, and more) looked up by ESPN player ID.

## Facts

- Endpoint: GET https://fanfare.run/nba/player/:player_id
- 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-5eb90e6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_95H8Sj9shwkkpasBhLE0j

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-5eb90e6f
```

Example prompt: What are LeBron James's season stats this year — points, rebounds, assists, the full stat line? His ESPN player ID is 1966.

## When to prefer this

Use this endpoint when you need current NBA season statistics for a specific player and have their ESPN player ID. Ideal for sports apps, fantasy basketball tools, or any agent task requiring individual player performance data.

## Known failure modes

- Invalid or unknown ESPN player ID returns an error or empty result
- Player not active in current season may return no stats
- Incorrect player_id format may result in a 400 or 404 response
- Stats may be unavailable mid-season for newly added players

## How this service works

Season stats for an NBA player — points, rebounds, assists, and more. Look up by ESPN player ID.

## Output

A JSON object containing the NBA player's current season statistics including points, rebounds, assists, and other performance metrics for the season.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "player_id"
     ],
     "properties": {
      "player_id": {
       "type": "string",
       "description": "ESPN player ID"
      }
     }
    },
    "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-5eb90e6f/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)
