# x402-factory Economics Prediction Markets Board

> x402-factory Economics 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 single-call snapshot of the most active economics prediction markets with live blended probabilities, resolution dates, and per-market slugs.

## Facts

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

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-prediction-markets-board-0eaea361
```

Example prompt: Pull the top 20 active economics prediction markets right now — show me their live probabilities, resolution dates, and slugs so I can see the full board at a glance.

## When to prefer this

Use this endpoint when you need a broad, at-a-glance view of the entire economics prediction market landscape in a single call, rather than drilling into a specific market. Prefer it over individual market endpoints when monitoring macro conditions, building dashboards, or doing initial discovery before selecting specific markets to track.

## Known failure modes

- Payment failure if USDC balance is insufficient (HTTP 402)
- limit parameter out of range 1-50 returns validation error
- Stale probabilities if upstream market data feed is delayed
- Empty result set if no economics markets are currently active

## How this service works

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

## Output

A ranked list of up to 50 active economics prediction markets, each including the market name, a live blended probability, a resolution date, a per-market slug for drill-down queries, and volume-based ranking metadata.

## 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-economics-prediction-markets-board-0eaea361/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)
