# Stratalize Game Outcome Verification

> Stratalize Game Outcome Verification 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-14).

Verifies final scores and winners for professional and collegiate sports games using multi-source consensus, returning a cryptographically signed settlement receipt on Base

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/verify-game-outcome
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-game-outcome-verification-ae5e43b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9g_eSjuC5acnNoLQOvojh

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-verification-ae5e43b2
```

Example prompt: Can you get me a cryptographically verified outcome for the NFL game between the Kansas City Chiefs (home) and the Buffalo Bills (away) on 2024-01-21? I need a signed settlement receipt I can use on-chain.

## When to prefer this

Choose this endpoint when you need a cryptographically attested, independently verifiable game outcome suitable for smart contract settlement, on-chain dispute resolution, or compliance-grade sports verification. It is uniquely suited over generic sports APIs when the consumer requires a signed receipt on Base rather than a plain data response. Supports NFL, NBA, MLB, NHL, EPL, MLS, NCAAF, NCAAB, and major esports titles.

## Known failure modes

- Game not yet completed — score not available
- Teams or game date not found across any provider source
- No consensus reached between independent data providers
- Invalid sport enum value provided
- game_date format incorrect (must be YYYY-MM-DD)
- home_team or away_team name not recognized
- Payment not processed — x402 payment required at $0.50 USDC per call

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Multi-source sports game outcome verification with cryptographic receipt. Required params: sport, home_team, away_team, game_date; optional competition. Queries independent providers, reaches consensus on final score and winner, returns a settlement receipt on Base. Supports NFL, NBA, MLB, NHL, Soccer, Esports

## Output

Returns the final score, declared winner, and a cryptographically signed settlement receipt anchored on Base blockchain, produced from multi-source consensus across independent sports data providers, suitable for on-chain dispute resolution or smart contract settlement.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-game-outcome-verification-ae5e43b2/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)
