# Financial Data x402 – Economic Indicators

> Financial Data x402 – Economic Indicators is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a snapshot of key US macroeconomic indicators including inflation, GDP growth, labor, interest rates, and consumer sentiment via pay-per-call x402 micropayment.

## Facts

- Endpoint: GET https://x402financialdata.com/economic-indicators
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-economic-indicators-04d37701
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fJMcZSc_QMtKzCfnc-w76

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 financial-data-x402-economic-indicators-04d37701
```

Example prompt: Pull the latest US economic indicators — I want to see current inflation (CPI and core CPI), GDP growth, unemployment, the fed funds rate, and consumer sentiment all in one snapshot.

## When to prefer this

Choose this endpoint when you need a broad, multi-indicator US macroeconomic snapshot in a single call without managing API keys or subscriptions. It is ideal for agents that need inflation, growth, labor, and rates data together cheaply ($0.01/call) via x402 micropayment on Base or Solana. Prefer it over free alternatives when you need reliable, structured JSON with named fields and a clear as-of timestamp, and when per-call billing is preferable to a subscription.

## Known failure modes

- Payment failure: x402 micropayment not completed or USDC balance insufficient — returns 402 Payment Required
- Data series unavailable: specific indicator may be missing due to source lag — returned in failed_series array
- Network/timeout error: upstream data provider unavailable — returns 5xx
- Stale data: indicators reflect last published government release date, not real-time intraday values

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

A JSON object timestamped with an as_of date containing nested sections for labor (unemployment rate), growth (retail sales MoM %, industrial production YoY %, real GDP growth QoQ annualized %), inflation (CPI YoY %, core CPI YoY %, PCE price index YoY %), sentiment (consumer sentiment index), interest rates (fed funds rate), and a list of any failed data series.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-07-26",
  "labor": {
   "unemployment_rate": {
    "date": "2026-06-01",
    "value": 4.2
   }
  },
  "growth": {
   "retail_sales_mom_pct": {
    "date": "2026-06-01",
    "value": 0.2187,
    "compared_to_date": "2026-05-01"
   },
   "industrial_production_yoy_pct": {
    "date": "2026-06-01",
    "value": 1.1441,
    "compared_to_date": "2025-06-01"
   },
   "real_gdp_growth_qoq_annualized_pct": {
    "date": "2026-01-01",
    "value": 2.1
   }
  },
  "inflation": {
   "cpi_yoy_pct": {
    "date": "2026-06-01",
    "value": 3.4635,
    "compared_to_date": "2025-06-01"
   },
   "core_cpi_yoy_pct": {
    "date": "2026-06-01",
    "value": 2.5658,
    "compared_to_date": "2025-06-01"
   },
   "pce_price_index_yoy_pct": {
    "date": "2026-05-01",
    "value": 4.0726,
    "compared_to_date": "2025-05-01"
   }
  },
  "sentiment": {
   "consumer_sentiment_index": {
    "date": "2026-05-01",
    "value": 44.8
   }
  },
  "failed_series": [],
  "interest_rates": {
   "fed_funds_rate": {
    "date": "2026-06-01",
    "value": 3.63
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-economic-indicators-04d37701/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
