# MacroPulse Event Deep-Dive

> MacroPulse Event Deep-Dive is a paid API for AI agents from macropulse-alpha.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-15).

Delivers in-depth economic event analysis for forex traders, covering a specific macro event's implications for currency markets

## Facts

- Endpoint: GET https://macropulse-alpha.vercel.app/api/event-pulse
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macropulse-event-deep-dive-b0c3c17a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XndZ2QylG0zs7Ipg3QOFu

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-deep-dive-b0c3c17a
```

Example prompt: Give me a MacroPulse deep-dive on today's US CPI release — I want to know the actual vs expected figures, what it means for USD pairs, and whether the market reaction makes sense.

## When to prefer this

Choose this endpoint when you need a focused, in-depth analysis of a specific economic event and its forex market implications, rather than a broad market overview. Ideal when a key data release (CPI, NFP, FOMC, GDP) has just occurred and you want structured interpretation of its impact on currency pairs. Prefer this over the session brief or sentiment endpoints when the user is asking specifically about a single macro event.

## Known failure modes

- Event not found or unrecognized event identifier returns an error
- Stale or unavailable data if event has not yet been released
- Payment failure if USDC balance is insufficient for $0.20 per call
- Invalid or missing required query parameters
- Rate limiting if too many requests are made in a short window

## 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

A detailed analysis of a specific economic event including the actual versus expected figures, historical context, central bank implications, directional forex bias, and actionable insights for currency traders.

## Example request

```json
{
 "date": "2024-01-10",
 "event": "US_CPI_RELEASE",
 "currency_pair": "EURUSD"
}
```

## 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-deep-dive-b0c3c17a/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)
