# MacroPulse Macro Regime Classifier

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

Classifies the current macroeconomic regime and its implications for FX markets and asset classes

## Facts

- Endpoint: GET https://macropulse-alpha.vercel.app/api/regime
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macropulse-macro-regime-classifier-4cfc6765
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g1J5ARwTE4C0RfuAczIbU

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-macro-regime-classifier-4cfc6765
```

Example prompt: What's the current macro regime right now — are we in a risk-on, risk-off, inflationary, or recessionary environment — and what does that mean for FX and asset positioning?

## When to prefer this

Use this endpoint when you need a high-level macro regime label and its directional FX implications before making currency allocation decisions. Prefer this over the sentiment or rates-differential endpoints when you want the broadest macro context rather than pair-specific signals.

## Known failure modes

- Service unavailable if underlying macro data sources are stale or unreachable
- 402 Payment Required if x402 payment header is missing or payment fails
- Rate limiting or quota exhaustion returning 429 status
- Ambiguous or transitional regime may return lower-confidence classification

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

A structured classification of the current macroeconomic regime (e.g. risk-on, risk-off, stagflation, reflation) along with its specific implications for FX pairs and broader asset classes such as equities, bonds, and commodities.

## Example request

```json
{
 "session": "london"
}
```

## 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-macro-regime-classifier-4cfc6765/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)
