# x402-factory US Politics Event Calendar

> x402-factory US Politics Event 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 US politics prediction market events in chronological order with current blended probabilities, filtered to the politics-us category.

## Facts

- Endpoint: GET https://x402-factory.com/v1/calendar/politics-us
- 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-us-politics-event-calendar-79dc44a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1_JJW3x7_wz5J5a4mBczB

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-us-politics-event-calendar-79dc44a9
```

Example prompt: Pull the upcoming US politics prediction market calendar for the next 30 days — I want to see each question, its resolution date, and the current blended probability so I can see what political events markets are pricing in.

## When to prefer this

Use this endpoint when you specifically need US politics prediction market events in date order — it is pre-filtered to the politics-us category, saving the caller from applying a category filter manually. Prefer it over the generic /v1/calendar endpoint when the user's scope is explicitly US political events. If you need probability momentum or fast-moving markets, use the sibling 'biggest moves' endpoint instead.

## Known failure modes

- days parameter out of range (must be 1–90) returns validation error
- no events found for the requested horizon returns empty events array
- payment not processed or x402 auth failure blocks access
- service downtime returns 5xx error

## How this service works

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

## Output

A chronologically ordered array of US politics prediction market events, each containing a slug identifier, the question text, resolution date, current blended probability (0–1), and category label. Also includes a meta object with response metadata.

## 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": []
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.calendar.politics-us",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/calendar/politics-us",
   "data_mode": "live",
   "freshness": "hourly",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.082Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-us-politics-event-calendar-79dc44a9/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)
