# x402-factory Economics Probability Movers

> x402-factory Economics Probability 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-14).

Returns economics prediction markets ranked by largest absolute probability change over a chosen 1h, 6h, or 24h window, with volume surge ratios.

## Facts

- Endpoint: GET https://x402-factory.com/v1/movers/economics
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-economics-probability-movers-8076aaa2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hEuCwG5Sk3cnFSLO0El5D

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-economics-probability-movers-8076aaa2
```

Example prompt: Show me the top 10 economics prediction markets with the biggest probability swings over the last 6 hours, filtered to only those with a liquidity score above 0.5.

## When to prefer this

Use this endpoint when you specifically need economics-focused prediction market movers without having to filter a broader feed yourself. Prefer this over the generic /v1/movers endpoint when the user's intent is narrowly about economic news, macroeconomic events, or financial policy markets. It is ideal for real-time news-impact monitoring, economic event dashboards, or automated alerts when economic probability shifts exceed a threshold.

## Known failure modes

- Invalid window value (not '1h', '6h', or '24h') returns a validation error
- limit out of range (< 1 or > 50) returns a 400 error
- min_liquidity outside 0–1 range returns a validation error
- No economics markets currently active may return an empty list
- Payment failure or missing x402 payment header returns 402 Payment Required

## How this service works

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

## Output

A ranked list of active economics prediction markets ordered by absolute probability change over the selected window (1h, 6h, or 24h), each entry including the market name, current probability, probability delta, and volume surge ratio relative to baseline. Results are pre-filtered to the economics category and capped at the requested limit (up to 50).

## 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
  }
 }
}
```

## More

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