# x402-factory Entertainment Prediction Markets Board

> x402-factory Entertainment 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 entertainment prediction markets with live blended probabilities, 24h volume, resolution dates, and drill-down slugs in a single call.

## Facts

- Endpoint: GET https://x402-factory.com/v1/board/entertainment
- 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-entertainment-prediction-markets-board-7f627af0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CCcpKpLxmrbnLfr6Tqqw0

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-entertainment-prediction-markets-board-7f627af0
```

Example prompt: Pull up the top 20 active entertainment prediction markets right now — I want to see which questions are being traded the most, their current probabilities, and when they resolve.

## When to prefer this

Choose this endpoint when you need a bulk, single-call snapshot of the entire entertainment prediction market landscape — especially useful for dashboards, agents monitoring market-wide trends, or any workflow that needs to scan many markets at once before drilling into specifics. Prefer this over per-market endpoints when you don't know which specific markets exist yet or want to rank by volume.

## Known failure modes

- Invalid limit parameter (outside 1–50 range) returns a validation error
- No active entertainment markets available may return an empty markets array
- Payment failure (insufficient USDC or x402 protocol error) blocks the call
- Upstream prediction market data latency may cause stale probabilities
- Network timeout if the aggregation layer is slow

## How this service works

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

## Output

Returns a JSON object containing a list of active entertainment prediction market entries (up to the requested limit), each with: a unique slug for drill-down, the question text, a blended live probability (0–1), 24-hour USD trading volume, and a resolution date. Also includes a category label and metadata object.

## 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": "gta-vi-releases-before-thanksgiving-2026-11",
     "question": "Will GTA VI release before Thanksgiving?",
     "probability": 0.7276,
     "volume_24h_usd": 384434.34,
     "resolution_date": "2026-11-26"
    },
    {
     "slug": "taylor-swift-2027-tour-announce-2026-08",
     "question": "Will Taylor Swift announce a 2027 stadium tour by August 31?",
     "probability": 0.3763,
     "volume_24h_usd": 69038.47,
     "resolution_date": "2026-08-31"
    },
    {
     "slug": "another-billion-dollar-film-2026-12",
     "question": "Will another 2026 film cross $1B worldwide by December 31?",
     "probability": 0.5542,
     "volume_24h_usd": 37751.88,
     "resolution_date": "2026-12-31"
    },
    {
     "slug": "time-person-of-the-year-ai-figure-2026",
     "question": "Will TIME's 2026 Person of the Year be an AI industry figure?",
     "probability": 0.1734,
     "volume_24h_usd": 18553.04,
     "resolution_date": "2026-12-15"
    },
    {
     "slug": "best-picture-favorite-wins-2027",
     "question": "Will the awards-season favorite win Best Picture at the 2027 Oscars?",
     "probability": 0.4482,
     "volume_24h_usd": 16474.28,
     "resolution_date": "2027-03-14"
    }
   ],
   "category": "entertainment"
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.board.entertainment",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/board/entertainment",
   "data_mode": "live",
   "freshness": "realtime",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.080Z"
  }
 }
}
```

## More

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