# MacroPulse Forex Sentiment

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

Returns real-time directional sentiment signal for a specified forex currency pair

## Facts

- Endpoint: GET https://macropulse-alpha.vercel.app/api/sentiment
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macropulse-forex-sentiment-16c8c661
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3G8IndfMe8oM18S62EI1v

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-forex-sentiment-16c8c661
```

Example prompt: What's the current directional sentiment on EUR/USD — is the market leaning bullish, bearish, or neutral right now?

## When to prefer this

Use this endpoint when you need real-time directional sentiment for a specific forex pair and want a pre-synthesized signal rather than raw news or positioning data. Ideal for trading assistants, dashboards, or agents needing a quick bullish/bearish/neutral read on a currency pair without parsing multiple data sources. Prefer over COT or macro regime endpoints when the specific output needed is sentiment direction for a single pair.

## Known failure modes

- Invalid or unsupported forex pair symbol returns an error
- Payment of $0.05 USDC not provided or fails — returns 402 Payment Required
- Service unavailable or data feed delay may return 503 or stale signal
- Malformed request parameters return 400 Bad Request

## How this service works

Real-time directional sentiment for any forex pair or gold — retail crowd positioning, COT institutional alignment, and a clear contrarian bias call. Built for FX trading and advisor agents.

## Output

Returns a real-time directional sentiment signal for the requested forex pair, likely including a bullish/bearish/neutral classification and a sentiment score or confidence indicator reflecting current market bias.

## Example request

```json
{
 "pair": "EURUSD",
 "event": "NFP"
}
```

## 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": {
      "pair": {
       "type": "string",
       "description": "EURUSD | GBPUSD | USDJPY | AUDUSD | USDCAD | XAUUSD | USOIL"
      }
     }
    }
   },
   "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": {
  "pair": "EURUSD",
  "signal": "contrarian LONG — crowd is heavily short",
  "strength": "strong",
  "cot_alignment": true,
  "retail_long_pct": 38,
  "retail_short_pct": 62
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macropulse-forex-sentiment-16c8c661/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)
