# Orlando STR License Check

> Orlando STR License Check 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 whether a given Orlando, Florida street address holds an active short-term rental license and returns license details from City of Orlando open data.

## Facts

- Endpoint: GET https://x402-mcp.onrender.com/us/orl/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/orlando-str-license-check-3dfab967
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YzYy70F-jpa9iO1gux8kp

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 orlando-str-license-check-3dfab967
```

Example prompt: Can you check if the property at 123 Lake Shore Drive, Orlando, FL has an active short-term rental license — I want to know the license number, status, and when it expires?

## When to prefer this

Use this endpoint when you specifically need to verify short-term rental licensing for properties in Orlando, Florida. It queries live City of Orlando open data, making it more current than scraped or cached sources. Prefer this over generic property lookup services when the specific requirement is STR permit compliance in Orlando. For other cities, use the sibling endpoints (Denver, New Orleans, Minneapolis, etc.).

## Known failure modes

- Address not found in City of Orlando records — returns empty result or null license data
- Address exists but has no STR license on file — returns no license status
- Ambiguous or malformed address string — may return wrong property or error
- City of Orlando open data API unavailable — upstream service error causing failed lookup
- Non-Orlando address submitted — out of jurisdiction, no results returned

## How this service works

Does this Orlando address hold a short-term rental license? Query any street address in Orlando, Florida and get license number, status, issued/expire dates, and holder name. For host compliance and agent workflows. Input: address string. Output: JSON, live City of Orlando open data.

## Output

A JSON object containing the short-term rental license number, current status (active/inactive/expired), issue date, expiration date, and the name of the license holder for the queried Orlando address, sourced live from City of Orlando 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/orlando-str-license-check-3dfab967/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)
