# PropPulse Landlord Toolkit

> PropPulse Landlord Toolkit is a paid API for AI agents from proppulse.theaslangroupllc.com, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-15).

Provides landlords and property managers with market rent guidance, tenant-screening steps, lease-law summaries, eviction timelines, landlord tax flags, and local rent-control regulations for any market worldwide.

## Facts

- Endpoint: GET https://proppulse.theaslangroupllc.com/api/prop/landlord
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/proppulse-landlord-toolkit-1d389a0f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j1FEpfc_UXLPgrrVwnVlP

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 proppulse-landlord-toolkit-1d389a0f
```

Example prompt: I just got a new rental unit in Seattle, WA — can you pull the landlord toolkit for that market? I need to know the going market rent, how to properly screen a tenant, what the local lease laws and rent-control rules say, how long eviction takes there, and any tax flags I should know about as a landlord.

## When to prefer this

Use this endpoint when a landlord or property-management agent needs a comprehensive, multi-topic regulatory and market briefing for a specific rental market — especially when rent pricing, tenant screening process, lease law, eviction timelines, and rent-control rules are all needed in a single call. Prefer over separate market-rent or lease-law endpoints when breadth across landlord topics matters more than depth on any one topic.

## Known failure modes

- Unsupported or unrecognized market location returns empty or partial results
- Missing required location parameter returns 400 error
- Regulatory data may be outdated for rapidly changing jurisdictions
- Payment not authorized results in 402 Payment Required
- International markets may have less detailed regulatory coverage than US/UK

## How this service works

Landlord toolkit, rent pricing, tenant screening, and lease-law lookup: market rent guidance, tenant-screening steps, lease-law summary, eviction timeline, landlord tax flags, and local landlord/rent-control regulations for any market worldwide. For landlord and property-management agents.

## Output

Returns a structured landlord report for the requested market including: market rent guidance (price range and benchmarks), step-by-step tenant screening process, lease law summary, eviction process timeline and key notice requirements, landlord-specific tax flags, and a summary of local rent-control or landlord-regulation rules.

## 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": {
      "lang": {
       "type": "string",
       "description": "en | es | fr | de | zh | pt | ar | ko"
      },
      "type": {
       "type": "string"
      },
      "units": {
       "type": "string"
      },
      "country": {
       "type": "string",
       "description": "US | UK | CA | DE | AU | IN (optional)"
      },
      "location": {
       "type": "string",
       "description": "Los Angeles, CA | Manchester | Toronto"
      },
      "situation": {
       "type": "string",
       "description": "eviction | lease-renewal | rent-increase | maintenance | screening"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rent_control_applies": true,
  "required_notice_days": 30,
  "max_rent_increase_pct": 3,
  "eviction_timeline_days": 45,
  "security_deposit_max_months": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proppulse-landlord-toolkit-1d389a0f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proppulse.theaslangroupllc.com](https://www.zero.xyz/host/proppulse.theaslangroupllc.com/llms.txt)
