# Suverse NHL Standings

> Suverse NHL Standings 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-14).

Returns current NHL team standings from the official NHL API, including wins, losses, points, and division for every team.

## Facts

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

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-standings-c88b3422 -d '<json body>'
```

Example prompt: What are the current NHL standings? Show me every team with their wins, losses, and points grouped by division.

## When to prefer this

Use this endpoint when you need quick, no-auth access to official NHL standings data without managing your own NHL API integration. Ideal for AI agents answering hockey standings questions where per-call micropayment via x402 is acceptable and no API key is available or desired.

## Known failure modes

- NHL upstream API unavailable — proxy returns an error or timeout
- Empty or stale data if NHL API is mid-update during a game night
- Network errors from the proxy layer returning HTTP 5xx
- x402 payment not processed correctly, resulting in 402 response and no data

## How this service works

Current NHL standings from the official NHL web API, no key. Returns each team with wins, losses, points, and division. For AI agents answering hockey standings questions.

## Output

A structured list of all NHL teams with their current wins, losses, points, and division classification, sourced from the official NHL web API in real time.

## 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-standings-c88b3422/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)
