# Locus Regulated Facility Compliance Property Scan

> Locus Regulated Facility Compliance Property Scan is a paid API for AI agents from api.locus.report, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Scans local records, parcel rules, and risk signals for a US property address or ZIP code to surface factors affecting its use, cost, plans, or future value.

## Facts

- Endpoint: POST https://api.locus.report/api/locus-regulated-facility-compliance
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/locus-regulated-facility-compliance-property-scan-cbdb25fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5rsBepsL6_s4XKge2hwAw

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 locus-regulated-facility-compliance-property-scan-cbdb25fa -d '<json body>'
```

Example prompt: Can you run a Locus property scan on 742 Evergreen Terrace, Springfield, IL 62704 and tell me about any local records, parcel rules, or risk signals that could affect how I can use or develop it?

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.05) early-stage property intelligence scan covering local records, parcel zoning rules, and regulated facility compliance risk for a US address or ZIP code — especially before deeper due diligence, during property research, or when evaluating development feasibility.

## Known failure modes

- Address not found or not parseable — returns empty records array with caveats
- ZIP code outside supported US coverage — may return no records
- Malformed input (missing both address and zip) — likely 400 error
- Service unavailable or payment failure — HTTP 402 or 5xx response
- Example/stub data returned if address resolves to a non-live dataset

## How this service works

EPA ECHO regulated-facility compliance nearby. Perfect for: 'EPA regulated facilities near an address', 'ECHO compliance near a property', 'environmental compliance nearby', 'nearby regulated polluters', 'EPA facility search'. Returns EPA ECHO All-Media facilities near a point with program IDs, inspection/enforcement summary, and Detailed Facility Report links. National by lat/lng or address. Regulatory context only. Charge-free when the address fails to resolve or EPA errors.

## Output

Returns a JSON object with a report ID, a list of compliance/risk records for the property, caveats about data freshness or coverage, and a generation timestamp. The records array surfaces regulated facility findings, parcel-level rules, and local risk signals relevant to the queried address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "maxLength": 200,
   "minLength": 5
  },
  "latitude": {
   "type": "number",
   "maximum": 90,
   "minimum": -90
  },
  "longitude": {
   "type": "number",
   "maximum": 180,
   "minimum": -180
  },
  "radiusMeters": {
   "type": "integer",
   "maximum": 25000,
   "minimum": 500
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "locus_example",
  "caveats": [
   "Example artifact; not live data."
  ],
  "records": [],
  "generatedAt": "2026-01-01T00:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/locus-regulated-facility-compliance-property-scan-cbdb25fa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.locus.report](https://www.zero.xyz/host/api.locus.report/llms.txt)
