# x402-factory Federal Reserve Markets Board

> x402-factory Federal Reserve 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-13).

Returns all active Federal Reserve prediction markets in a single call, with live probabilities, 24h volume, resolution dates, and slugs for drill-down.

## Facts

- Endpoint: GET https://x402-factory.com/v1/board/fed
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-federal-reserve-markets-board-89f9d568
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MV0Zq1v0pecOPHNV4MDAr

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-federal-reserve-markets-board-89f9d568
```

Example prompt: Pull up the full Federal Reserve prediction market board right now — I want to see all active Fed markets with their live probabilities, 24-hour volume, and resolution dates in one shot.

## When to prefer this

Use this endpoint when you need a comprehensive, single-call snapshot of all active Federal Reserve prediction markets — especially for dashboards, macro monitoring agents, or pre-FOMC briefings. Prefer this over drill-down endpoints when you need breadth across all Fed markets rather than depth on one specific market.

## Known failure modes

- Invalid limit parameter (outside 1–50 range) returns a validation error
- Payment not processed (x402 payment required) returns a 402 response
- Upstream prediction market data unavailable may return empty markets array or error
- Rate limiting if called too frequently without valid payment

## How this service works

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

## Output

A structured JSON response containing a list of active Federal Reserve prediction markets, each with a unique slug, the market question text, a blended live probability (0–1), 24-hour volume in USD, and resolution date. Also includes a category label and meta information about the response.

## 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
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "category",
        "markets"
       ],
       "properties": {
        "markets": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "slug",
           "question",
           "probability",
           "volume_24h_usd",
           "resolution_date"
          ],
          "properties": {
           "slug": {
            "type": "string"
           },
           "question": {
            "type": "string"
           },
           "probability": {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           "volume_24h_usd": {
            "type": "number"
           },
           "resolution_date": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        },
        "category": {
         "type": "string"
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "markets": [
    {
     "slug": "fed-rate-cut-2026-09",
     "question": "Will the Fed cut rates at the September 2026 FOMC meeting?",
     "probability": 0.7301,
     "volume_24h_usd": 454184.6,
     "resolution_date": "2026-09-16"
    },
    {
     "slug": "fed-hike-september-2026",
     "question": "Will the Fed raise rates at the September 2026 FOMC meeting?",
     "probability": 0.0488,
     "volume_24h_usd": 80940.75,
     "resolution_date": "2026-09-16"
    },
    {
     "slug": "fed-chair-replaced-2026",
     "question": "Will the Fed chair be replaced or step down in 2026?",
     "probability": 0.0783,
     "volume_24h_usd": 54305.26,
     "resolution_date": "2026-12-31"
    },
    {
     "slug": "fomc-dot-plot-median-shift-2026-09",
     "question": "Will the September 2026 FOMC dot plot shift its median rate path?",
     "probability": 0.5666,
     "volume_24h_usd": 21469.26,
     "resolution_date": "2026-09-16"
    }
   ],
   "category": "fed"
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.board.fed",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/board/fed",
   "data_mode": "live",
   "freshness": "realtime",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.080Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-federal-reserve-markets-board-89f9d568/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)
