# 2s.io NHL Schedule API

> 2s.io NHL Schedule API is a paid API for AI agents from 2s.io, paid per call via x402, $0.0025/call, status unknown (last checked 2026-09-16).

Returns the upcoming NHL game schedule for a week anchored on a given date, with game details including teams, scores, state, type, venue, and TV broadcasts, optionally filtered by team.

## Facts

- Endpoint: GET https://2s.io/api/sports/nhl-schedule
- Price: $0.0025/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-nhl-schedule-api-f509fd96
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XRTaw1WUhVKNMLVLDPtVq

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 2s-io-nhl-schedule-api-f509fd96
```

Example prompt: What does the NHL schedule look like for the week starting 2025-02-10? Only show me Toronto Maple Leafs games.

## When to prefer this

Use this endpoint when you need forward-looking NHL game data for scheduling or planning purposes — specifically when you need a week's worth of games rather than a single day's results. Prefer this over nhl-scores (which covers single-day results) when you want upcoming matchups, broadcast info, or game times across multiple days. Ideal for scheduling agents, sports reminder bots, or weekly preview tools.

## Known failure modes

- Invalid date format returns an error — must be YYYY-MM-DD
- Unknown or misspelled team abbreviation may return empty results or an error
- No games scheduled for the requested week returns an empty list
- Service unavailability from the upstream NHL API may cause failures
- Dates far in the future may return no scheduled games yet

## How this service works

Upcoming NHL game schedule for the week anchored on a date (official NHL api-web, free/keyless). Each game: id, date, start time (UTC), game state (FUT/LIVE/OFF), game type (Preseason/Regular Season/Playoffs), away and home team + abbreviation + score, venue, and TV broadcasts. Optionally filter to one team by 3-letter abbreviation (e.g. TOR). Defaults to the week starting today. Forward-looking matchups for scheduling agents — distinct from nhl-scores (single-day results).

## Output

A list of NHL games for the week anchored on the requested date (or today by default), each containing: game ID, date, UTC start time, game state (FUT/LIVE/OFF), game type (Preseason/Regular Season/Playoffs), away and home team names with abbreviations and current scores, venue name, and TV broadcast channels. If a team abbreviation filter is provided, only that team's games are returned.

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "date": {
       "type": "string",
       "description": "YYYY-MM-DD anchor; returns that day plus the rest of the NHL game week. Defaults to today."
      },
      "team": {
       "type": "string",
       "maxLength": 3,
       "minLength": 2,
       "description": "3-letter NHL team abbreviation to filter to one club (e.g. TOR, BOS, EDM)."
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-nhl-schedule-api-f509fd96/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
