# DarrylBots World Cup Match Prediction Receipt

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

Returns a paid prediction receipt for a World Cup match outcome using a Kalshi event ticker and a predicted winner (team code or TIE).

## Facts

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

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-match-prediction-receipt-253bf0f6
```

Example prompt: Submit a World Cup prediction receipt for Kalshi event ticker SOCCER-WORLDCUP-2026-COL-POR with my predicted winner as COL.

## When to prefer this

Use this endpoint when an agent needs to formally record and obtain a receipt for a World Cup match prediction tied to a specific Kalshi event ticker. Prefer this over general prediction logging when you need a paid, verifiable receipt artifact for a specific Kalshi World Cup event and a discrete winner prediction (team code or TIE).

## Known failure modes

- Missing required query params (event_ticker or prediction) returns an error
- Invalid prediction value (not a valid team code or TIE) may return a validation error
- Invalid or expired Kalshi event ticker returns an error
- Payment failure via x402 protocol results in no receipt being issued
- Service unavailability returns a 5xx 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 paid receipt confirming the prediction submitted, including the Kalshi event ticker, predicted winner option (e.g. COL, POR, or TIE), and confirmation metadata. No payout, prize, or refund is included — this is purely a receipt artifact.

## 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,
  "prediction": {
   "accepted": true,
   "prediction": "POR",
   "event_ticker": "KXWCGAME-26JUN27COLPOR"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/darrylbots-world-cup-match-prediction-receipt-253bf0f6/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)
