# Darrylbots World Cup Prediction Validator

> Darrylbots World Cup Prediction Validator is a paid API for AI agents from darrylbots.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Validates a World Cup match prediction against Kalshi public market and milestone data, returning a receipt-style validation result for agents.

## Facts

- Endpoint: GET https://darrylbots.com/api/world-cup-validator
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/darrylbots-world-cup-prediction-validator-be7ab80a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w2qNnPqeYZi635s7j7TOM

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 darrylbots-world-cup-prediction-validator-be7ab80a
```

Example prompt: Validate my World Cup prediction — I'm picking COL to win the match with event ticker FIFAWC-2026-COLPOR, and I want to check it against Kalshi market data.

## When to prefer this

Use this endpoint when an AI agent needs to validate a specific World Cup match prediction against real Kalshi public market data and milestone information. Prefer this over generic sports APIs when you want a structured, paid validation receipt tied to Kalshi event tickers and when no payout or prize mechanism is needed — purely for informational validation purposes.

## Known failure modes

- Missing required query params (event_ticker or prediction) returns an error
- Invalid or unrecognized Kalshi event ticker returns no match or error
- Invalid prediction value (not a recognized team code or TIE) may return validation failure
- Payment failure (x402 micropayment not completed) results in 402 response and no data returned
- Network timeout or Kalshi data unavailability may cause delayed or failed response

## How this service works

High-touch consulting for personal AI fleets: humanoid robots, LifeOps assistants, WealthOps bots, and secure digital-physical automation for homes and executives.

## Output

A validation receipt indicating whether the submitted prediction (e.g. COL, POR, TIE) aligns with Kalshi public market and milestone data for the specified event ticker. No payout or prize is associated with the result.

## 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": [
      "event_ticker",
      "prediction"
     ],
     "properties": {
      "run_id": {
       "type": "string"
      },
      "agent_id": {
       "type": "string"
      },
      "server_id": {
       "type": "string"
      },
      "wallet_id": {
       "type": "string"
      },
      "prediction": {
       "type": "string",
       "description": "Predicted winner option, e.g. COL, POR, or TIE."
      },
      "event_ticker": {
       "type": "string",
       "description": "Kalshi World Cup game event ticker."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "purchased": true,
  "validation": {
   "status": "pending",
   "correct": null,
   "prediction": "POR",
   "event_ticker": "KXWCGAME-26JUN27COLPOR"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/darrylbots-world-cup-prediction-validator-be7ab80a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from darrylbots.com](https://www.zero.xyz/host/darrylbots.com/llms.txt)
