# LA Code Enforcement Open Cases Lookup

> LA Code Enforcement Open Cases Lookup 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-16).

Checks whether a Los Angeles address has open Building & Safety code enforcement cases and returns case numbers, types, district, and parcel ID

## Facts

- Endpoint: GET https://x402-mcp.onrender.com/us/lax/property-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/la-code-enforcement-open-cases-lookup-1e27da24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RuipoZTqXiim8lX2nQtf8

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 la-code-enforcement-open-cases-lookup-1e27da24
```

Example prompt: Can you check if 1234 Sunset Blvd in Los Angeles has any open Building and Safety code enforcement cases? I want to see the case numbers, types, and parcel ID before I sign a lease.

## When to prefer this

Choose this endpoint when you need real-time, live code enforcement case data specifically for Los Angeles addresses from the official LA Open Data source. Prefer this over generic property report services when you need city-level Building & Safety case details (case numbers, types, district, parcel ID) for tenant screening or landlord due diligence in LA. Use sibling endpoints for other cities like Chicago, NYC, Denver, or San Francisco.

## Known failure modes

- Address not found or not recognized in LA Open Data — returns empty results
- Street name or number formatting mismatch causing no results
- Address outside Los Angeles city limits — out-of-scope, no data returned
- LA Open Data API downtime causing request failure
- Ambiguous address string returning incorrect parcel match

## How this service works

Does this Los Angeles address have open Building & Safety code enforcement cases? Query street number + street name and get open case numbers, type, district, and parcel id. For tenant screening and landlord diligence. Input: address string. Output: JSON, live LA Open Data.

## Output

Returns a JSON object containing open Building & Safety code enforcement case numbers, case types, district, and parcel ID for the queried Los Angeles address, sourced live from LA 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/la-code-enforcement-open-cases-lookup-1e27da24/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)
