# KC Exterior Building Violations

> KC Exterior Building Violations 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-14).

Checks a Kansas City, MO address for open exterior building code violations, returning case numbers, ordinance citations, status, and corrective actions from city open data.

## Facts

- Endpoint: GET https://x402-mcp.onrender.com/us/kc/property-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kc-exterior-building-violations-f595a3ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3qBTkJxbuDzPo8qgS8DF2

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 kc-exterior-building-violations-f595a3ad
```

Example prompt: Can you check if 4200 Main Street in Kansas City, Missouri has any open exterior building code violations? I need the case numbers, ordinance citations, and current status.

## When to prefer this

Use this endpoint when you specifically need exterior building code violation data for a Kansas City, Missouri address. It is purpose-built for KC property compliance checks, unlike generic property APIs. Ideal for landlord due diligence, real estate acquisition screening, or tenant research workflows focused on KC properties. Prefer over manual city portal lookups when integrating compliance checks into automated agent workflows.

## Known failure modes

- Address not found or not recognized by KC open data — returns empty results or error
- Address outside Kansas City, MO jurisdiction — no results returned
- City open data API unavailable — upstream service error
- Ambiguous or malformed address string — no matching records
- Only exterior violations are covered; interior violations may not appear

## How this service works

Does this Kansas City, Missouri address have open exterior building code violations? Query a street address and get case numbers, ordinance citations, status, and corrective action from city open data. For landlord diligence and agent workflows. Input: address string. Output: JSON, live City of Kansas City open data.

## Output

Returns JSON data from Kansas City open data including: open exterior building code violation case numbers, specific ordinance citations, current case status, and required corrective actions for the queried address.

## 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/kc-exterior-building-violations-f595a3ad/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)
