# Locus Rental Operations Brief

> Locus Rental Operations Brief is a paid API for AI agents from api.locus.report, paid per call via x402, $0.79/call, status unknown (last checked 2026-09-15).

Returns a rental property operations brief including RentCast facts, third-party rent estimate, ZIP market context, HUD/Locus compliance checks, work items, and validated next-call actions for a single rental address.

## Facts

- Endpoint: POST https://api.locus.report/api/locus-rental-operations-brief
- Price: $0.79/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/locus-rental-operations-brief-34aed591
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N5GgI7U2PBsbG6Fz1FNNv

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-rental-operations-brief-34aed591 -d '<json body>'
```

Example prompt: Pull together the rental operations brief for 123 Main St, Austin TX 78701 — I need the rent estimate, ZIP market context, HUD checks, and any outstanding work items.

## When to prefer this

Choose this endpoint when you need a comprehensive, single-call rental operations snapshot for one specific property address, including market rent benchmarks, regulatory compliance checks, and actionable work items — especially for Turnkey investment workflows. Prefer this over generic property lookup tools when HUD compliance validation and structured next-call guidance are required. Not suitable for bulk property screening, tenant background checks, automated rent-setting, or property valuation.

## Known failure modes

- 402 Payment Required — unpaid POST returns current provider readiness without reserving capacity; payment must accompany the request
- Invalid or missing address — address must include a valid 5-digit ZIP code matching the required pattern
- Malformed address string — address exceeding 200 characters or under 5 characters is rejected
- Provider data unavailability — RentCast or HUD data may be unavailable for some addresses, resulting in partial results
- Unsupported ZIP code — some rural or non-standard ZIP codes may lack sufficient market context data

## How this service works

Review one rental property. Returns non-PII RentCast facts, a third-party rent estimate, ZIP market context, Locus/HUD checks, work items, and validated nextCalls. The exact unpaid POST reports current provider readiness before a 402; it does not reserve capacity. Price includes up to three Turnkey signatures. No screening, rent-setting, valuation, or recommendation. Private, no-store. npx @velinussage/locus-agent-skill add.

## Output

A structured operations brief containing: non-PII RentCast property facts, a third-party rent estimate, ZIP-level rental market context, Locus and HUD compliance check results, a list of actionable work items, and validated next-call recommendations. Includes up to three Turnkey signatures. Does not include tenant screening, valuation opinions, or rental-setting recommendations. Response is not stored by the provider.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "pattern": "(?:^|[\\s,])\\d{5}(?:-\\d{4})?\\s*$",
   "maxLength": 200,
   "minLength": 5
  }
 }
}
```

## 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-rental-operations-brief-34aed591/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)
