# x402-factory Federal Reserve Event Calendar

> x402-factory Federal Reserve Event Calendar is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns upcoming Federal Reserve market resolution events in date order with current blended probabilities, pre-filtered to Fed-specific markets.

## Facts

- Endpoint: GET https://x402-factory.com/v1/calendar/fed
- Price: $0.01/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-event-calendar-3a4aaf94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iIqXy4Hz3_rzK43sgUucO

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-event-calendar-3a4aaf94
```

Example prompt: Can you pull up the Federal Reserve event calendar for the next 30 days and show me which Fed decisions are coming up with their current market probabilities?

## When to prefer this

Use this endpoint when you specifically need Federal Reserve policy-related prediction market events and probabilities without having to filter a broader calendar. It is the fastest single call for Fed-specific forward market data. Prefer this over the general /v1/calendar endpoint when your use case is focused on monetary policy, FOMC decisions, or Fed rate movements, and you want clean, pre-filtered results.

## Known failure modes

- days parameter out of range (must be 1–90) returns a validation error
- No Fed events found in the requested window returns an empty events array
- Invalid category enum value returns a bad request error
- Payment not fulfilled (x402 payment required error if USDC payment fails)
- Service unavailability returns a 5xx error

## How this service works

Upcoming Federal Reserve event resolutions — Upcoming Federal Reserve market resolutions in date order with current blended probabilities — the forward calendar of Federal Reserve events an agent can position around. Same shape as /v1/calendar, pre-filtered to Federal Reserve markets.

## Output

Returns an array of upcoming Federal Reserve market events, each containing a slug identifier, the resolution question text, a resolution date, the current blended probability (0–1), and a category label — sorted chronologically. Also includes response 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": {
      "days": {
       "type": "integer",
       "default": 14,
       "maximum": 90,
       "minimum": 1
      },
      "category": {
       "enum": [
        "politics",
        "economics",
        "weather",
        "crypto",
        "sports",
        "science-tech",
        "entertainment"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "events"
       ],
       "properties": {
        "events": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "slug",
           "question",
           "resolution_date",
           "current_p",
           "category"
          ],
          "properties": {
           "slug": {
            "type": "string"
           },
           "category": {
            "type": "string"
           },
           "question": {
            "type": "string"
           },
           "current_p": {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           "resolution_date": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "events": []
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.calendar.fed",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/calendar/fed",
   "data_mode": "live",
   "freshness": "hourly",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.082Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-federal-reserve-event-calendar-3a4aaf94/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)
