# Suverse NHL Scores

> Suverse NHL Scores is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns NHL game scores, team matchups, and game status for a given date from the official NHL web API

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-nhl-scores
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-nhl-scores-f637baa3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PXIeMhSH2hvHn0k9p_Af3

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 suverse-nhl-scores-f637baa3 -d '<json body>'
```

Example prompt: Can you pull today's NHL scores from the official league data — I want all the games, both teams, current scores, and game status?

## When to prefer this

Use this endpoint when you need official NHL game scores and statuses for a specific date without managing your own NHL API credentials. It is ideal for sports briefing agents, hockey dashboards, or any workflow that needs structured NHL game data on demand. Prefer this over scraping sports websites or using unofficial sources when data accuracy and official sourcing matter.

## Known failure modes

- Invalid or missing date parameter returns an error or empty result set
- No games scheduled on the requested date returns an empty games array
- NHL API upstream outage may cause the proxy to return an error or stale data
- Malformed request body causes a 400-level error response

## How this service works

NHL game scores for a date from the official NHL web API, no key. Returns games with teams, scores, and status. For AI agents building hockey briefings.

## Output

A list of NHL games for the requested date, each containing the home and away team names, current or final scores, and game status (e.g. scheduled, in progress, final, overtime). Data is sourced directly from the official NHL web API with no API key required.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-nhl-scores-f637baa3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
