# Stratalize Game Outcome Resolver

> Stratalize Game Outcome Resolver is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Resolves binary sports game outcomes (home_win, away_win, draw, not_draw) via multi-source consensus with a cryptographically signed settlement receipt verifiable on Base blockchain.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/resolve-game-outcome
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-game-outcome-resolver-939666a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cuxxReqda7d7TuJlzNUMt

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 stratalize-game-outcome-resolver-939666a3
```

Example prompt: Can you resolve whether the Kansas City Chiefs won as the home team against the Buffalo Bills on 2024-01-21 in the NFL — I need the signed settlement receipt for my on-chain prediction market on Base.

## When to prefer this

Use this endpoint when you need a cryptographically signed, independently verifiable boolean resolution of a sports game outcome for autonomous on-chain smart contract or prediction market settlement. It is specifically designed for DeFi and blockchain use cases where trust and auditability matter, covering NFL, NBA, MLB, NHL, Soccer, and Esports. Prefer this over generic sports data APIs when the settlement receipt and Base blockchain verifiability are required.

## Known failure modes

- Game not yet completed — outcome cannot be resolved before match finishes
- Invalid or unrecognized team names causing a lookup failure
- Game date does not match any scheduled or completed game for the specified teams
- Unsupported sport/competition combination returns validation error
- Payment not processed (x402 payment required, $0.50 USDC)
- Multi-source consensus unavailable — insufficient data sources to confirm outcome
- Network or upstream data provider outage

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Binary prediction market resolver for sports outcomes. Evaluates home_win, away_win, draw, or not_draw conditions via multi-source consensus. Returns boolean resolution with a settlement receipt verifiable on Base, designed for autonomous on-chain settlement. Supports NFL, NBA, MLB, NHL, Soccer, Esports. $0.50

## Output

A boolean indicating whether the specified resolve_for condition (home_win, away_win, draw, or not_draw) was true for the given game, accompanied by a signed settlement receipt that is independently verifiable on Base blockchain via trust.stratalize.com/verify.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sport": {
   "enum": [
    "americanfootball_nfl",
    "basketball_nba",
    "baseball_mlb",
    "icehockey_nhl",
    "soccer_epl",
    "soccer_mls",
    "americanfootball_ncaaf",
    "basketball_ncaab",
    "esports_lol",
    "esports_cs2",
    "tennis_atp"
   ],
   "type": "string",
   "description": "Request parameter: sport"
  },
  "away_team": {
   "type": "string",
   "maxLength": 100,
   "minLength": 2,
   "description": "Request parameter: away team"
  },
  "game_date": {
   "type": "string",
   "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
   "description": "Request parameter: game date"
  },
  "home_team": {
   "type": "string",
   "maxLength": 100,
   "minLength": 2,
   "description": "Request parameter: home team"
  },
  "competition": {
   "type": "string",
   "maxLength": 100,
   "description": "Request parameter: competition"
  },
  "resolve_for": {
   "enum": [
    "home_win",
    "away_win",
    "draw",
    "not_draw"
   ],
   "type": "string",
   "description": "Request parameter: resolve for"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-game-outcome-resolver-939666a3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
