# LiquidityPulse

> LiquidityPulse is a paid API for AI agents from liquidity.lonestaroracle.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a real-time US market liquidity and financial conditions macro signal including Fed net liquidity, 4-week trend, NFCI, credit spreads, yield curve, and a combined regime read

## Facts

- Endpoint: GET https://liquidity.lonestaroracle.xyz/liquidity
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/liquiditypulse-cea974b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OogkqcNjACykQU_yjX1iE

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 liquiditypulse-cea974b2
```

Example prompt: What's the current US liquidity regime — is the Fed net liquidity expanding or contracting, and are financial conditions loose or tight right now?

## When to prefer this

Choose this endpoint when you need a single no-parameter call to get a comprehensive, pre-computed US macro liquidity snapshot combining Fed balance sheet dynamics, NFCI, credit spreads, and yield curve into a unified regime signal. Prefer it over assembling individual FRED series yourself when you want a pay-per-call, agent-ready format with built-in regime classification. It pairs naturally with positioning signals (COT, funding rates) and MacroPulse for a full macro overlay.

## Known failure modes

- FRED data source unavailable or delayed — may return stale or error response
- Upstream Federal Reserve data publication lag may mean readings are not real-time intraday
- Network or payment gateway failure returns HTTP 402 or 5xx with no payload
- ON RRP or TGA data temporarily missing may produce null component values

## How this service works

US market-liquidity & financial-conditions macro signal (no params)

## Output

A JSON object containing: net liquidity in USD billions (Fed balance sheet minus ON RRP minus TGA), 4-week change in USD billions and percent, a liquidity signal enum (EXPANDING/NEUTRAL/CONTRACTING), component breakdowns (bank reserves, Fed balance sheet, ON RRP, TGA in USD bn), Chicago Fed NFCI score and financial conditions enum (LOOSE/NEUTRAL/TIGHT), 10y-2y yield curve spread, high-yield credit spread percent, and a combined regime label (e.g. 'Mixed') with a plain-English interpretation string.

## Request schema (JSON Schema)

```json
{
 "name": "LiquidityPulse",
 "tags": [
  "liquidity",
  "macro",
  "financial-conditions",
  "fed",
  "risk"
 ],
 "type": "object",
 "version": "1.0.0",
 "category": "markets",
 "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": {}
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "regime": "Mixed",
     "source": "Federal Reserve Economic Data (FRED)",
     "interpretation": "Net liquidity is contracting (-1.95% over 4 weeks) and financial conditions are loose (NFCI -0.53, easing). Regime: mixed.",
     "liquidity_signal": "CONTRACTING",
     "components_usd_bn": {
      "bank_reserves": 2993.3,
      "fed_balance_sheet": 6748.6,
      "reverse_repo_onrrp": 1.4,
      "treasury_general_account": 907.3
     },
     "yield_curve_10y2y": 0.44,
     "credit_spread_hy_pct": 2.75,
     "financial_conditions": "LOOSE",
     "net_liquidity_usd_bn": 5839.9,
     "financial_conditions_nfci": -0.529,
     "net_liquidity_4w_change_bn": -115.9,
     "net_liquidity_4w_change_pct": -1.95
    }
   }
  }
 },
 "description": "US market-liquidity and financial-conditions macro read, made agent-callable. One x402 call (no parameters) returns net liquidity — the Fed balance sheet minus overnight reverse repo minus the Treasury General Account, the widely-watched proxy for the dollar liquidity behind risk assets — and its 4-week trend (EXPANDING / NEUTRAL / CONTRACTING), plus financial conditions from the Chicago Fed NFCI (LOOSE / NEUTRAL / TIGHT), the high-yield credit spread, the 10y-2y yield curve, and a combined regime read (risk-on tailwind / mixed / risk-off headwind). The 'is the tide coming in or going out' signal that sits behind every risk asset, served pay-per-call. $0.05 in USDC on Base via x402. Source: FRED / Federal Reserve (free/public). Sibling of MacroPulse; pairs with the positioning cluster (COT, FundingRates)."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/liquiditypulse-cea974b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from liquidity.lonestaroracle.xyz](https://www.zero.xyz/host/liquidity.lonestaroracle.xyz/llms.txt)
