# x402-factory Climate & Weather Prediction Markets Board

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

Returns a ranked board of the most active climate and weather prediction markets with live blended probabilities, resolution dates, and drill-down slugs in a single call.

## Facts

- Endpoint: GET https://x402-factory.com/v1/board/climate
- Price: $0.03/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-climate-weather-prediction-markets-board-b6578699
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Z-LO6Vfnj3SzvtqpnbhMe

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-markets-board-b6578699
```

Example prompt: Pull the current board of active climate and weather prediction markets — give me the top 20 by volume with their live probabilities and resolution dates so I can see where things stand right now.

## When to prefer this

Use this endpoint when you need a broad, ranked overview of all active climate and weather prediction markets in one call, especially for dashboards, monitoring agents, or any workflow that needs bulk market state before drilling into individual markets. Prefer over per-market endpoints when you don't yet know which markets to focus on, or when you want volume-weighted rankings with live probabilities at a glance.

## Known failure modes

- limit parameter out of range (must be 1–50): returns validation error
- payment not processed (x402 payment required): returns 402 Payment Required
- no active climate markets available: may return empty list
- upstream prediction market data unavailable: may return 503 or stale data
- rate limiting or quota exceeded: returns 429

## How this service works

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

## Output

A ranked list of active climate and weather prediction markets (up to the requested limit, default 20, max 50), each including a market slug for drill-down, blended live probability, resolution date, and volume ranking. Designed for a single-call overview of the current state of all climate and weather markets.

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

## More

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