# x402-factory.com Prediction Market Calendar

> x402-factory.com Prediction Market 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-14).

Returns upcoming prediction market resolutions within a specified time horizon, sorted by resolution date with current blended probabilities per market.

## Facts

- Endpoint: GET https://x402-factory.com/v1/calendar
- 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/x402-factory-com-prediction-market-calendar-e87d12cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UN5gpzNo_FGgaHCdFmsFr

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-com-prediction-market-calendar-e87d12cb
```

Example prompt: What prediction markets are resolving in the next 14 days in the politics category — show me each one sorted by settlement date with their current probabilities.

## When to prefer this

Use this endpoint when you need a time-ordered view of which prediction markets are settling soon and what probabilities they currently carry — ideal for agents that need to monitor market resolution timelines, brief users on upcoming events, or act on markets before they close. Prefer this over individual market lookups when you need a calendar-style sweep across multiple markets.

## Known failure modes

- Invalid days value outside 1–90 range returns validation error
- Invalid category enum value returns 400 bad request
- Payment not accepted or x402 payment failure returns 402
- No markets found for the given category or horizon returns empty list
- Upstream data source unavailable returns 503

## How this service works

Upcoming market resolutions in the next N days with current probabilities — Active markets resolving inside the horizon, sorted by resolution date with the current blended probability. An agent's event calendar: what settles soon and where it stands.

## Output

A list of active prediction markets resolving within the requested time horizon, each with its resolution date, current blended probability, and category — sorted chronologically by settlement date.

## 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
      },
      "segment": {
       "enum": [
        "politics-us",
        "politics-world",
        "economics",
        "fed",
        "crypto",
        "sports-nfl",
        "sports-nba",
        "sports-mlb",
        "sports-soccer",
        "entertainment",
        "climate",
        "science-tech"
       ],
       "type": "string",
       "description": "Wave-1 fine taxonomy (12 segments); overrides category"
      },
      "category": {
       "enum": [
        "politics",
        "economics",
        "weather",
        "crypto",
        "sports",
        "science-tech",
        "entertainment"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-com-prediction-market-calendar-e87d12cb/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)
