# Locus Rental Registration Check

> Locus Rental Registration Check 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-15).

Looks up exact-building rental registration and housing-enforcement records for a given address in Minneapolis, New York City, or Seattle from official municipal sources.

## Facts

- Endpoint: POST https://api.locus.report/api/locus-rental-registration-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/locus-rental-registration-check-60be38b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uspHJSY21PKXOgO4-lBvP

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-registration-check-60be38b6 -d '<json body>'
```

Example prompt: Can you check the official rental registration status for 1531 Belmont Ave, Seattle, WA 98122 — I want to know if it's actively registered, how many licensed units it has, and whether there are any enforcement records on file?

## When to prefer this

Choose this endpoint when you need official, source-cited rental registration or housing-enforcement records for a specific building address in Seattle, Minneapolis, or New York City. It is ideal for tenant due diligence, investor compliance checks, or pre-lease verification where exact-building matching matters. Prefer it over general property lookup endpoints when the specific goal is rental licensure or registration status. Do not use it as a legal compliance determination — results are source-bounded reference data.

## Known failure modes

- Address outside covered jurisdictions (Minneapolis, NYC, Seattle) returns a not-covered or uncovered coverage status
- Ambiguous or malformed address may fail to match or resolve to wrong parcel
- No registration records found returns no_records status — not a legal confirmation of non-registration
- Enforcement data not published by source for some jurisdictions returns not_published_by_source status
- Result is source-bounded and explicitly not a legal-rental or compliance decision — misuse as such is a user-side failure
- Address too short (under 5 chars) or too long (over 200 chars) will fail input validation

## How this service works

Exact-building rental registration or license records for Minneapolis, New York City, and Seattle, plus each source's published housing-enforcement components. Returns recorded registration status, dates, units, record ids, query limits, citations, and verify-next questions. Excludes owner, contact, property-name, apartment, narrative, and nearby-address fields. A checked no-match is source-bounded, not a legal-rental or compliance decision.

## Output

Returns a structured JSON object including: jurisdiction and matched address details, registration status (records_found, no_records, not_covered, etc.), individual registration records with record IDs, source status, licensed unit counts, expiration dates, source citations and URLs, enforcement component status and records, condemned/boarded record counts, coverage status, observation metadata (match method, result limits, records examined), and caveats clarifying scope limitations.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "address": {
   "type": "string",
   "maxLength": 200,
   "minLength": 5
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kind": "rental_registration_check",
  "caveats": [
   "Example artifact; not live data or a legal-rental/compliance decision."
  ],
  "subject": {
   "resolution": "parcel",
   "identifiers": [
    {
     "value": "001-example",
     "sourceId": "seattle-rrio-rental-property-registration",
     "namespace": "seattle:sdci-registration",
     "sourceUrl": "https://data.seattle.gov/d/j2xh-c7vt",
     "observedAt": "2026-09-08T00:00:00.000Z"
    }
   ],
   "inputAddress": "1531 Belmont Ave, Seattle, WA 98122",
   "jurisdictionId": "us-wa-seattle",
   "matchedAddress": "1531 BELMONT AVE",
   "unitWasRemoved": false,
   "jurisdictionName": "Seattle, WA",
   "normalizedAddress": "1531 BELMONT AVE",
   "premisesPrecision": "building"
  },
  "summary": {
   "capped": false,
   "enforcementRecords": 0,
   "registrationRecords": 1,
   "condemnedOrBoardedRecords": 0
  },
  "coverage": "covered",
  "components": {
   "enforcement": {
    "status": "not_published_by_source",
    "records": [],
    "observation": {
     "matchMethod": "exact_address_after_canonicalization",
     "resultLimit": 0,
     "sourceScope": "Not published in the RRIO dataset.",
     "queriedAddress": "1531 BELMONT AVE",
     "recordsExamined": 0,
     "premisesPrecision": "building"
    }
   },
   "registration": {
    "source": {
     "sourceId": "seattle-rrio-rental-property-registration",
     "fetchedAt": "2026-09-08T00:00:00.000Z",
     "sourceUrl": "https://data.seattle.gov/d/j2xh-c7vt",
     "sourceName": "Seattle SDCI Rental Property Registration"
    },
    "status": "records_found",
    "records": [
     {
      "id": "001-example",
      "citation": {
       "recordId": "001-example",
       "sourceId": "seattle-rrio-rental-property-registration",
       "fetchedAt": "2026-09-08T00:00:00.000Z",
       "sourceUrl": "https://data.seattle.gov/d/j2xh-c7vt",
       "sourceName": "Seattle SDCI Rental Property Registration"
      },
      "sourceStatus": "Active Registration",
      "licensedUnits": 4,
      "expirationDate": "2027-04-21"
     }
    ],
    "observation": {
     "matchMethod": "exact_address_after_canonicalization",
     "resultLimit": 25,
     "sourceScope": "Seattle SDCI rental-property registration rows.",
     "matchedAddress": "1531 BELMONT AVE",
     "queriedAddress": "1531 BELMONT AVE",
     "recordsExamined": 1,
     "premisesPrecision": "building"
    }
   },
   "condemnedOrBoarded": {
    "status": "not_published_by_source",
    "
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/locus-rental-registration-check-60be38b6/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)
