# LegalPulse Tenant Rights Guidance

> LegalPulse Tenant Rights Guidance is a paid API for AI agents from legalpulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns state-specific tenant rights information covering eviction, repairs, habitability, lease-break, rent control, and discrimination, with landlord obligations, governing statutes, deadlines, and actionable next steps.

## Facts

- Endpoint: GET https://legalpulse.theaslangroupllc.com/api/legal/tenant
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/legalpulse-tenant-rights-guidance-a0f1a11b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_x6EgZamBY_qWkd9fwIFsK

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 legalpulse-tenant-rights-guidance-a0f1a11b
```

Example prompt: My landlord in Colorado is refusing to fix the heat and I think they want to push me out — what are my tenant rights around habitability and retaliatory eviction in Colorado, and what steps should I take to recover my security deposit?

## When to prefer this

Use this endpoint when a user needs state-specific, actionable tenant rights guidance — especially for security deposit disputes, habitability complaints, eviction defense, lease-break scenarios, or discrimination claims. Prefer this over generic legal Q&A when state law context and specific deadlines or statutes are required.

## Known failure modes

- Unsupported or unrecognized US state returns an error or empty result
- Missing required state parameter causes a 400 bad request
- Ambiguous issue type may return overly broad guidance
- Service unavailable or timeout returns a 5xx error
- Payment not processed correctly returns a 402 payment required

## How this service works

Tenant rights guidance and security-deposit recovery: state-specific rights on eviction, repairs, habitability, lease-break, rent control, and discrimination, with landlord obligations, governing statutes, deadlines, and concrete next steps. For tenant and legal agents.

## Output

A structured response containing state-specific tenant rights details including applicable statutes, landlord obligations, legal deadlines, permitted and prohibited landlord actions, and concrete recommended next steps for the tenant's situation — covering areas such as eviction procedures, habitability standards, security deposit recovery, lease-break rules, rent control, and anti-discrimination protections.

## 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": {
      "issue": {
       "type": "string",
       "description": "security deposit | eviction | repairs | habitability | discrimination | lease-break | rent-control"
      },
      "state": {
       "type": "string",
       "description": "CA | TX | NY | FL | IL | WA | CO"
      }
     }
    }
   },
   "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": {
  "issue": "security deposit",
  "state": "CA",
  "action": "Send certified demand letter; small claims court if ignored",
  "penalty_for_late": "2x deposit + actual damages",
  "itemization_required": true,
  "return_deadline_days": 21
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/legalpulse-tenant-rights-guidance-a0f1a11b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from legalpulse.theaslangroupllc.com](https://www.zero.xyz/host/legalpulse.theaslangroupllc.com/llms.txt)
