# Locus Parcel Transfer Records Scan

> Locus Parcel Transfer Records 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 transfer history, zoning rules, and risk signals for a given US property address or ZIP code

## Facts

- Endpoint: POST https://api.locus.report/api/locus-parcel-transfers
- 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-parcel-transfer-records-scan-d2309595
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YuDXEYAbWswzTRTaKjXw1

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-parcel-transfer-records-scan-d2309595 -d '<json body>'
```

Example prompt: Can you run a Locus property scan on 742 Evergreen Terrace, Springfield, IL 62704 and show me what local records, parcel transfer history, and risk signals might affect its value or use?

## When to prefer this

Use this endpoint when you need a fast, low-cost ($0.05) property intelligence scan for a US address — especially useful for early due diligence before a purchase, investment analysis, or development planning. Prefer this over manual county record searches when you need consolidated parcel transfer history, zoning rules, and risk signals in a single call.

## Known failure modes

- Address not found or unrecognized — returns empty records array with caveats
- Invalid or missing ZIP code format — validation error returned
- Non-US address provided — endpoint only supports US locations
- Payment of 0.05 USDC not processed — 402 Payment Required response
- Rate limiting or server error — 5xx response

## How this service works

Recent recorded parcel sales near an address. Perfect for: 'what did nearby homes sell for', 'recent sales near an address', 'recorded parcel transfers nearby', 'comparable sales near a property'. Returns recent recorded sales near a point from sale-capable assessor sources plus Chatham COMPER: site address, recorded date, and price (90-day / 500m). Not a valuation or AVM. For 24-month / 1500m analytics with median + trend, use locus-comps-brief. Charge-free when no priced sale resolves.

## Output

Returns a JSON object containing a report ID, list of parcel records (transfers, zoning rules, risk signals), generation timestamp, and any caveats about data completeness or freshness.

## 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
  },
  "monthsBack": {
   "type": "integer",
   "maximum": 3,
   "minimum": 1
  },
  "radiusMeters": {
   "type": "integer",
   "maximum": 500,
   "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-parcel-transfer-records-scan-d2309595/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)
