# US Rental Diligence Pack

> US Rental Diligence Pack is a paid API for AI agents from x402-mcp.onrender.com, paid per call via x402, $1.5/call, status unknown (last checked 2026-09-14).

Batch-screens up to 5 US rental addresses across 14 major cities for compliance verdicts, license status, violations, and condemnation flags in a single paid call

## Facts

- Endpoint: POST https://x402-mcp.onrender.com/tasks/us-rental-diligence
- Price: $1.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/us-rental-diligence-pack-bad6955d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7PemhhLxh0-U7xlvjyDAV

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 us-rental-diligence-pack-bad6955d -d '<json body>'
```

Example prompt: Can you run a rental compliance diligence check on these five properties at once: 123 Main St in NYC, 456 Oak Ave in San Francisco, 789 Pine Rd in Denver, 321 Elm St in Seattle, and 654 Maple Dr in Chicago? I need to know if any have open violations, licensing problems, or condemned status.

## When to prefer this

Choose this endpoint when you need to screen multiple US rental addresses (up to 5) across different supported cities in a single efficient call rather than making individual per-city requests. It is ideal for portfolio due diligence, multi-city landlord audits, or investor screening workflows where batch processing saves time and cost compared to chaining single-address checks. Prefer the single-address city-specific endpoints (/us/{code}/property-check at $0.01) when checking only one property in a known city.

## Known failure modes

- Unsupported city code returns error or no data for that property
- Address not found in city open-data returns unknown compliance_verdict
- Exceeding 5 properties in a single call may be rejected
- Open-data source unavailable or stale may result in incomplete fields
- Malformed JSON body or missing required fields returns 400-level error
- Payment failure via x402 prevents call from executing

## How this service works

Property due diligence agent pack: multi-city batch housing compliance open data. POST properties[{city_code,address}] (1-5) → per-address compliance_verdict + pack risk_summary in one x402 settle ($1.50 USDC). Portfolio screen across mn sea nyc chi den sf lax bos phi orl nola moco gain kc. Not the single-address $0.01 tier — those stay at /us/{code}/property-check.

## Output

Returns a per-property object for each submitted address containing: compliance_verdict (pass/fail/unknown), license status, open violation records, condemned flag where available, plus a pack-level risk_summary and the city data sources consulted. Coverage depends on city open-data availability across the 14 supported city codes (mn, sea, nyc, chi, den, sf, lax, bos, phi, orl, nola, moco, gain, kc).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/us-rental-diligence-pack-bad6955d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-mcp.onrender.com](https://www.zero.xyz/host/x402-mcp.onrender.com/llms.txt)
