# jurat.dev Final Market Result

> jurat.dev Final Market Result is a paid API for AI agents from jurat.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns the single final/settled result for a sports event, optionally with a notarized ed25519-signed attestation of the source snapshot for market settlement verification.

## Facts

- Endpoint: GET https://jurat.dev/v1/result
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jurat-dev-final-market-result-d6867249
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l8b9YLwsiRiqdiKVyUSxR

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-final-market-result-d6867249
```

Example prompt: Get the final settled result for the Lakers vs Celtics NBA game on May 20 — and include a notarized attestation so I can use it to settle the prediction market.

## When to prefer this

Use this endpoint when you need a definitive, final result for a sports event — especially for settling prediction markets, smart contracts, or disputes where a notarized, tamper-evident proof of outcome is required. Prefer this over the live scoreboard endpoint when the event must be fully concluded. The attest=true option is uniquely valuable when downstream consumers need cryptographic proof of the result, not just the data.

## Known failure modes

- Event not yet final — returns error refusing to attest non-final events
- Unknown league identifier — returns 400 bad request
- No matching event found for the given team/date/event parameters — returns 404
- Event exists but result is ambiguous or disputed — may return error or partial result
- Network timeout fetching source for attestation — returns 503

## How this service works

Single-event FINAL result for market settlement, optionally bundled with a notarized snapshot of the source (attest=true). Refuses to attest non-final events.

## Output

Returns the final, definitive result for the requested sports event including scores and outcome. When attest=true, also returns a notarized snapshot with an ed25519 signature and timestamp proving exactly what the source reported at query time. Refuses to return an attestation if the event is not yet finalized.

## 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"
      },
      "team": {
       "type": "string"
      },
      "event": {
       "type": "string"
      },
      "attest": {
       "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": {
  "away": {
   "score": 3
  },
  "home": {
   "score": 0
  },
  "completed": true,
  "short_name": "CHW @ TOR",
  "attestation": {
   "signed": {
    "sha256": "8b72f71c…"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jurat-dev-final-market-result-d6867249/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)
