# Heurist Mesh: FRED Macro Release Context

> Heurist Mesh: FRED Macro Release 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 recent release dates and linked series history for a specified FRED macroeconomic data release, enabling pre/post-release analysis.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/FredMacroAgent/macro_release_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-release-context-3a83c96b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BGdt6V1Hwph1nttlw4yR-

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-release-context-3a83c96b -d '<json body>'
```

Example prompt: What are the recent and upcoming release dates for the CPI macro report, and which FRED series are linked to it? I want to do a pre/post-release analysis.

## When to prefer this

Use this endpoint when you need structured release-date timelines and linked series metadata for a specific FRED macroeconomic indicator (e.g. CPI, GDP, NFP, PCE) and want to perform pre- or post-release event analysis. Prefer this over general news or market data endpoints when the specific question is about FRED release schedules and historical series linkage rather than real-time prices or sentiment.

## Known failure modes

- Unsupported macro release name returns an error or empty result
- Misspelled or ambiguous release identifier fails to match a FRED release
- Network or payment failure returns a 402 or timeout error
- FRED data temporarily unavailable returns a partial or empty dataset

## How this service works

Return recent release dates and linked series history for one supported macro release. Use this for pre/post-release analysis.

## Output

Returns a structured response including recent and scheduled release dates for the specified macroeconomic release, metadata about the release, and a list of linked FRED data series with their historical context — suitable for building pre/post-release analytical workflows.

## 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": [
      "release_key"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "release_key": {
       "type": "string",
       "description": "Supported release key such as cpi, pce, employment_situation, gdp, or weekly_claims."
      },
      "include_links": {
       "type": "boolean",
       "default": false,
       "description": "Include FRED release links in the response."
      },
      "lookback_releases": {
       "type": "integer",
       "default": 6,
       "maximum": 24,
       "minimum": 2,
       "description": "Number of recent release dates to include."
      }
     }
    },
    "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-release-context-3a83c96b/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)
