# Agent402 Macro Dashboard Skill Pack

> Agent402 Macro Dashboard Skill Pack is a paid API for AI agents from agent402.tools, paid per call via x402, $0.071/call, status unknown (last checked 2026-09-15).

Runs a comprehensive macroeconomic dashboard in a single paid call, pulling Fed funds rate, CPI, unemployment, yield curve, Treasury data, and crypto market metrics across 14 sequential steps.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/macro-dashboard
- Price: $0.071/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-macro-dashboard-skill-pack-ca7a72c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_smcSIvCQMGkq_nImTVqKf

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 agent402-macro-dashboard-skill-pack-ca7a72c6 -d '<json body>'
```

Example prompt: Pull up the full macro dashboard — I want Fed funds rate, CPI, unemployment, Sahm Rule, yield curve, Treasury data, and crypto market stats all in one shot.

## When to prefer this

Choose this endpoint when you need a broad macroeconomic snapshot combining monetary policy, Treasury, inflation, labor market, and crypto data in a single atomic payment rather than orchestrating 14 separate API calls yourself. Ideal for morning briefings, investment research context-setting, or any workflow that needs a full macro picture without managing multiple credentials or calls.

## Known failure modes

- Individual steps may fail (ok: false) while others succeed — the summary reports partial success (e.g. '13/14 steps succeeded')
- x402 payment failure if wallet has insufficient USDC balance or unsupported chain
- Upstream data source outages (FRED API, Treasury API, crypto data feeds) may cause step-level failures
- Malformed POST body may cause request rejection
- Network timeout if aggregation of 14 upstream calls exceeds threshold

## How this service works

Bundled execution of the Macro dashboard refresh workflow - The full macro + crypto dashboard in one call: 5 FRED series, 5 Treasury reads, yield-curve spread, crypto market/trending/global, and live gas - the 14-tool basket recurring buyers refresh every cycle, bundled below its a la carte price.

## Output

Returns a JSON object with a 'steps' array of 14 named results (fred-release-calendar, fed-funds, cpi-yoy, unemployment-rate, sahm-rule, yield-curve-spread, treasury-yield-curve, treasury-yield-history, treasury-debt, treasury-avg-rates, crypto-market, crypto-trending, crypto-global, gas-estimate), each with an ok flag and result payload, plus a summary string like '14/14 steps succeeded'.

## 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": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "pack",
      "args",
      "steps",
      "summary"
     ],
     "properties": {
      "args": {
       "type": "object"
      },
      "pack": {
       "type": "string"
      },
      "steps": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "ok": {
          "type": "boolean"
         },
         "slug": {
          "type": "string"
         },
         "result": {
          "type": "object"
         }
        }
       }
      },
      "summary": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {},
  "pack": "macro-dashboard",
  "steps": [
   {
    "ok": true,
    "slug": "fred-release-calendar",
    "result": {}
   },
   {
    "ok": true,
    "slug": "fed-funds",
    "result": {}
   },
   {
    "ok": true,
    "slug": "cpi-yoy",
    "result": {}
   },
   {
    "ok": true,
    "slug": "unemployment-rate",
    "result": {}
   },
   {
    "ok": true,
    "slug": "sahm-rule",
    "result": {}
   },
   {
    "ok": true,
    "slug": "yield-curve-spread",
    "result": {}
   },
   {
    "ok": true,
    "slug": "treasury-yield-curve",
    "result": {}
   },
   {
    "ok": true,
    "slug": "treasury-yield-history",
    "result": {}
   },
   {
    "ok": true,
    "slug": "treasury-debt",
    "result": {}
   },
   {
    "ok": true,
    "slug": "treasury-avg-rates",
    "result": {}
   },
   {
    "ok": true,
    "slug": "crypto-market",
    "result": {}
   },
   {
    "ok": true,
    "slug": "crypto-trending",
    "result": {}
   },
   {
    "ok": true,
    "slug": "crypto-global",
    "result": {}
   },
   {
    "ok": true,
    "slug": "gas-estimate",
    "result": {}
   }
  ],
  "summary": "14/14 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-macro-dashboard-skill-pack-ca7a72c6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
