# MacroPulse Economic Calendar

> MacroPulse Economic Calendar is a paid API for AI agents from macropulse-alpha.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns the week's high-impact economic events and data releases relevant to forex traders

## Facts

- Endpoint: GET https://macropulse-alpha.vercel.app/api/calendar
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macropulse-economic-calendar-b63f4db8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bUQ7Vd8MFsGa_r-95nX9F

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 macropulse-economic-calendar-b63f4db8
```

Example prompt: Pull up the MacroPulse economic calendar for this week and tell me which high-impact events I need to watch as a forex trader.

## When to prefer this

Choose this endpoint when you need a weekly forward-looking view of scheduled macro events that could move forex markets, rather than real-time price data or post-release analysis. Ideal for pre-session planning or building a week-ahead trade preparation brief.

## Known failure modes

- Service unavailable or Vercel deployment error (5xx)
- Payment required but not provided (402)
- No events found for current week (empty result set)
- Stale or cached data if upstream economic data feed is delayed

## How this service works

Weekly high-impact economic calendar for FX and macro agents — central-bank decisions, NFP/CPI/GDP/PCE releases, with expected market impact and the currency pairs each event tends to move.

## Output

A structured list of this week's high-impact economic events including event name, date, time, affected currency pairs, expected vs. previous values, and impact classification — curated specifically for forex traders.

## Example request

```json
{}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "e.g. en, es, fr, de, ja, zh, ko, pt, ar (default: en; not strictly validated — any language is forwarded to the model)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "events": [
   {
    "date": "2026-06-11",
    "event": "FOMC Rate Decision",
    "impact": "HIGH",
    "previous": "5.25%",
    "consensus": "5.25%"
   }
  ],
  "week_theme": "Central bank week — Fed, ECB, BOJ all meeting"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macropulse-economic-calendar-b63f4db8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from macropulse-alpha.vercel.app](https://www.zero.xyz/host/macropulse-alpha.vercel.app/llms.txt)
