# x402-factory Climate & Weather Prediction Market Movers

> x402-factory Climate & Weather Prediction 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-14).

Returns the biggest probability moves in climate and weather prediction markets over a 1h, 6h, or 24h window, ranked by absolute probability change with volume surge ratios.

## Facts

- Endpoint: GET https://x402-factory.com/v1/movers/climate
- 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-climate-weather-prediction-market-movers-e55e15a1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zKlWT6qKcHaw2XADL6a_q

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-climate-weather-prediction-market-movers-e55e15a1
```

Example prompt: Show me the top 15 climate and weather prediction markets with the biggest probability swings over the last 6 hours, only include ones with a liquidity score above 0.4.

## When to prefer this

Choose this endpoint when you need a pre-filtered view of only climate and weather prediction markets by momentum — saves an extra filtering step versus the general /v1/movers endpoint. Ideal for agents monitoring extreme weather events, climate policy shifts, or environmental news impact on prediction markets specifically.

## Known failure modes

- Invalid window value (not 1h/6h/24h) returns a validation error
- limit out of range (below 1 or above 50) causes a schema error
- min_liquidity outside 0–1 range triggers a validation failure
- No markets meeting the liquidity threshold returns an empty list
- Payment failure or insufficient USDC balance returns a 402 error

## How this service works

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

## Output

A ranked list of climate and weather prediction markets sorted by absolute probability change over the chosen window (1h, 6h, or 24h), including probability deltas and volume surge ratios, pre-filtered to climate and weather categories, up to the specified limit.

## 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-climate-weather-prediction-market-movers-e55e15a1/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)
