# WaterPulse Water Quality Intelligence

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

Returns contaminant levels, pH, dissolved oxygen, temperature, and drinking-water compliance data from EPA Water Quality Portal and USGS for a given location

## Facts

- Endpoint: GET https://waterpulse.theaslangroupllc.com/api/water/quality
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/waterpulse-water-quality-intelligence-b2b034a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5JEU2L2kcDZeS9HiArosK

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-water-quality-intelligence-b2b034a4
```

Example prompt: Can you pull the current water quality data for the monitoring station on the Colorado River near Austin — I need contaminant levels, pH, dissolved oxygen, and whether it's meeting EPA drinking water compliance standards right now?

## When to prefer this

Use this endpoint when you need authoritative, regulatory-grade water quality data including contaminant levels and EPA compliance status — specifically when data must be sourced from EPA Water Quality Portal and USGS. Prefer this over generic environmental APIs when drinking-water safety compliance is the primary concern, or when working with utility, public health, or regulatory agent workflows.

## Known failure modes

- Unknown or invalid monitoring site ID returns 404 or empty result
- Location outside EPA/USGS monitoring coverage returns no data
- Date range with no available measurements returns empty dataset
- Malformed geographic coordinates trigger a 400 validation error
- EPA or USGS upstream data source unavailable causes 503 or degraded response

## How this service works

Water quality intelligence for water and utility agents. Returns contaminant levels, pH, dissolved oxygen, temperature, and drinking-water compliance from EPA Water Quality Portal and USGS.

## Output

Returns structured water quality measurements including contaminant concentrations, pH value, dissolved oxygen level, water temperature, and EPA drinking-water compliance status sourced from the EPA Water Quality Portal and USGS for the requested location or site.

## 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 — e.g. MI | OH | PA | WV"
      },
      "parameter": {
       "type": "string",
       "description": "nitrates | phosphorus | ph | lead | arsenic | bacteria | pfas | turbidity (default: nitrates)"
      }
     }
    }
   },
   "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": {
  "summary": {
   "trend": "Improving — 40% reduction in detections vs 2023 baseline",
   "worst_reading": "0.018 mg/L lead at Saginaw County monitoring well (exceeds 0.015 MCL)",
   "sites_within_limits": 11,
   "sites_exceeding_limit": 1
  },
  "query_summary": {
   "state": "MI",
   "parameter": "lead",
   "sites_sampled": 12
  },
  "health_context": "Lead has no safe level for children. Even sub-MCL readings warrant filtration in homes with pre-1986 plumbing.",
  "quality_readings": [
   {
    "date": "2026-04-15",
    "unit": "mg/L",
    "value": "0.0082",
    "status": "Below action level",
    "location": "Flint River at Flint, MI",
    "epa_mcl_mg_l": 0.015,
    "characteristic": "Lead"
   }
  ],
  "recommended_action": "Use NSF/ANSI 53-certified filter if lead detected. Contact local utility for free lead testing program."
 }
}
```

## More

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