# env-screen

> env-screen is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Fuzzy name or location search for US EPA-regulated facilities, returning ranked candidates with EPA FRS registry IDs and compliance status as a cheap screening step.

## Facts

- Endpoint: GET https://payai.agentstools.dev/env/screen
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/env-screen-a42d8906
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qpsq9MyMWO6MRS_YGO1Ve

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 env-screen-a42d8906
```

Example prompt: Can you search the EPA facility registry for any regulated facilities named 'Chemours' in North Carolina — I need their EPA FRS IDs and compliance status as a first screening step?

## When to prefer this

Choose this endpoint when you need a fast, inexpensive first pass to identify EPA-regulated facilities by name or geography before committing to a more detailed (and expensive) full environmental compliance verdict. It is ideal for due diligence pipelines, site screening, regulatory research, or any workflow where you need to resolve a facility to its EPA FRS ID before deeper analysis.

## Known failure modes

- No facilities found matching the name or location — returns empty candidate list
- Ambiguous name matches too many facilities — results may require further filtering by state or NAICS
- Invalid latitude/longitude range — request rejected with validation error
- Radius exceeds 25-mile maximum — request rejected
- Address geocoding fails for malformed or non-US address — no results returned
- Missing both name and location inputs — request rejected as insufficient search criteria

## How this service works

Screen US EPA-regulated facilities: fuzzy name or location search returning ranked candidate facilities with their EPA FRS registry id and compliance status — the cheap first step before a full env facility verdict.

## Output

A ranked list of candidate EPA-regulated facilities matching the search criteria, each including the EPA FRS registry ID, facility name, location details, and current compliance status — suitable for triaging before a more detailed environmental verdict lookup.

## 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",
     "required": [],
     "properties": {
      "lat": {
       "type": "number",
       "description": "Latitude [-90,90] (with lon)"
      },
      "lon": {
       "type": "number",
       "description": "Longitude [-180,180] (with lat)"
      },
      "name": {
       "type": "string",
       "description": "Company or facility name (fuzzy)"
      },
      "naics": {
       "type": "string",
       "description": "NAICS industry code filter"
      },
      "state": {
       "type": "string",
       "description": "2-letter US state"
      },
      "radius": {
       "type": "number",
       "description": "Radius miles (default 5, max 25)"
      },
      "address": {
       "type": "string",
       "description": "US street address (auto-geocoded)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/env-screen-a42d8906/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
