# NHL Game Schedule

> NHL Game Schedule is a paid API for AI agents from mlb-stats-api.fly.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the NHL game schedule for a given date, defaulting to today if no date is provided.

## Facts

- Endpoint: GET https://mlb-stats-api.fly.dev/nhl/schedule
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mlb-stats-api-fly-dev-e9e14e41
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X1a-Fi4PgMdDESWgrzW4_

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

Example prompt: What NHL games are scheduled for tomorrow, December 20th?

## When to prefer this

Use this endpoint when you need to look up what NHL games are scheduled on a specific date or today. Prefer this over manual searches when building automated sports briefings, notifications, or integrations that need structured game schedule data.

## Known failure modes

- Invalid date format returns an error — must use YYYY-MM-DD
- No games scheduled on the requested date returns an empty schedule
- Date out of season range may return no results
- Service unavailable or timeout from the upstream sports data provider

## How this service works

Returns the NHL game schedule for upcoming or selected dates.

## Output

A list of NHL games scheduled for the requested date, including team matchups, game times, and other schedule details such as game IDs and venues.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "date": "2024-12-20"
  }
 }
}
```

## 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": {
      "date": {
       "type": "string",
       "description": "Game date (YYYY-MM-DD)"
      }
     }
    }
   },
   "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/mlb-stats-api-fly-dev-e9e14e41/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)
