# WaterPulse Aquifer Analysis

> WaterPulse Aquifer Analysis 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 depletion rates, recharge capacity, agricultural dependency, regulatory outlook, and sustainability metrics for 30+ US aquifer systems including Ogallala, Central Valley, and Floridan.

## Facts

- Endpoint: GET https://waterpulse-henna.vercel.app/api/water/aquifer
- 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-aquifer-analysis-6eb82a38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nF2xLuwVe-mJgl6kGSVVz

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-aquifer-analysis-6eb82a38
```

Example prompt: Can you pull the aquifer analysis for the Ogallala system — I want to see its current depletion rate, recharge capacity, agricultural dependency, and whether its regulatory and sustainability outlook is still investable?

## When to prefer this

Use this endpoint when you need detailed groundwater sustainability intelligence on specific US aquifer systems, particularly for investment risk analysis, agricultural water planning, or regulatory compliance research. Prefer this over general water stress or drought endpoints when aquifer-specific depletion, recharge, and sustainability metrics are required rather than surface water or reservoir data.

## Known failure modes

- Unsupported or unrecognized aquifer name returns error or empty result
- Aquifer not in the 30+ supported systems returns no data
- Network or service unavailability returns HTTP error
- Malformed request parameters result in 400 error
- Payment not processed results in 402 error

## 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 for the specified US aquifer including depletion rate trends, recharge capacity, agricultural dependency percentage, regulatory environment summary, and an overall sustainability assessment covering 30+ major US aquifer systems.

## 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 data enrichment — e.g. KS | TX | CA"
      },
      "aquifer": {
       "type": "string",
       "description": "Aquifer name — e.g. \"Ogallala\" | \"Central Valley\" | \"Floridan\" | \"Edwards\" | \"High Plains\""
      }
     }
    }
   },
   "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": {
  "query_summary": {
   "aquifer": "Ogallala",
   "also_known_as": "High Plains Aquifer",
   "states_overlying": [
    "SD",
    "WY",
    "NE",
    "CO",
    "KS",
    "OK",
    "NM",
    "TX"
   ]
  },
  "aquifer_profile": {
   "total_area_sq_mi": 174000,
   "estimated_volume_km3": 3608,
   "recharge_deficit_ratio": "43:1",
   "depletion_since_1950_pct": 9,
   "annual_depletion_rate_km3": 26,
   "recharge_rate_km3_per_year": 0.6
  },
  "depletion_hotspots": [
   {
    "state": "TX",
    "region": "Texas Panhandle",
    "depth_decline_ft_since_1950": 250,
    "years_remaining_at_current_rate": 28
   },
   {
    "state": "KS",
    "region": "Southwest Kansas",
    "depth_decline_ft_since_1950": 158,
    "years_remaining_at_current_rate": 45
   }
  ],
  "regulatory_outlook": "Kansas GMD5 mandating 20% reduction in withdrawals by 2040. Texas lacks comprehensive state groundwater regulation — rule of capture still dominant.",
  "sustainability_score": {
   "max": 100,
   "note": "Recharge deficit makes long-term depletion mathematically certain absent major conservation or managed recharge programs.",
   "score": 18,
   "rating": "Critical"
  },
  "agricultural_dependency": "30% of US groundwater used for irrigation comes from Ogallala. Supports $35B in annual crop production.",
  "investment_implications": "Ogallala-dependent farmland in TX panhandle faces 30-50% value haircut within 20 years as water availability declines."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/waterpulse-aquifer-analysis-6eb82a38/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)
