# Locus Free Early Property Scan

> Locus Free Early 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 use, cost, plans, or future value.

## Facts

- Endpoint: POST https://api.locus.report/api/locus-housing-stock
- 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-free-early-property-scan-ef583441
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H3X142WVYiApBV7PhRVxM

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-free-early-property-scan-ef583441 -d '<json body>'
```

Example prompt: Can you run a Locus early property scan on 742 Evergreen Terrace, Springfield, IL 62704 and tell me about any zoning rules, risk signals, or local record issues that could affect its use or value?

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.05) early-stage property intelligence scan covering parcel rules, zoning signals, and risk factors for a US property — particularly useful before deeper due diligence, when evaluating a property for purchase, investment, or development planning.

## Known failure modes

- Missing both address and ZIP code — returns validation error
- Invalid or unrecognized US address — may return empty records array
- Non-US location provided — not supported, likely returns empty or error
- Payment failure (x402) — call not processed
- Parcel data unavailable for rural or sparse coverage areas — empty records
- Rate limiting or service downtime — HTTP 5xx error

## How this service works

Census housing-stock context for an area. Perfect for: 'housing stock for an area', 'how old are the homes / median year built', 'owner vs renter share', 'housing units and vacancy for a place'. Returns cited ACS housing-stock characteristics (units, age, tenure, vacancy) for the resolved county/area. National. Area-level context, not a parcel record. Charge-free when the housing-stock lookup fails.

## Output

A JSON object containing a scan ID, generated timestamp, a list of records from local parcel data and risk signals, and any caveats about the data — covering factors that may affect the property's permitted use, costs, development plans, or future value.

## 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-free-early-property-scan-ef583441/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)
