# MacroPulse Regime Classifier

> MacroPulse Regime Classifier 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-16).

Classifies the current macro environment into a labeled regime (risk-on/off, reflation, stagflation, tightening) with directional implications for FX, rates, and equities.

## Facts

- Endpoint: GET https://macropulse.theaslangroupllc.com/api/regime
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macropulse-regime-classifier-3d4a6990
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8sbmeJ-Q5QC7UJ3QKwGA0

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-regime-classifier-3d4a6990
```

Example prompt: What's the current macro regime — are we risk-on, risk-off, reflationary, stagflationary, or in a tightening cycle — and what does that mean for my FX, rates, and equity positions right now?

## When to prefer this

Choose this endpoint when an AI agent needs a concise, labeled macro regime classification with cross-asset directional signals — particularly useful for multi-asset portfolio agents, FX trading bots, or macro overlay strategies that need to know whether to lean risk-on or risk-off across FX, rates, and equities without building their own regime model.

## Known failure modes

- Payment not provided or invalid (402 Payment Required)
- Downstream data feed unavailable causing stale or missing regime signal
- Service temporarily unavailable (503)
- Rate limit exceeded if called too frequently

## How this service works

Macro regime classifier for multi-asset agents — labels the current environment (risk-on/off, reflation, stagflation, tightening) and its directional implications for FX, rates and equities.

## Output

Returns a labeled macro regime (e.g. risk-on, risk-off, reflation, stagflation, tightening) along with directional implications for FX pairs, interest rates, and equity markets, helping multi-asset agents calibrate positioning and risk appetite.

## 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": {
  "fx_signal": "favour USD, CHF; avoid high-beta EM",
  "confidence": 0.74,
  "yield_curve": "inverted",
  "equity_signal": "reduce risk",
  "current_regime": "late-cycle expansion",
  "leading_indicators": "deteriorating"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macropulse-regime-classifier-3d4a6990/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)
