# MacroPulse Weekly Economic Calendar

> MacroPulse Weekly Economic Calendar is a paid API for AI agents from macropulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns the weekly high-impact economic event calendar for FX and macro trading, including central-bank decisions, NFP, CPI, GDP, and PCE releases with expected market impact and affected currency pairs.

## Facts

- Endpoint: GET https://macropulse.theaslangroupllc.com/api/calendar
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macropulse-weekly-economic-calendar-d10fbae8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lR5sf1j9Czi8vlcXsarI9

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-weekly-economic-calendar-d10fbae8
```

Example prompt: Pull up this week's high-impact economic calendar — I need to see all the central bank decisions, NFP, CPI, GDP, and PCE releases, the expected market impact for each, and which currency pairs they're likely to move.

## When to prefer this

Use this endpoint when an AI agent needs a forward-looking, structured view of scheduled macro risk events for the week ahead, specifically for FX and multi-asset trading contexts. Prefer this over generic news feeds when you need event-specific impact ratings and currency pair mappings. Use the sibling deep-dive endpoint for detailed analysis of a single event.

## Known failure modes

- No events scheduled for requested period — returns empty calendar
- Rate limit or payment failure — HTTP 402 if USDC payment not processed
- Stale data if calendar has not yet been updated for the current week
- Upstream data source unavailable — returns 503 or partial data

## 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 high-impact economic events for the current week, including event names (e.g. NFP, CPI, FOMC decision), scheduled release dates and times, expected market impact levels, and the specific currency pairs each event is known to influence.

## 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-weekly-economic-calendar-d10fbae8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from macropulse.theaslangroupllc.com](https://www.zero.xyz/host/macropulse.theaslangroupllc.com/llms.txt)
