# Heurist Mesh: FRED Macro Regime Context

> Heurist Mesh: FRED Macro Regime Context is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns a curated multi-pillar macroeconomic regime summary covering inflation, interest rates, labor market, credit conditions, and growth indicators.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/FredMacroAgent/macro_regime_context
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-fred-macro-regime-context-b1ec15be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S8WXyiUKShJDfB0K0xIaN

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 heurist-mesh-fred-macro-regime-context-b1ec15be -d '<json body>'
```

Example prompt: Give me a full macro regime summary right now — covering inflation, interest rates, labor market conditions, credit conditions, and economic growth all in one shot.

## When to prefer this

Choose this endpoint when you need a holistic, cross-pillar macro regime read in a single call rather than querying individual economic series. It is ideal for agents that need macro context to inform investment decisions, portfolio positioning, or economic commentary without building their own aggregation logic. Prefer this over individual FRED series lookups when breadth across all five macro pillars (inflation, rates, labor, credit, growth) is more valuable than depth on any single indicator.

## Known failure modes

- Stale FRED data if underlying series have not been recently updated
- Payment failure if USDC balance is insufficient for the $0.003 per-call fee
- Service unavailability on the Heurist Mesh infrastructure
- Empty or partial response if specific FRED series are temporarily unavailable
- No input validation errors expected as the endpoint requires no user-supplied parameters

## How this service works

Return a curated multi-pillar macro regime summary across inflation, rates, labor, credit conditions, and growth. Use this for a cross-pillar macro summary instead of querying individual series.

## Output

A structured multi-pillar macro regime summary derived from FRED data, covering: inflation dynamics (CPI, PCE trends), interest rate environment (Fed policy stance, yield curve), labor market conditions (employment, wages), credit conditions (spreads, lending standards), and GDP/growth outlook. The response synthesizes these pillars into a cohesive regime characterization useful for investment strategy or economic analysis.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "pillars": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Optional subset of macro pillars to include. Defaults to all supported pillars."
      },
      "as_of_date": {
       "type": "string",
       "description": "Observation cutoff date in YYYY-MM-DD format. Uses revised data filtered to this date — for true point-in-time data, use macro_vintage_history instead."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-fred-macro-regime-context-b1ec15be/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
