# Locus Fair Market Rents & Property Scan

> Locus Fair Market Rents & 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-15).

Scans local public 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-fair-market-rents
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/locus-fair-market-rents-property-scan-a7496e08
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r79FONSljwiClx1J261o7

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-fair-market-rents-property-scan-a7496e08 -d '<json body>'
```

Example prompt: Can you run an early property scan on 123 Main Street, Austin TX 78701 and tell me about any local records, parcel rules, or risk signals that might affect its use or value?

## When to prefer this

Use this endpoint when you need a quick, low-cost property intelligence scan covering local public records, zoning/parcel rules, and risk signals for a US address or ZIP code — particularly useful for pre-purchase due diligence, rental pricing research, or identifying regulatory constraints before committing to a property.

## Known failure modes

- Invalid or unrecognized US address returns empty records array
- Missing both address and zip fields returns a validation error
- Non-US addresses are not supported
- ZIP code too vague to return parcel-level detail — results may be zip-level only
- Payment failure (x402) prevents scan from running
- Service may return empty records if no local data is indexed for that area

## How this service works

HUD Fair Market Rents by county. Perfect for: 'fair market rent for a county', 'HUD FMR lookup', 'voucher rent limits', 'Section 8 rent standards', 'program rent for an area'. Returns official HUD Fair Market Rents (efficiency through 4-bedroom) for a US county by fiscal year from the HUD USER API. National. Program rent context only -- not market listings or affordability advice. Charge-free when the HUD token is not configured or the HUD API is unavailable.

## Output

A JSON object containing a scan ID, generated timestamp, any relevant property records, parcel rules, or risk signals found for the given address or ZIP code, plus caveats about data freshness or completeness.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "year": {
   "type": "integer",
   "maximum": 2030,
   "minimum": 2015
  },
  "place": {
   "type": "string",
   "maxLength": 200,
   "minLength": 2
  },
  "address": {
   "type": "string",
   "maxLength": 200,
   "minLength": 5
  },
  "latitude": {
   "type": "number",
   "maximum": 90,
   "minimum": -90
  },
  "longitude": {
   "type": "number",
   "maximum": 180,
   "minimum": -180
  },
  "stateFips": {
   "type": "string",
   "maxLength": 2,
   "minLength": 1
  },
  "countyFips3": {
   "type": "string",
   "maxLength": 3,
   "minLength": 1
  }
 }
}
```

## 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-fair-market-rents-property-scan-a7496e08/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)
