# WaterPulse Agricultural Water Intelligence

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

Returns irrigation demand, water-rights curtailments, and farm water cost for agricultural decision-making by combining USGS groundwater, US Drought Monitor, and USDA data.

## Facts

- Endpoint: GET https://waterpulse.theaslangroupllc.com/api/water/agriculture-use
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/waterpulse-agricultural-water-intelligence-3c0dc309
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fEqKCZDdeUXGudgONheRq

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-3c0dc309
```

Example prompt: What's the current irrigation demand, any active water-rights curtailments, and estimated farm water cost for the San Joaquin Valley in California right now — I need it for my corn operation planning?

## When to prefer this

Use this endpoint when you need combined agricultural water intelligence — specifically the intersection of irrigation demand, water-rights curtailments, and farm water cost — in a single call. Prefer this over generic drought or groundwater endpoints when the use case is agricultural planning, ag-commodity trading, or farm investment analysis where all three dimensions matter together. The multi-source fusion (USGS + Drought Monitor + USDA) makes this superior to single-source alternatives for comprehensive ag-water decision support.

## Known failure modes

- Region not covered by USGS/USDA/Drought Monitor data sources — returns 404 or empty dataset
- Invalid or unrecognized geographic identifier — returns 400 bad request
- Upstream data source (USGS, USDA, Drought Monitor) temporarily unavailable — returns 503 or stale data warning
- Water rights data not available for queried jurisdiction — partial response with null curtailment field
- Payment not fulfilled (x402) — returns 402 Payment Required before data is delivered

## How this service works

Agricultural water intelligence for grower and ag-trader agents. Returns irrigation demand, water-rights curtailments, and farm water cost, combining USGS groundwater, US Drought Monitor, and USDA data.

## Output

Returns structured agricultural water intelligence including irrigation demand levels, any active water-rights curtailments in the queried region, farm water cost estimates, and underlying data signals from USGS groundwater measurements, US Drought Monitor drought categories, and USDA agricultural datasets.

## 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-3c0dc309/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from waterpulse.theaslangroupllc.com](https://www.zero.xyz/host/waterpulse.theaslangroupllc.com/llms.txt)
