# Locus Environmental History Lookup

> Locus Environmental History Lookup 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).

Runs an early-stage scan of local records, parcel rules, and environmental risk signals for a US property address or ZIP code.

## Facts

- Endpoint: POST https://api.locus.report/api/locus-environmental-history-lookup
- 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-environmental-history-lookup-59974e9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RHPPmU4jlDdN5lE1GHsFs

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-environmental-history-lookup-59974e9c -d '<json body>'
```

Example prompt: Can you run a Locus property scan on 742 Evergreen Terrace, Springfield, IL 62704 and tell me about any environmental risks, parcel rules, or local record flags that might affect its value or use?

## When to prefer this

Use this endpoint when you need a fast, low-cost early-stage property intelligence scan for a US address, particularly before deeper due diligence. Ideal for flagging environmental history, zoning constraints, and risk signals without committing to a full property report. Prefer this over general web search when you need structured parcel-level data.

## Known failure modes

- Address not found or unresolvable — empty records array returned
- ZIP code resolves to no parcels — minimal or empty response
- Malformed address string — API may return no results without a clear error
- Network or server error — HTTP 5xx with no data
- Payment failure — HTTP 402 if x402 payment not processed correctly

## How this service works

Address-level environmental record proximity. Perfect for: 'environmental hazards near an address', 'EPA TRI / RCRA sites near a property', 'is there a polluter nearby', 'radon zone for an address', 'environmental due diligence for a property'. Returns proximity-ranked EPA Toxics Release Inventory + RCRA facilities, nearest large-quantity generator, and the county radon/background composite. National. Not a contamination or safe/unsafe verdict.

## Output

Returns a JSON object with a report ID, a timestamp, an array of property records (zoning, parcel, environmental, and risk signals), and caveats about data completeness or freshness.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "state": {
   "type": "string",
   "maxLength": 2,
   "minLength": 2
  },
  "county": {
   "type": "string",
   "maxLength": 60,
   "minLength": 3
  },
  "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": 24000,
   "minimum": 100
  }
 }
}
```

## 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-environmental-history-lookup-59974e9c/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)
