# WaterPulse Supply Brief

> WaterPulse Supply Brief is a paid API for AI agents from waterpulse-henna.vercel.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Returns a water supply intelligence brief for any US city or region, covering reservoir storage, utility outlook, infrastructure investment, rate trajectory, drought restrictions, and a 5-year risk rating.

## Facts

- Endpoint: GET https://waterpulse-henna.vercel.app/api/water/supply-brief
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/waterpulse-supply-brief-1ce5e7a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2eymOe9zYAReZq28YN0au

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 waterpulse-supply-brief-1ce5e7a7
```

Example prompt: Give me a full water supply brief for Phoenix, Arizona — I want reservoir storage, the utility supply outlook, any drought restrictions in effect, rate trajectory, and the 5-year risk rating so I can assess it for a long-term infrastructure investment.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-dimensional water supply intelligence brief for a specific US city or region — especially for utility planning, real estate investment due diligence, infrastructure risk assessment, or drought policy research. Prefer this over drought-only or streamflow-only endpoints when you need the full picture including rates, infrastructure investment signals, and a forward-looking 5-year risk score.

## Known failure modes

- Location not recognized or outside US coverage — returns error or empty result
- No recent data available for the specified region — may return stale or partial data
- Rate limit or payment failure via x402 — returns 402 Payment Required
- Ambiguous city name with multiple matches — may return results for wrong municipality

## How this service works

Water supply intelligence for utility and investor agents. Covers reservoir storage, utility supply outlook, infrastructure investment, rate trajectory, drought restrictions, and a 5-year risk rating for any US city or region.

## Output

A structured water supply intelligence brief including current reservoir storage levels, utility supply outlook, infrastructure investment signals, water rate trajectory, active drought restrictions, and a 5-year water risk rating for the requested US city or region.

## 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": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar (default: en)"
      },
      "state": {
       "type": "string",
       "description": "Two-letter US state code for USGS/drought data — e.g. AZ | NV | GA | CO"
      },
      "location": {
       "type": "string",
       "description": "City or metro area — e.g. \"Phoenix AZ\" | \"Las Vegas NV\" | \"Atlanta GA\" | \"Denver CO\""
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk_rating": {
   "max": 100,
   "note": "Supply risk elevated by Colorado River shortage but substantially mitigated by groundwater banking program and diversified portfolio",
   "score": 52,
   "rating": "Moderate"
  },
  "query_summary": {
   "state": "AZ",
   "location": "Phoenix AZ",
   "report_date": "2026-06-07"
  },
  "supply_overview": {
   "storage_pct": 40,
   "primary_source": "Colorado River (CAP) — 36% | Salt River Project reservoirs — 32% | Groundwater — 22% | Recycled water — 10%",
   "shortage_active": true,
   "shortage_detail": "Tier 2b Colorado River shortage — Arizona receives 21% CAP cut (512,000 acre-feet shortfall); Lake Mead 38% full, Lake Powell 42% full"
  },
  "utility_outlook": {
   "reserve_note": "Phoenix has been banking Colorado River water underground since 1996 — 2.7M acre-feet stored",
   "reserve_years": 100,
   "rate_trajectory": "Rates expected to increase 6-8% annually through 2028 to fund water security investments"
  },
  "five_year_outlook": "Manageable under current trajectory. Key risk: Lake Mead falling below elevation 895 (Tier 3 shortage) would trigger additional 17% CAP reduction not currently priced into utility plans.",
  "current_restrictions": {
   "stage": "Stage 2 Voluntary + Tier 1 Mandatory",
   "car_washing": "Commercial only, recirculating systems required",
   "new_development": "100-year assured water supply certification suspended for new subdivisions in Scottsdale",
   "outdoor_irrigation": "Limited to 3 days/week, 6am-8am"
  },
  "infrastructure_investment": "$1.2B committed 2025-2030: direct potable reuse plant (180MGD), wastewater reclamation expansion, groundwater recharge infrastructure"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/waterpulse-supply-brief-1ce5e7a7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from waterpulse-henna.vercel.app](https://www.zero.xyz/host/waterpulse-henna.vercel.app/llms.txt)
