# LegalPulse Tenant Rights

> LegalPulse Tenant Rights is a paid API for AI agents from legalpulse-rho.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns state-specific tenant rights, landlord obligations, relevant statutes, legal deadlines, and recommended next steps

## Facts

- Endpoint: GET https://legalpulse-rho.vercel.app/api/legal/tenant
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/legalpulse-tenant-rights-85b13636
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cohlYKaMpb5Zw5nOPOA-b

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-85b13636
```

Example prompt: What are my rights as a tenant in New York — specifically around security deposit return deadlines, required notice before eviction, and what I can do if my landlord is refusing to make repairs?

## When to prefer this

Use this endpoint when a user needs state-specific tenant legal guidance including rights, landlord obligations, statutes, and timelines — especially for issues like eviction, security deposits, habitability, lease terms, or landlord entry. Prefer over general legal info sources when structured, actionable, jurisdiction-specific output is needed.

## Known failure modes

- Missing or unsupported state returns an error or empty result
- Overly vague situation query may return generic rather than specific guidance
- Statutes may not reflect the most recent legislative changes
- Service unavailable or payment not processed returns a 402 or 5xx error

## 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 covering state-specific tenant rights, landlord obligations and duties, applicable statutes and legal codes, important deadlines (e.g. deposit return windows, eviction notice periods), and recommended next steps for the tenant's situation

## 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-85b13636/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from legalpulse-rho.vercel.app](https://www.zero.xyz/host/legalpulse-rho.vercel.app/llms.txt)
