# NOLA STR License Check

> NOLA 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-16).

Checks whether a New Orleans street address holds an active short-term rental license, returning license number, type, subtype, expiration date, and operator/holder details from City of New Orleans open data.

## Facts

- Endpoint: GET https://x402-mcp.onrender.com/us/nola/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/nola-str-license-check-7a50e8f6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_S2Ni7yFDbjglvFOj2DNBB

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 nola-str-license-check-7a50e8f6
```

Example prompt: Can you check if 1234 Magazine Street in New Orleans has an active short-term rental license — I need the license number, type, and expiration date?

## When to prefer this

Use this endpoint when you need to verify short-term rental license compliance specifically for New Orleans, Louisiana addresses. It queries the City of New Orleans open data directly, making it authoritative for NOLA STR compliance. Choose this over generic property lookup services when you need STR-specific fields like license type, subtype, expiration, and operator details for a New Orleans address. For other cities, use the sibling endpoints (Denver, Orlando, Minneapolis, etc.).

## Known failure modes

- Address not found in the City of New Orleans open data — returns empty or null result
- Address has no STR license on record — returns no license data
- Malformed or ambiguous address string may yield no match
- City of New Orleans open data API is temporarily unavailable — service may return an error
- Street address formatting issues (abbreviations, missing unit numbers) may cause lookup failures

## How this service works

Does this New Orleans address hold an active short-term rental license? Query any street address and get license number, type, subtype, expiration, and operator/holder fields from city open data. For host compliance and agent workflows. Input: address string. Output: JSON, live City of New Orleans open data.

## Output

A JSON object containing the STR license number, license type, license subtype, expiration date, and operator/holder name fields sourced live from City of New Orleans open data, along with whether an active license exists 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/nola-str-license-check-7a50e8f6/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)
