# x402-factory World Politics Markets Board

> x402-factory World Politics 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 world politics prediction markets with live probabilities, 24h volume, resolution dates, and per-market slugs in a single call.

## Facts

- Endpoint: GET https://x402-factory.com/v1/board/politics-world
- 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-world-politics-markets-board-fa7357f5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CkfjjYE8VVzW4UOZO6a03

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-world-politics-markets-board-fa7357f5
```

Example prompt: Pull the top 20 most active world politics prediction markets right now — I want live probabilities, 24-hour volume, and resolution dates for each one.

## When to prefer this

Use this endpoint when you need a broad, ranked overview of all active world politics prediction markets in a single call — ideal for dashboards, briefings, or agents monitoring the global political landscape. Prefer it over single-market endpoints when you need bulk data without knowing specific slugs in advance. Use the sibling 'probability moves' endpoint if you want to detect recent momentum shifts rather than a static snapshot.

## Known failure modes

- Invalid 'limit' parameter outside 1–50 range returns a validation error
- Payment failure (insufficient USDC balance or x402 auth issue) returns 402 Payment Required
- Service unavailability returns 5xx with no market data
- Empty array returned if no active world politics markets exist at query time

## How this service works

All active world politics markets with live probabilities in one call — One-call board of the most active world 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 world politics at a glance.

## Output

A JSON object with a 'data' field containing the category label ('world-politics') and an array of markets, each with: slug (for drill-down), question text, probability (0–1), volume_24h_usd, and resolution_date. A 'meta' object accompanies the data with additional context. Markets are ordered by activity/volume.

## 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": "uk-pm-confidence-vote-2026-09",
     "question": "Will the UK Prime Minister face a confidence vote by September 30?",
     "probability": 0.2047,
     "volume_24h_usd": 29223.78,
     "resolution_date": "2026-09-30"
    },
    {
     "slug": "eu-ukraine-accession-talks-2026-10",
     "question": "Will the EU approve opening accession talks with Ukraine by October 31?",
     "probability": 0.1738,
     "volume_24h_usd": 26662.95,
     "resolution_date": "2026-10-31"
    }
   ],
   "category": "politics-world"
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.board.politics-world",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/board/politics-world",
   "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-world-politics-markets-board-fa7357f5/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)
