# AgentFund US Economic Release Calendar

> AgentFund US Economic Release Calendar is a paid API for AI agents from x402.agentfund.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns upcoming and recent US macroeconomic data release dates and titles, optionally filtered by keyword

## Facts

- Endpoint: POST https://x402.agentfund.net/x402/macro_release_calendar
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfund-us-economic-release-calendar-f2614c37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YUe3ybXv_37BCgA2tMZIz

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 agentfund-us-economic-release-calendar-f2614c37 -d '<json body>'
```

Example prompt: Pull up the next 20 upcoming US economic data releases from AgentFund's macro release calendar, and filter it down to just CPI-related events.

## When to prefer this

Use this endpoint when you need to know when upcoming US macroeconomic data will be officially released — especially for planning trading, research, or news workflows around events like CPI, NFP, PCE, or GDP. Prefer this over general financial news APIs when you specifically want structured release schedules rather than news articles or data values.

## Known failure modes

- No releases match the provided filter string — returns empty list
- Limit out of range (must be 1-100) — returns validation error
- Service unavailable or payment not processed — returns 402 or 5xx error
- Stale calendar data if upstream government data source is delayed

## How this service works

US Economic Release Calendar

## Output

A list of upcoming US macroeconomic data release events, each including the release title and scheduled date, limited by the requested count and optionally filtered by a keyword substring match on the title.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max releases to return (1-100, default 10)."
  },
  "filter": {
   "type": "string",
   "description": "Substring filter on title, e.g. \"CPI\"."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asOf": "2026-08-14",
  "count": 1,
  "releases": [
   {
    "date": "2026-09-10",
    "title": "Consumer Price Index",
    "source": "BLS",
    "datetime": "2026-09-10T12:30:00Z"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentfund-us-economic-release-calendar-f2614c37/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentfund.net](https://www.zero.xyz/host/x402.agentfund.net/llms.txt)
