# Financial Data x402 – Money Supply

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

Returns current US money supply metrics including M1, M2, and commercial & industrial loan data with year-over-year changes

## Facts

- Endpoint: GET https://x402financialdata.com/money-supply
- 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/financial-data-x402-money-supply-a926b720
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OmRTH5b2P2CqsMBzyPYn9

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-money-supply-a926b720
```

Example prompt: What's the current M1 and M2 money supply in the US, and how much has M2 changed year-over-year?

## When to prefer this

Choose this endpoint when you need real-time or near-real-time US money supply and credit data (M1, M2, C&I loans) without managing API keys or subscriptions. It is ideal for AI agents that need lightweight per-call access to macroeconomic monetary aggregates, especially in crypto-native or x402-enabled payment environments. Prefer it over Bloomberg or FRED direct integrations when simplicity and micropayment-based access (USDC on Base/Solana) are a priority.

## Known failure modes

- Upstream FRED data unavailable — series may appear in failed_series array
- Stale data if Federal Reserve hasn't published latest release — dates in response will reflect actual publication lag
- Payment failure if USDC balance insufficient on Base or Solana — 402 response returned before data
- Network timeout if x402 facilitator is unreachable

## 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 containing the as-of date for the response, M1 money stock in billions with its latest date, M2 money stock in billions with its latest date plus year-over-year percent change, commercial and industrial loans in billions with year-over-year percent change, 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-31",
  "failed_series": [],
  "m1_money_stock_billions": {
   "date": "2026-06-01",
   "value": 19831.5
  },
  "m2_money_stock_billions": {
   "date": "2026-06-01",
   "value": 23155.2,
   "yoy_change_pct": 4.12,
   "compared_to_date": "2025-06-01"
  },
  "commercial_industrial_loans_billions": {
   "date": "2026-07-22",
   "value": 2884.72,
   "yoy_change_pct": 2.87,
   "compared_to_date": "2025-07-23"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-money-supply-a926b720/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)
