# US Macro Indicators Dashboard

> US Macro Indicators Dashboard is a paid API for AI agents from www.x402financialdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a comprehensive set of key US macroeconomic indicators in a single call, including Fed funds rate, unemployment, CPI, core CPI, PCE, real GDP growth, industrial production, retail sales, and consumer sentiment — with YoY/MoM math pre-calculated from FRED data.

## Facts

- Endpoint: GET https://www.x402financialdata.com/economic-indicators
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-macro-indicators-dashboard-a61b8067
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A3Czo16VQOVuYbv19rqHA

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 us-macro-indicators-dashboard-a61b8067
```

Example prompt: Give me a full snapshot of where the US economy stands right now — I want the Fed funds rate, unemployment, CPI, PCE, GDP growth, industrial production, retail sales, and consumer sentiment all in one place.

## When to prefer this

Choose this endpoint when you need a broad, multi-indicator snapshot of the US macroeconomy in a single low-cost call, rather than querying FRED series individually. Ideal for dashboards, briefings, or economic condition checks where you need all major indicators (rates, inflation, growth, labor, sentiment) at once without ticker-specific data.

## Known failure modes

- FRED data source unavailable — may return stale or error response
- Network timeout if FRED API is slow to respond
- Rate limiting or payment failure may prevent access
- Data lag: some series (e.g. GDP) are released quarterly and may reflect prior period

## How this service works

Key US macro indicators in one call, live from FRED: Fed funds rate, unemployment rate, CPI/core CPI/PCE inflation (YoY), real GDP growth (QoQ annualized), industrial production (YoY), retail sales (MoM), and consumer sentiment -- roughly 8 separate FRED series lookups collapsed into one request, with YoY/MoM math already done. Not ticker-specific. $0.01/call.

## Output

A single JSON response containing the latest values for approximately 8 US macroeconomic series sourced from FRED: Federal funds rate, unemployment rate, CPI YoY, core CPI YoY, PCE YoY, real GDP growth QoQ annualized, industrial production YoY, retail sales MoM, and consumer sentiment — with all percentage-change math (YoY/MoM) already computed.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-macro-indicators-dashboard-a61b8067/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.x402financialdata.com](https://www.zero.xyz/host/www.x402financialdata.com/llms.txt)
