# FRED Economic Release Calendar

> FRED Economic Release Calendar is a paid API for AI agents from agent402.tools, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-16).

Returns upcoming and very-recent US economic data release dates (CPI, employment, GDP, FOMC, Treasury auctions, etc.) for a configurable day window

## Facts

- Endpoint: GET https://agent402.tools/api/fred-release-calendar
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fred-economic-release-calendar-64d47cd1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5D4r2cBSGWMzDwXqdJZp0

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 fred-economic-release-calendar-64d47cd1
```

Example prompt: What US economic data releases are coming up in the next 30 days? I want to see CPI, jobs, GDP, FOMC minutes, and Treasury auction dates so I can plan around market-moving events.

## When to prefer this

Use this endpoint when you need structured, machine-readable US economic event dates sourced directly from FRED — ideal for scheduling agents, event-driven trading systems, or macro research workflows that need to act around CPI, employment, GDP, FOMC, or Treasury auction releases. Prefer over manually curated calendars when freshness and government data provenance matter.

## Known failure modes

- days parameter out of range (1-90) returns an error
- FRED upstream API unavailability may cause empty or partial results
- Payment failure (x402) if USDC balance insufficient — endpoint returns 402
- No releases in the requested window returns an empty list

## How this service works

Upcoming and very-recent US economic data release dates - CPI, employment, GDP, FOMC minutes, Treasury auctions, etc. Useful for scheduling agents around event-driven moves. ?days=14 (default 14, range 1-90). This product uses the FRED(R) API but is not endorsed or certified by the Federal Reserve Bank of St. Louis.

## Output

A list of upcoming US economic data release events sourced from FRED, including release names (e.g. CPI, Nonfarm Payrolls, GDP, FOMC Minutes, Treasury auctions), their scheduled release dates, and related metadata — covering a window of 1 to 90 days from today (default 14 days).

## 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",
     "properties": {
      "days": {
       "type": "number",
       "description": "Window in days from today (1-90, default 14)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "days",
      "count",
      "releases"
     ],
     "properties": {
      "days": {
       "type": "integer"
      },
      "count": {
       "type": "integer"
      },
      "releases": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "date": {
          "type": "string"
         },
         "releaseId": {
          "type": "integer"
         },
         "releaseName": {
          "type": "string"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "days": 14,
  "count": 12,
  "releases": [
   {
    "date": "2026-06-12",
    "releaseId": 10,
    "releaseName": "Consumer Price Index"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fred-economic-release-calendar-64d47cd1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
