# x402stock FOMC Calendar API

> x402stock FOMC Calendar API is a paid API for AI agents from x402stock.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns the complete Federal Reserve FOMC meeting calendar with past, upcoming, and next meeting dates including days until/since each meeting.

## Facts

- Endpoint: GET https://x402stock.xyz/api/v1/calendar/fomc
- 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/x402stock-fomc-calendar-api-f109b70c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qm7f04ZusYuvSQgNbyHYU

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 x402stock-fomc-calendar-api-f109b70c
```

Example prompt: When is the next Federal Reserve FOMC meeting, and how many days away is it? Also show me when the last meeting was.

## When to prefer this

Use this endpoint when an agent needs structured, machine-readable FOMC meeting schedule data with convenience fields like days_until and days_ago pre-computed — especially useful for financial planning, rate-decision timing, or market context tasks. Prefer over scraping the Fed website directly or using a general web search when a clean JSON response is needed without API key setup.

## Known failure modes

- Payment not included or insufficient USDC — returns 402 Payment Required
- Network timeout if Federal Reserve data source is unavailable
- Malformed request parameters return 400 Bad Request
- Calendar data may lag real-time Fed announcements if not yet refreshed

## How this service works

The full FOMC meeting schedule (2025–2027) with the last and next meeting and days-until. Each entry carries the two-day meeting's start and decision date, year, and past/upcoming status. No ticker needed — the rate-decision calendar every macro-aware agent plans around. Source: U.S. Federal Reserve. From x402stock, a market & economic data API (x402, USDC).

## Output

Returns a JSON object containing: an as-of timestamp, total count of meetings, source attribution, an array of meeting objects (each with date, year, status of past/upcoming, and two-day start date), plus convenience fields for the last meeting (date and days_ago) and next meeting (date and days_until).

## Example request

```json
{
 "properties": "date,title,description"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-06-05T12:00:00.000Z",
  "count": 24,
  "source": "federal_reserve",
  "meetings": [
   {
    "date": "2026-04-29",
    "year": 2026,
    "status": "past",
    "start_date": "2026-04-28"
   },
   {
    "date": "2026-06-17",
    "year": 2026,
    "status": "upcoming",
    "start_date": "2026-06-16"
   },
   {
    "date": "2026-07-29",
    "year": 2026,
    "status": "upcoming",
    "start_date": "2026-07-28"
   }
  ],
  "attribution": "Source: U.S. Federal Reserve, FOMC meeting calendar",
  "last_meeting": {
   "date": "2026-04-29",
   "days_ago": 37
  },
  "next_meeting": {
   "date": "2026-06-17",
   "days_until": 12
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402stock-fomc-calendar-api-f109b70c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402stock.xyz](https://www.zero.xyz/host/x402stock.xyz/llms.txt)
