# WaterPulse Agricultural Water Intelligence

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

Returns irrigation demand forecasts, water-rights curtailments, and farm water cost estimates for a given agricultural area by combining USGS groundwater, US Drought Monitor, and USDA data.

## Facts

- Endpoint: GET https://waterpulse-henna.vercel.app/api/water/agriculture-use
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/waterpulse-agricultural-water-intelligence-cd839561
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2SAiK_qlwRQCrXREC_Pbp

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-agricultural-water-intelligence-cd839561
```

Example prompt: What's the current irrigation demand, any water-rights curtailments, and estimated farm water cost for agricultural operations in Fresno County, California right now?

## When to prefer this

Use this endpoint when an agent needs combined agricultural water intelligence — specifically the intersection of irrigation demand, water-rights curtailment status, and farm water cost — for US agricultural regions. Prefer this over generic drought or streamflow endpoints when the user is a grower, ag-trader, or farm operator who needs actionable water economics data, not just raw hydrological readings.

## Known failure modes

- Region not covered by USGS or USDA data sources — returns 404 or empty dataset
- Invalid or unrecognized geographic parameter — returns 400 bad request
- Upstream data source temporarily unavailable (USGS or Drought Monitor outage) — returns 503
- Rate limit or payment failure via x402 — returns 402 payment required
- No current curtailment data available for the requested region — returns partial results

## How this service works

Real-time water intelligence API. Groundwater levels, streamflow, drought status, water quality, aquifer analysis, flood risk, and global water stress — pay-per-query via x402.

## Output

Returns structured data including current irrigation demand levels, active water-rights curtailment notices, and estimated farm water costs for the queried region, sourced from USGS groundwater readings, US Drought Monitor drought categories, and USDA agricultural water data.

## 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": {
      "crop": {
       "type": "string",
       "description": "Crop type (optional) — e.g. \"alfalfa\" | \"cotton\" | \"corn\" | \"almonds\" | \"rice\""
      },
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | ja | zh | ko | pt | ar (default: en)"
      },
      "state": {
       "type": "string",
       "description": "Two-letter US state code — e.g. CA | ID | NE | WA | 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_flags": [
   "SGMA sustainable yield limits tighten 2027 — expect further pumping restrictions",
   "Almond tree permanence makes water access risk existential vs annual crops"
  ],
  "cost_impact": {
   "year_over_year_change": "+22% vs 2024 — driven by SGMA pumping fees and scarcity premium",
   "water_cost_per_acre_ft_surface": "$85–$220 (district dependent)",
   "water_cost_per_acre_ft_groundwater": "$250–$500 (pumping + SGMA compliance)",
   "estimated_water_cost_per_acre_almonds": "$875–$1750"
  },
  "query_summary": {
   "crop": "almonds",
   "state": "CA",
   "season": "2026",
   "irrigation_season": "April–October"
  },
  "crop_water_budget": {
   "crop": "Almonds",
   "deficit_estimate_pct": 35,
   "total_demand_acre_feet": 4900000,
   "total_ca_almond_acreage": 1400000,
   "estimated_acre_feet_per_acre": 3.5
  },
  "strategic_guidance": "Growers with pre-1914 water rights or senior district contracts have material competitive advantage. Deficit irrigation scheduling (50-70% ET replacement) reduces nut size but preserves tree health under curtailment.",
  "water_availability": {
   "drought_status": "71% of state in D2-D4 drought",
   "groundwater_trend": "Declining — San Joaquin Valley wells 28% below 10-year median",
   "curtailment_detail": "Pre-1914 rights protected; junior rights (post-1914) receiving 0-15% of allocation in Sacramento/San Joaquin",
   "curtailments_active": true,
   "surface_water_allocation": "State Water Project deliveries at 15% of contract — below-average snowpack"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/waterpulse-agricultural-water-intelligence-cd839561/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)
