# MacroPulse Forex Sentiment & Positioning Analysis

> MacroPulse Forex Sentiment & Positioning Analysis is a paid API for AI agents from macropulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns real-time directional sentiment for any forex pair or gold, combining retail crowd positioning, COT institutional alignment, and a contrarian bias signal.

## Facts

- Endpoint: GET https://macropulse.theaslangroupllc.com/api/sentiment
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macropulse-forex-sentiment-positioning-analysis-588fb917
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wT7udY3xNPRHBe3JqwKs3

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-positioning-analysis-588fb917
```

Example prompt: What's the current sentiment picture for EUR/USD — give me the retail crowd positioning, whether institutions are aligned or diverging based on COT data, and the contrarian bias call.

## When to prefer this

Choose this endpoint when you need a combined retail-vs-institutional sentiment picture with an explicit contrarian bias call for a specific forex pair or gold — especially when you want to identify overcrowded retail positions that institutions may be fading. Prefer over raw COT-only endpoints when you want a synthesized signal rather than raw positioning numbers.

## Known failure modes

- Unsupported symbol returns 400 or empty result — only major forex pairs and gold are supported
- Stale COT data on weeks with delayed CFTC releases may reduce institutional signal freshness
- Payment failure or missing x402 header returns 402 Payment Required
- Rate limiting if too many calls are made in rapid succession

## 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 retail crowd positioning percentages (long/short), CFTC COT-derived institutional net positioning, directional alignment or divergence between retail and institutional participants, and a clear contrarian bias recommendation for the requested forex pair or gold.

## 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-positioning-analysis-588fb917/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)
