# Gainesville Code Cases

> Gainesville Code Cases 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-13).

Checks a Gainesville, FL street address for open code enforcement cases, returning case numbers, types, status, and parcel data from city open data.

## Facts

- Endpoint: GET https://x402-mcp.onrender.com/us/gain/property-check
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gainesville-code-cases-9deee440
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OywttoAdBR3MYRDiCpycK

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 gainesville-code-cases-9deee440
```

Example prompt: Can you check if 1234 NW 5th Avenue in Gainesville, Florida has any open code enforcement cases? I need the case numbers, types, and their current status before I finalize this rental deal.

## When to prefer this

Use this endpoint when you need to check code enforcement compliance specifically for a Gainesville, Florida property address. It queries live city open data and is purpose-built for landlord diligence, tenant safety checks, and agent workflows. Prefer this over generic property APIs when the property is in Gainesville, FL and you need official city code case records rather than estimated or aggregated data.

## Known failure modes

- Address not found in Gainesville open data — returns empty case list or error
- Address outside Gainesville city limits — no results or city data scope error
- Open data source temporarily unavailable — upstream connectivity error
- Malformed address input — query fails to match any parcel
- No open cases exist — returns empty array (not an error, valid result)

## How this service works

Does this Gainesville, Florida address have open code enforcement cases? Query a street address and get case numbers, types, status, and parcel from city open data. For landlord diligence and agent workflows. Input: address string. Output: JSON, live City of Gainesville open data.

## Output

Returns a JSON object containing any open code enforcement cases for the queried Gainesville FL address, including case numbers, case types, current status, and associated parcel information sourced live from the City of Gainesville open data portal.

## 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/gainesville-code-cases-9deee440/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)
