Compile an address and structured project intent into a preliminary zoning verdict, cited
Compile an address and structured project intent into a preliminary zoning verdict, cited conditions, approval path, versioned evidence and EdDSA JWS. $3 USDC on Base; pack_gap refusals are never charged. Paid Preflight coverage is narrower than address resolution. Durable workflow status and result retrieval included.
3000000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-08
updated
Provider
zoningverdict.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xc1dAb3C368f8B6595C49Df67f4a17225E0CEB785",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000000",
"maxTimeoutSeconds": 3600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"address": "1000 W Avon Rd, Rochester Hills, MI 48309",
"intent": {
"attributes": {
"height_band": "over_4_to_6_ft",
"yard": "rear"
},
"project_type": "fence",
"taxonomy_version": 2,
"use": "residential_single_family"
},
"request_id": "replace-with-a-fresh-random-uuid-per-purchase"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"poll_after_ms": 5000,
"status": "queued",
"workflow_id": "00000000-0000-4000-8000-000000000000"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"address": {
"maxLength": 500,
"minLength": 8,
"type": "string"
},
"intent": {
"properties": {
"attributes": {
"type": "object"
},
"project_type": {
"enum": [
"building_addition",
"accessory_dwelling_unit",
"detached_accessory_structure",
"fence",
"home_occupation",
"use_conversion"
]
},
"taxonomy_version": {
"const": 2
},
"use": {
"type": "string"
}
},
"required": [
"taxonomy_version",
"project_type",
"use",
"attributes"
],
"type": "object"
},
"request_id": {
"description": "Fresh cryptographically random purchase ID. Retain for retry; never reuse for different input.",
"maxLength": 128,
"minLength": 32,
"type": "string"
}
},
"required": [
"address",
"request_id",
"intent"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"access_token": {
"type": "string"
},
"poll_after_ms": {
"type": "integer"
},
"result": {
"type": [
"object",
"null"
]
},
"status": {
"enum": [
"queued",
"compiling",
"settling",
"completed",
"refused",
"failed",
"payment_review"
]
},
"workflow_id": {
"type": "string"
}
},
"required": [
"workflow_id",
"status"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://zoningverdict.com/api/v1/preflights" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://zoningverdict.com/api/v1/preflights");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://zoningverdict.com/api/v1/preflights")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1366.json, and this resource appears in /discovery/resources and /discovery/search.