# jurat.dev Live Sports Scoreboard

> jurat.dev Live Sports Scoreboard is a paid API for AI agents from jurat.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a normalized live scoreboard for a specified league, including all current events with state, completion status, and scores across 24 leagues.

## Facts

- Endpoint: GET https://jurat.dev/v1/scores
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jurat-dev-live-sports-scoreboard-467f9003
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BkyGRWbdoU5N0_yOK3aU5

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 jurat-dev-live-sports-scoreboard-467f9003
```

Example prompt: What are the live scores for today's Premier League matches?

## When to prefer this

When you need normalized, cross-league live or same-day sports scores in a single consistent schema — especially for less-common leagues like SA Premiership, IPL, Big Bash, or rugby competitions that many sports APIs don't cover. Preferred over generic sports APIs when you need a uniform response format across 24 leagues.

## Known failure modes

- Unknown or unsupported league identifier returns an error or empty result
- Invalid date format returns a validation error
- No games scheduled for the league on the given date returns an empty event list
- Network or upstream data source outage may return stale or no data

## How this service works

Normalized scoreboard of fixtures across 24 leagues (US majors, top soccer leagues, the South African Premiership, UFC, 8 rugby competitions, IPL and Big Bash cricket): every fixture with its state, completion flag and score, from one call.

## Output

A normalized list of all events for the requested league on the given date (or today by default), each with team names, current score, event state (e.g. in-progress, scheduled, final), and a completion flag.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "league"
     ],
     "properties": {
      "date": {
       "type": "string"
      },
      "league": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "events": [
   {
    "away": {
     "score": 3,
     "abbrev": "CHW"
    },
    "home": {
     "score": 0,
     "abbrev": "TOR"
    },
    "event_id": "401816171",
    "completed": true,
    "short_name": "CHW @ TOR"
   }
  ],
  "league": "mlb"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jurat-dev-live-sports-scoreboard-467f9003/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jurat.dev](https://www.zero.xyz/host/jurat.dev/llms.txt)
