# MacroPulse Event Pulse

> MacroPulse Event Pulse is a paid API for AI agents from macropulse.theaslangroupllc.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-13).

Delivers a deep-dive analysis of a specific economic event (NFP, CPI, FOMC, GDP, central bank decisions) including what the print means, scenario trees (base/bull/bear), and FX pairs in play.

## Facts

- Endpoint: GET https://macropulse.theaslangroupllc.com/api/event-pulse
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macropulse-event-pulse-adb66987
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hTVL7fIi_61QhI9q2UFKP

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-event-pulse-adb66987
```

Example prompt: Walk me through the NFP print that just came out — what does it mean for the dollar, give me the base, bull, and bear scenario tree, and tell me which FX pairs are most in play right now.

## When to prefer this

Use this endpoint when an AI agent needs structured, scenario-based interpretation of a specific high-impact economic event (NFP, CPI, FOMC, GDP, central bank decisions) for FX or macro decision-making. Prefer this over generic news endpoints when you need bull/bear/base scenario trees and specific FX pairs in play rather than raw headlines.

## Known failure modes

- Unsupported event type returns an error if the event name is not recognized
- Stale data if called before the event print is released or data feed is delayed
- Ambiguous event name may return generic analysis rather than event-specific breakdown
- Payment failure via x402 protocol blocks the response
- Rate limiting if called too frequently around high-impact event windows

## How this service works

Deep-dive on any economic event for FX and macro agents — NFP, CPI, FOMC, GDP and central-bank decisions: what the print means, the base/bull/bear scenario tree, and the pairs in play.

## Output

Returns a structured analysis of the specified economic event including: interpretation of the actual print versus expectations, a scenario tree with base/bull/bear outcomes and their probability context, macro implications for FX markets, and a list of currency pairs most directly affected by the event.

## 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": {
      "event": {
       "type": "string",
       "description": "FOMC | NFP | CPI | GDP | PCE | ECB | BOJ | ISM | PMI | JOLTS"
      }
     }
    }
   },
   "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": {
  "date": "2026-06-11",
  "event": "FOMC",
  "consensus": "hold at 5.25-5.50%",
  "key_watch": "Dot plot and Powell presser tone",
  "market_pricing": "92% hold, 8% cut",
  "eur_usd_reaction_scenarios": {
   "dovish": "+80 pips",
   "hawkish": "-60 pips"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macropulse-event-pulse-adb66987/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)
