# EPA TRI Facilities Lookup by ZIP or City

> EPA TRI Facilities Lookup by ZIP or City is a paid API for AI agents from fittings.sh, paid per call via x402, $0.00596/call, status unknown (last checked 2026-09-14).

Returns industrial facilities in a US ZIP code or city that report to the EPA Toxics Release Inventory, including their TRI facility IDs for downstream release queries.

## Facts

- Endpoint: GET https://fittings.sh/v1/epa/tri-facilities
- Price: $0.00596/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/epa-tri-facilities-lookup-by-zip-or-city-5bf79e64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gf_1lRlStMoxVfPnxcCZJ

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 epa-tri-facilities-lookup-by-zip-or-city-5bf79e64
```

Example prompt: Find all the industrial facilities in ZIP code 77002 that report to the EPA Toxics Release Inventory — I need their TRI facility IDs to look up their chemical release quantities.

## When to prefer this

Use this endpoint when you need to identify EPA Toxics Release Inventory (TRI) reporting facilities within a US geographic area (by ZIP code or city/state) as a first step before querying chemical release quantities. Prefer this over general business or facility search APIs when environmental compliance, toxic chemical reporting, or EPA regulatory context is specifically required.

## Known failure modes

- Missing required location parameter (neither zip nor city+state provided) — returns a validation error
- Invalid ZIP code format or unrecognized city/state combination — returns empty results or error
- Limit parameter out of range (below 1 or above 50) — returns a validation error
- No TRI-reporting facilities found in the specified area — returns an empty list
- Upstream EPA data temporarily unavailable — returns a service error

## How this service works

Industrial facilities reporting to the EPA Toxics Release Inventory in a ZIP code or a city, with the TRI facility id needed to pull their release quantities.

## Output

A list of industrial facilities (up to the specified limit, default 20) in the queried ZIP code or city/state that report to the EPA Toxics Release Inventory. Each record includes the TRI facility ID, facility name, and location details needed to subsequently query chemical release quantities.

## 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": [],
     "properties": {
      "zip": {
       "type": "string",
       "description": "Five-digit US ZIP code. Use this, or state and city."
      },
      "city": {
       "type": "string",
       "description": "City name, paired with state."
      },
      "limit": {
       "type": "number",
       "description": "Maximum facilities, 1-50, default 20"
      },
      "state": {
       "type": "string",
       "description": "US state postal code or name, paired with city."
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/epa-tri-facilities-lookup-by-zip-or-city-5bf79e64/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
