# World Cup 2026 Fixtures, Results & AI Predictions API

> World Cup 2026 Fixtures, Results & AI Predictions API is a paid API for AI agents from x402-earner.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns live FIFA World Cup 2026 match fixtures, scores, and AI-powered match predictions blending Polymarket prediction-market consensus with a Poisson goals model, filterable by date, team, or match status.

## Facts

- Endpoint: GET https://x402-earner.vercel.app/matches
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/world-cup-2026-fixtures-results-ai-predictions-api-491a5b07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oXuNw8bXyyr_ZfXtCfDb3

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 world-cup-2026-fixtures-results-ai-predictions-api-491a5b07
```

Example prompt: What World Cup 2026 matches are scheduled for June 19, 2026 — show me all the fixtures, scores if available, and any AI predictions for those games.

## When to prefer this

Choose this endpoint when you need live FIFA World Cup 2026 fixture data, real-time scores, or AI match predictions that combine crowd wisdom (Polymarket) with statistical modeling (Poisson). Prefer this over generic sports APIs when you specifically want World Cup 2026 coverage with integrated prediction-market-backed forecasts on a pay-per-call USDC basis.

## Known failure modes

- No matches found for the given date or team filter — returns empty matches array
- Invalid date format returns an error or empty result
- Unknown team name substring returns empty matches array
- Payment failure via x402 protocol prevents access to data
- Service unavailable if upstream Polymarket data or match data feed is down

## How this service works

Live FIFA World Cup 2026 fixtures, results, scores and AI match predictions. Predictions blend live prediction-market consensus (Polymarket — wisdom of the crowds) with a Poisson goals model (data science). Pay-per-call in USDC.

## Output

A JSON object containing a list of World Cup 2026 match records, each with home team, away team, date, time, venue, round, status (FT or NS), home score, away score, and a count of results and season identifier. AI match predictions blending Polymarket crowd consensus and Poisson model may be included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "date": {
   "type": "string",
   "description": "Filter by date YYYY-MM-DD."
  },
  "team": {
   "type": "string",
   "description": "Filter by team name (home or away, case-insensitive substring)."
  },
  "status": {
   "type": "string",
   "description": "Filter by status: FT (finished), NS (not started)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "matches"
 ],
 "properties": {
  "count": {
   "type": "integer"
  },
  "season": {
   "type": "string"
  },
  "matches": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "id": {
      "type": "string"
     },
     "away": {
      "type": "string"
     },
     "date": {
      "type": "string",
      "format": "date"
     },
     "home": {
      "type": "string"
     },
     "time": {
      "type": "string",
      "nullable": true
     },
     "round": {
      "type": "integer",
      "nullable": true
     },
     "venue": {
      "type": "string",
      "nullable": true
     },
     "status": {
      "type": "string",
      "nullable": true
     },
     "awayScore": {
      "type": "integer",
      "nullable": true
     },
     "homeScore": {
      "type": "integer",
      "nullable": true
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/world-cup-2026-fixtures-results-ai-predictions-api-491a5b07/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-earner.vercel.app](https://www.zero.xyz/host/x402-earner.vercel.app/llms.txt)
