# 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.05/call, status unknown (last checked 2026-09-14).

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

## Facts

- Endpoint: POST https://api.locus.report/api/locus-comps-brief
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/locus-free-early-property-scan-96df7a49
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HAUj6F5L5MHOufB-ra8od

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-96df7a49 -d '<json body>'
```

Example prompt: Can you run an early property scan on 742 Evergreen Terrace, Springfield, IL using Locus — I want to see any local records, zoning rules, or risk signals that might affect what I can do with it or what it's worth?

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.05) preliminary property intelligence scan before committing to a full property report — ideal for early due diligence on a US address or ZIP code to surface zoning rules, public records, and risk signals.

## Known failure modes

- Invalid or unrecognized address returns empty records array
- ZIP code only may produce less precise parcel-level results
- Payment not received (402) blocks the response
- Malformed input schema returns validation error
- Property not found in local record databases returns minimal or empty results

## How this service works

Recorded-sale comparables for one US address or point: comp rows (parcel, site address, sale date, price, and price per land square foot where lot acreage is published) within 1500m over 24 months, plus median price, price range, and a coarse up/flat/down trend. From official county assessor/parcel records; arithmetic only, never owner/buyer/seller, never a valuation or AVM. A thin area returns a free charge-suppressed diagnostic. npx @velinussage/locus-agent-skill add.

## Output

A JSON object with a report ID, list of records (local records, parcel rules, risk signals), generation timestamp, and any caveats about data completeness or reliability.

## 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
  },
  "monthsBack": {
   "type": "integer",
   "maximum": 24,
   "minimum": 1
  },
  "radiusMeters": {
   "type": "number",
   "maximum": 1500,
   "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-free-early-property-scan-96df7a49/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)
