# MN Rental Compliance

> MN Rental Compliance is a paid API for AI agents from x402-mcp.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up active rental license status, violation history, and condemnation/boarding status for any Minneapolis, MN rental property by street address

## Facts

- Endpoint: GET https://x402-mcp.onrender.com/us/mn/property-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mn-rental-compliance-7bd85e29
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eFqQ3gDcS0sDOuV5BIBDT

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 mn-rental-compliance-7bd85e29
```

Example prompt: Can you check whether the rental property at 2301 Lyndale Ave S, Minneapolis is properly licensed, what tier and how many units are covered, when the license expires, and whether there are any open code violations or condemnation issues?

## When to prefer this

Use this endpoint when you need authoritative, live compliance data specifically for rental properties in Minneapolis, Minnesota. It is the right choice for tenant due diligence, landlord vetting, real estate underwriting, or property management audits in Hennepin County. Prefer this over generic property search tools when you need rental licensing tier, unit count, expiration dates, and code-enforcement case history in a single call.

## Known failure modes

- Address not found in Minneapolis open data — property may not be a rental or address may be malformed
- Property has no rental license record — may be unlicensed or owner-occupied
- Open data API unavailable or rate-limited resulting in service error
- Address outside Minneapolis city limits returns no results
- Ambiguous address string causing incorrect property match

## How this service works

Minneapolis rental license check: is this property licensed? Property due diligence agent path for Minneapolis Minnesota (Hennepin) housing compliance open data. GET ?address= → rental license status/tier/units/expiration, violation history, condemned/boarded, compliance_verdict. Tenant screening, landlord DD, lending. Live City JSON. US network alias of /mn/property-check.

## Output

Returns a JSON object with the property's active rental license details (status, tier, licensed unit count, expiration date), historical and open code-enforcement case records, violation history, and flags indicating whether the property is condemned or boarded — sourced live from City of Minneapolis open data.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/mn-rental-compliance-7bd85e29/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)
