# x402-factory Soccer Calendar

> x402-factory Soccer Calendar is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns upcoming soccer market resolution events in chronological order with current blended probabilities, pre-filtered to soccer markets.

## Facts

- Endpoint: GET https://x402-factory.com/v1/calendar/sports-soccer
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-soccer-calendar-22e678c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LeqiHLp0ydQuK08qDsrgW

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 x402-factory-soccer-calendar-22e678c7
```

Example prompt: Pull the soccer event resolution calendar for the next 30 days — I want to see all upcoming soccer markets sorted by date with their current probabilities.

## When to prefer this

Use this endpoint when you need a forward-looking, date-ordered list of soccer-specific prediction markets with live blended probabilities. Prefer it over the generic /v1/calendar endpoint when you only care about soccer and want pre-filtered results without adding a category query param. Choose it over sibling sports endpoints (NBA, MLB) specifically for soccer event coverage.

## Known failure modes

- Invalid 'days' parameter (outside 1–90 range) returns a validation error
- Payment not included or insufficient USDC causes 402 Payment Required
- Network timeout if the upstream probability feed is slow
- Empty events array if no soccer markets resolve within the requested window

## How this service works

Upcoming soccer event resolutions — Upcoming soccer market resolutions in date order with current blended probabilities — the forward calendar of soccer events an agent can position around. Same shape as /v1/calendar, pre-filtered to soccer markets.

## Output

A JSON array of upcoming soccer market events, each with a unique slug, a natural-language question, a resolution date, a current blended probability (0–1), and a category label. Events are returned in chronological order by resolution date. A meta object is also included.

## 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": [],
     "properties": {
      "days": {
       "type": "integer",
       "default": 14,
       "maximum": 90,
       "minimum": 1
      },
      "category": {
       "enum": [
        "politics",
        "economics",
        "weather",
        "crypto",
        "sports",
        "science-tech",
        "entertainment"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "events"
       ],
       "properties": {
        "events": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "slug",
           "question",
           "resolution_date",
           "current_p",
           "category"
          ],
          "properties": {
           "slug": {
            "type": "string"
           },
           "category": {
            "type": "string"
           },
           "question": {
            "type": "string"
           },
           "current_p": {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           "resolution_date": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "events": [
    {
     "slug": "european-team-wins-world-cup-2026-07",
     "category": "sports",
     "question": "Will a European team win the 2026 World Cup final?",
     "current_p": 0.5463,
     "resolution_date": "2026-07-19"
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.calendar.sports-soccer",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/calendar/sports-soccer",
   "data_mode": "live",
   "freshness": "hourly",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.083Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-soccer-calendar-22e678c7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
