# 2s.io NHL Scores

> 2s.io NHL Scores 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).

Fetches NHL game scores and game states for a given date (or today by default), using the official NHL api-web backend.

## Facts

- Endpoint: GET https://2s.io/api/sports/nhl-scores
- 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-scores-d5f87625
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dB-jglUVajdEZRvjx2tUH

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-scores-d5f87625
```

Example prompt: What are all the NHL scores for January 15, 2025 — which games are final and what were the home and away scores?

## When to prefer this

Use this endpoint when you need quick, keyless, pay-per-call access to official NHL game scores and states for any specific date. Prefer this over scraping or unofficial sources since it proxies the official NHL api-web. Ideal for agents that need real-time or historical NHL scores without managing API keys.

## Known failure modes

- Invalid date format returns an error (must be YYYY-MM-DD)
- No games scheduled for the requested date returns an empty list
- Upstream NHL API outage may result in unavailable data
- Dates far in the future may return only scheduled games with no scores

## How this service works

NHL scores and games for a date (official NHL api-web, free/keyless). Each game: id, game state (FUT/LIVE/FINAL), start time, away and home team + score. Defaults to today.

## Output

A list of NHL games for the requested date, each with game ID, game state (FUT for future, LIVE for in-progress, or FINAL for completed), scheduled start time, away and home team names, and current or final scores for each team.

## 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; defaults to today."
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-nhl-scores-d5f87625/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)
