# Heurist Mesh FredMacroAgent - Macro Release Calendar

> Heurist Mesh FredMacroAgent - Macro Release Calendar is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns upcoming or recent scheduled release dates for key U.S. macroeconomic data events including CPI, PCE, payrolls, GDP, and weekly jobless claims.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/FredMacroAgent/macro_release_calendar
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-fredmacroagent-macro-release-calendar-1dd04823
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VVxrHGOzVTn2E6LVAqc0U

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 heurist-mesh-fredmacroagent-macro-release-calendar-1dd04823 -d '<json body>'
```

Example prompt: What are the upcoming release dates for major U.S. macro data like CPI, PCE, payrolls, and GDP over the next few weeks?

## When to prefer this

Use this endpoint when you need a curated, structured calendar of scheduled U.S. macro economic data releases (CPI, PCE, payrolls, GDP, weekly claims) rather than scraping news sites or general financial calendars. Ideal for agents that need to time trades, avoid volatility windows, or brief users on upcoming market-moving events. Prefer over generic web search when you need structured, reliable release date data for these specific Fed-watched indicators.

## Known failure modes

- No upcoming events found for requested timeframe — returns empty list
- Invalid date range or filter parameter — returns error response
- External data source (FRED or equivalent) unavailable — service timeout or partial data
- Payment not processed (x402 protocol failure) — request rejected before execution

## How this service works

Return upcoming or recent release dates for curated macro releases (CPI, PCE, payrolls, GDP, weekly claims).

## Output

A list of upcoming or recent macro economic release events, each with the indicator name (e.g. CPI, PCE, Nonfarm Payrolls, GDP, Weekly Claims) and their scheduled or actual release dates/times, enabling agents and users to anticipate market-moving economic data publications.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "to_date": {
       "type": "string",
       "description": "Inclusive end date in YYYY-MM-DD format. Defaults to 45 days after `from_date`."
      },
      "from_date": {
       "type": "string",
       "description": "Inclusive start date in YYYY-MM-DD format. Defaults to today."
      },
      "release_keys": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Limit results to specific releases. Defaults to all supported releases."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-fredmacroagent-macro-release-calendar-1dd04823/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
