# Suverse ESPN Scoreboard

> Suverse ESPN Scoreboard is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-14).

Returns live scoreboards for any ESPN-covered sport and league, including fixtures, scores, clock state, venue details, and competitor records.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-espn-scoreboard
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-espn-scoreboard-704eadbd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UMqFdN2xYbB-PNKpgozun

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-espn-scoreboard-704eadbd -d '<json body>'
```

Example prompt: Pull the live scoreboard for the English Premier League right now — I want current scores, fixture status, and venue info for today's matches.

## When to prefer this

Use this endpoint when you need real-time or near-real-time scoreboard data for any ESPN-covered sport and league without managing API keys. It's ideal for agents that need live match scores, clock state, and competitor records across a wide range of leagues (soccer, basketball, NFL, etc.) in a single keyless call. Prefer this over scraping ESPN directly or managing OAuth credentials.

## Known failure modes

- Invalid sport/league combination returns an error or empty fixtures list
- Network timeout if ESPN upstream is slow or unavailable
- Malformed POST body causes a 400 bad request
- Payment failure (x402) if USDC balance is insufficient
- Stale or delayed data if ESPN feed lags

## How this service works

Live scoreboard for any ESPN-covered league: fixtures, scores, clock state, venue and competitor records. Pass sport and league, e.g. soccer/eng.1 or basketball/nba. Keyless.

## Output

A structured scoreboard object containing all current fixtures for the requested league, including home and away competitors with their records, current score, game clock state, venue information, and match status (scheduled, in-progress, final).

## 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-espn-scoreboard-704eadbd/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)
