# x402-factory US Politics Prediction Markets Board

> x402-factory US Politics Prediction Markets Board is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns a ranked board of the most active US politics prediction markets with live blended probabilities, 24h volume, resolution dates, and slugs for drill-down in a single call.

## Facts

- Endpoint: GET https://x402-factory.com/v1/board/politics-us
- Price: $0.03/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-prediction-markets-board-636824d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Smzjj-RPFPP4tC5_tV2Fq

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-prediction-markets-board-636824d8
```

Example prompt: Pull up the top 20 most active US politics prediction markets right now — I want to see live probabilities, 24-hour volumes, and resolution dates all in one shot.

## When to prefer this

Use this endpoint when you need a broad, ranked overview of the entire US politics prediction market landscape in a single call — ideal for dashboards, briefings, or monitoring agents that need blended live probabilities across many markets at once. Prefer this over per-market drill-down endpoints when you don't yet know which specific markets to query. Choose this over the 'biggest moves' endpoint when you want current standing probabilities and volume rather than recent probability velocity.

## Known failure modes

- Payment not included or invalid x402 USDC payment → 402 Payment Required
- limit parameter out of range (below 1 or above 50) → 400 Bad Request / validation error
- Upstream prediction market data temporarily unavailable → 503 or degraded/stale data
- Rate limiting if called too frequently without valid payment → 429 Too Many Requests

## How this service works

All active US politics markets with live probabilities in one call — One-call board of the most active US politics prediction markets: top markets by volume with blended live probabilities, resolution dates, and per-market slugs for drill-down. The bulk read for agents tracking the state of US politics at a glance.

## Output

A JSON object containing a 'data' field with a category label ('politics-us') and an array of market objects, each with a slug (for drill-down), the market question, blended live probability (0–1), 24-hour USD volume, and resolution date. 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": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 50,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "category",
        "markets"
       ],
       "properties": {
        "markets": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "slug",
           "question",
           "probability",
           "volume_24h_usd",
           "resolution_date"
          ],
          "properties": {
           "slug": {
            "type": "string"
           },
           "question": {
            "type": "string"
           },
           "probability": {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           "volume_24h_usd": {
            "type": "number"
           },
           "resolution_date": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        },
        "category": {
         "type": "string"
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "markets": [
    {
     "slug": "republican-wins-presidency-2028",
     "question": "Will the Republican candidate win the 2028 US presidential election?",
     "probability": 0.5049,
     "volume_24h_usd": 1227140.61,
     "resolution_date": "2028-11-07"
    },
    {
     "slug": "republicans-hold-house-midterms-2026-11",
     "question": "Will Republicans hold the House in the 2026 midterms?",
     "probability": 0.5818,
     "volume_24h_usd": 426031.65,
     "resolution_date": "2026-11-04"
    },
    {
     "slug": "democrats-win-senate-midterms-2026-11",
     "question": "Will Democrats win Senate control in the 2026 midterms?",
     "probability": 0.2976,
     "volume_24h_usd": 285766.57,
     "resolution_date": "2026-11-04"
    },
    {
     "slug": "venezuela-opposition-wins-election-2026-12",
     "question": "Will the opposition candidate win Venezuela's December election?",
     "probability": 0.4304,
     "volume_24h_usd": 222946.41,
     "resolution_date": "2026-12-06"
    },
    {
     "slug": "us-government-shutdown-2026-10",
     "question": "Will the US government shut down on October 1?",
     "probability": 0.2747,
     "volume_24h_usd": 139147.66,
     "resolution_date": "2026-10-01"
    },
    {
     "slug": "nyc-mayor-incumbent-wins-2026-11",
     "question": "Will the incumbent win the NYC mayoral election?",
     "probability": 0.6494,
     "volume_24h_usd": 101572.4,
     "resolution_date": "2026-11-03"
    },
    {
     "slug": "government-shutdown-october-2026",
     "question": "Will there be a US government shutdown at the October 2026 funding deadline?",
     "probability": 0.2573,
     "volume_24h_usd": 94727.5,
     "resolution_date": "2026-10-01"
    }
   ],
   "category": "politics-us"
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.board.politics-us",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/board/politics-us",
   "data_mode": "live",
   "freshness": "realtime",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.081Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-us-politics-prediction-markets-board-636824d8/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)
