# ClearCheck Environmental Compliance Verdict

> ClearCheck Environmental Compliance Verdict is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns an environmental compliance verdict for a named US facility, including violations, inspections, enforcement actions, and penalties aggregated by EPA program (Clean Air Act, Clean Water Act, RCRA Hazardous Waste, Safe Drinking Water).

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/facility
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-environmental-compliance-verdict-5613fc5a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uOc411PJ47A724iiFphNy

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 clearcheck-environmental-compliance-verdict-5613fc5a
```

Example prompt: Can you check the EPA environmental compliance record for ExxonMobil in Texas — I need to know if there are any violations, inspections, or penalties on file?

## When to prefer this

Use this endpoint when you need a structured compliance verdict for a named US industrial or commercial facility, specifically covering EPA environmental programs. Prefer it over generic web search when you need machine-readable penalty totals, inspection dates, and per-program compliance flags. Best for due diligence, ESG screening, investigative research, or compliance monitoring workflows where structured EPA data is required.

## Known failure modes

- No facilities found matching the provided name and state — returns empty facilities array
- Ambiguous or very common facility name returns too many results — use state filter or increase limit
- EPA ECHO data may be delayed or incomplete for some programs — verdict may not reflect real-time status
- Invalid state code returns an error or empty results
- Facility name typo yields no match — agent should retry with alternate spelling

## How this service works

Environmental compliance verdict for a US facility: violations, inspections, enforcement and penalties by EPA program.

## Output

Returns a compliance verdict (e.g. 'clean', 'violations found'), a list of matching facilities with addresses and industry codes, per-program status across Clean Air Act, Clean Water Act, RCRA Hazardous Waste, and Safe Drinking Water programs, total penalties in USD, inspection count and last inspection date, formal enforcement actions, days since last inspection, and a disclaimer about data freshness and source.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Facility or company name"
      },
      "limit": {
       "type": "integer",
       "description": "Max facilities to return, default 10"
      },
      "state": {
       "type": "string",
       "description": "Two-letter state code"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "object",
       "properties": {
        "name": {
         "type": "string"
        },
        "state": {
         "type": "string"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "totals": {
       "type": "object",
       "properties": {
        "penaltiesUsd": {
         "type": "integer"
        },
        "inspectionRecords": {
         "type": "integer"
        },
        "formalEnforcementActions": {
         "type": "integer"
        },
        "facilitiesWithSignificantNonCompliance": {
         "type": "integer"
        }
       }
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "verdict": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      },
      "facilities": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string"
         },
         "county": {
          "type": [
           "null",
           "string"
          ]
         },
         "address": {
          "type": "string"
         },
         "byProgram": {
          "type": "object",
          "properties": {
           "cleanAirAct": {
            "type": [
             "null",
             "string"
            ]
           },
           "cleanWaterAct": {
            "type": [
             "null",
             "strin
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-environmental-compliance-verdict-5613fc5a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
