# x402-factory Entertainment Market Movers

> x402-factory Entertainment Market Movers is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the biggest probability shifts in entertainment prediction markets over a chosen time window (1h, 6h, or 24h), ranked by absolute change with volume surge ratios.

## Facts

- Endpoint: GET https://x402-factory.com/v1/movers/entertainment
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-entertainment-market-movers-fdb98663
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y6r6ePn_x7gCf8kZIAU3V

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-market-movers-fdb98663
```

Example prompt: Show me the top 20 entertainment prediction markets with the biggest probability swings over the last 6 hours, only include ones with a liquidity score of at least 0.3.

## When to prefer this

Choose this endpoint when you specifically need entertainment-scoped market movers without having to filter a broader dataset yourself. It is pre-filtered to entertainment, saving a category filter step compared to /v1/movers. Prefer this over general movers endpoints when the user's focus is celebrity, film, TV, awards, or pop culture prediction markets.

## Known failure modes

- Invalid window value (not 1h/6h/24h) returns a 400 error
- limit out of range (below 1 or above 50) returns a 400 error
- min_liquidity outside 0–1 returns a 400 error
- Payment not provided or invalid returns a 402 Payment Required
- No movers found in window returns an empty movers array
- Service unavailable returns a 503 with no data

## How this service works

Biggest entertainment probability moves (1h/6h/24h) — The fastest way to see where news is landing in entertainment: active markets ranked by absolute probability change over your chosen window, with volume surge ratios. Same shape as /v1/movers, pre-filtered to entertainment markets.

## Output

A ranked array of entertainment prediction markets sorted by absolute probability change, each including the market slug, question text, current and previous probabilities, delta, volume surge ratio, and category — plus metadata about the query window and results.

## 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
      },
      "window": {
       "enum": [
        "1h",
        "6h",
        "24h"
       ],
       "type": "string",
       "default": "24h"
      },
      "category": {
       "enum": [
        "politics",
        "economics",
        "weather",
        "crypto",
        "sports",
        "science-tech",
        "entertainment"
       ],
       "type": "string"
      },
      "min_liquidity": {
       "type": "number",
       "maximum": 1,
       "minimum": 0,
       "description": "Minimum liquidity_score (0–1)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "movers"
       ],
       "properties": {
        "movers": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "slug",
           "question",
           "p_now",
           "p_prev",
           "delta",
           "volume_surge_ratio",
           "category"
          ],
          "properties": {
           "slug": {
            "type": "string"
           },
           "delta": {
            "type": "number"
           },
           "p_now": {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           "p_prev": {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           "category": {
            "type": "string"
           },
           "question": {
            "type": "string"
           },
           "volume_surge_ratio": {
            "type": "number"
           }
          },
          "additionalProperties": false
         }
        }
       },
       "add
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "movers": [
    {
     "slug": "gta-vi-releases-before-thanksgiving-2026-11",
     "delta": -0.0145,
     "p_now": 0.7276,
     "p_prev": 0.7421,
     "category": "entertainment",
     "question": "Will GTA VI release before Thanksgiving?",
     "volume_surge_ratio": 0.97
    },
    {
     "slug": "taylor-swift-2027-tour-announce-2026-08",
     "delta": -0.0116,
     "p_now": 0.3753,
     "p_prev": 0.3869,
     "category": "entertainment",
     "question": "Will Taylor Swift announce a 2027 stadium tour by August 31?",
     "volume_surge_ratio": 0.99
    },
    {
     "slug": "best-picture-favorite-wins-2027",
     "delta": 0.0086,
     "p_now": 0.4482,
     "p_prev": 0.4396,
     "category": "entertainment",
     "question": "Will the awards-season favorite win Best Picture at the 2027 Oscars?",
     "volume_surge_ratio": 0.9
    },
    {
     "slug": "time-person-of-the-year-ai-figure-2026",
     "delta": 0.0078,
     "p_now": 0.1734,
     "p_prev": 0.1656,
     "category": "entertainment",
     "question": "Will TIME's 2026 Person of the Year be an AI industry figure?",
     "volume_surge_ratio": 1.04
    },
    {
     "slug": "another-billion-dollar-film-2026-12",
     "delta": 0.0034,
     "p_now": 0.5542,
     "p_prev": 0.5508,
     "category": "entertainment",
     "question": "Will another 2026 film cross $1B worldwide by December 31?",
     "volume_surge_ratio": 1.02
    }
   ]
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.movers.entertainment",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/movers/entertainment",
   "data_mode": "live",
   "freshness": "realtime",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.139Z"
  }
 }
}
```

## More

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