# Jurat Live Sports Scores API

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

Returns normalized live scoreboards for 24 sports leagues including US majors, top soccer, SA Premiership, UFC, rugby, and cricket, with event state, completion flags, and scores.

## Facts

- Endpoint: GET https://www.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-live-sports-scores-api-561af2c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4hdbefhM_0NHWUVd4DZtS

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-live-sports-scores-api-561af2c6
```

Example prompt: What are the live scores for the Premier League today? Pull the current scoreboard with game states and any completed matches.

## When to prefer this

Use this endpoint when you need real-time or same-day normalized sports scores across a broad set of leagues (US majors, top soccer, SA Premiership, UFC, rugby competitions, IPL, Big Bash) in a unified format. Prefer this over sport-specific APIs when you want consistent score data across multiple competitions without building separate integrations.

## Known failure modes

- Missing required 'league' query parameter returns an error
- Invalid or unsupported league identifier returns no results or an error
- Payment failure (x402) blocks the response
- Date parameter in wrong format may return unexpected results or errors
- Requesting a league with no scheduled games on the given date returns an empty event list

## How this service works

Normalized live scoreboard for 24 leagues (US majors, top soccer leagues, SA Premiership, UFC, 8 rugby competitions, IPL and Big Bash cricket): every event with state, completion flag and scores.

## Output

A normalized scoreboard listing all events for the requested league, including each event's current score, game state (live/pre/post), and a completion flag indicating whether the match has ended.

## 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"
    }
   }
  }
 }
}
```

## More

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