# Fanfare NHL Player Profile & Season Stats

> Fanfare NHL Player Profile & 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-13).

Returns NHL player profile information and current season statistics (goals, assists, plus/minus) for a given player ID.

## Facts

- Endpoint: GET https://fanfare.run/nhl/player/:player_id
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fanfare-run-20d708c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3J1c0v-fg86eJpAQRkP1w

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-20d708c2
```

Example prompt: What are Connor McDavid's current season stats — goals, assists, and plus/minus? His player ID is 8478402.

## When to prefer this

Use this endpoint when you need individual NHL player profile data and season statistics (goals, assists, plus/minus) by player ID. Ideal for building player comparison tools, fantasy hockey assistants, or fan-facing apps needing per-player NHL data.

## Known failure modes

- Invalid or nonexistent player ID returns an error or empty response
- Player ID for a retired or inactive player may return no current season stats
- Malformed player_id path parameter returns a 400 or 404 error
- Payment failure (x402) if USDC balance is insufficient

## How this service works

NHL player profile and season stats by player ID — goals, assists, and plus/minus. Example: 8478402 = Connor McDavid.

## Output

Returns an NHL player's profile information along with their current season statistics including goals scored, assists, and plus/minus rating.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "player_id": "8477933"
  }
 }
}
```

## 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": "NHL 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-20d708c2/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)
