# Locus Governing Districts Property Scan

> Locus Governing Districts 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-16).

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

## Facts

- Endpoint: POST https://api.locus.report/api/locus-governing-districts
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/locus-governing-districts-property-scan-54db67e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xT58Ruj013-Tmcfi9IPa7

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-governing-districts-property-scan-54db67e4 -d '<json body>'
```

Example prompt: Can you run a Locus property scan on 742 Evergreen Terrace, Springfield, IL 62701 and tell me what governing districts, parcel rules, and risk signals might affect that property?

## When to prefer this

Use this endpoint when you need a fast, low-cost first look at a US property's governing districts, zoning constraints, and risk signals before committing to deeper due diligence. Ideal for early-stage property research, investment screening, or pre-purchase checks when you have a street address or ZIP code and want to surface regulatory or risk factors quickly.

## Known failure modes

- Address not found or unrecognized — returns empty records array with caveats
- Invalid or missing both address and ZIP — likely a 400 validation error
- ZIP code outside US — may return no results or error
- Payment failure (x402) — 402 response if USDC payment not provided
- Rate limiting or server error — 500-level response

## How this service works

Legislative districts for an address. Perfect for: 'what congressional district is this address in', 'state legislative districts for a location', 'who represents this address', 'voting districts lookup'. Returns US congressional, state senate, and state house districts from Census TIGERweb. National. Not local districts (county/municipal wards/school boards). Charge-free when geocoding fails or TIGERweb errors.

## Output

Returns a JSON object with a scan ID, list of governing districts and parcel rules relevant to the property, risk signals that may affect use or value, any caveats about the data, and a timestamp of when the report was generated.

## 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
  }
 }
}
```

## 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-governing-districts-property-scan-54db67e4/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)
