# US Facility Environmental Due-Diligence API

> US Facility Environmental Due-Diligence API is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a cited JSON environmental risk verdict (0–100 score) for a US facility, fusing EPA compliance status, enforcement history, penalties, toxic releases, and greenhouse gas data.

## Facts

- Endpoint: GET https://api.agentstools.dev/env/facility
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-facility-environmental-due-diligence-api-122ee3bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9j8Sfks7mZdxt0N2YAVK1

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 us-facility-environmental-due-diligence-api-122ee3bc
```

Example prompt: Can you pull the full EPA environmental risk profile for Chemours' facility in Fayetteville, North Carolina — I need the compliance status, any enforcement actions or penalties, toxic releases, and the overall environmental risk score?

## When to prefer this

Use this endpoint when you need a fast, single-call environmental due-diligence verdict for a US facility, combining multiple EPA data sources (ECHO, TRI, GHGRP, FRS) into one scored, cited JSON. Prefer it over raw EPA APIs when you want a normalized risk score and don't want to aggregate multiple government endpoints yourself. Ideal for ESG screening, M&A due diligence, real estate assessment, or compliance monitoring workflows.

## Known failure modes

- Facility not found in EPA FRS registry — returns empty or no-match result
- Ambiguous name matches multiple facilities — may require state or coordinates to narrow
- Coordinates outside the US — endpoint only covers US facilities
- Registry ID does not exist in FRS — returns not-found error
- Rate limit or payment failure — HTTP 402 or 429 response

## How this service works

US facility environmental due-diligence: one cited JSON verdict fusing EPA compliance status, enforcement history, penalties, toxic releases and reported greenhouse gases, with a 0 to 100 environmental-risk score, for a company name, EPA FRS registry id, address, or coordinates.

## Output

A cited JSON object containing: an environmental risk score from 0 to 100, EPA compliance status, enforcement history, penalties assessed, toxic release inventory (TRI) data, reported greenhouse gas emissions, and source citations — all fused from EPA FRS, ECHO, TRI, and GHGRP databases.

## 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"
      },
      "state": {
       "type": "string",
       "description": "2-letter US state (narrows a name search)"
      },
      "radius": {
       "type": "number",
       "description": "Search radius in miles (default 5, max 25)"
      },
      "address": {
       "type": "string",
       "description": "US street address (auto-geocoded)"
      },
      "registry_id": {
       "type": "string",
       "description": "EPA FRS Registry ID"
      }
     }
    }
   },
   "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/us-facility-environmental-due-diligence-api-122ee3bc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
