mirrored listing x402 eip155:8453

Calculates floor-area ratio and lot coverage and compares use, height, parking and geometr

Calculates floor-area ratio and lot coverage and compares use, height, parking and geometry with an explicit caller-supplied rule set. It does not retrieve or interpret current law, resolve overlays or variances, establish entitlements or provide legal advice; an official planning authority must verify any real project.

Do you run prop.halowerk.com? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
4000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-14
updated

Provider

prop.halowerk.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "4000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "body": {
          "parcel": {
            "lot_area_m2": 1800,
            "parcel_id": "lot-17b",
            "zoning_label": "MU-3-supplied"
          },
          "proposal": {
            "building_footprint_m2": 1050,
            "gross_floor_area_m2": 3900,
            "height_m": 22,
            "parking_spaces": 20,
            "proposed_use": "residential"
          },
          "supplied_rules": {
            "allowed_uses": [
              "residential",
              "retail"
            ],
            "maximum_floor_area_ratio": 2.4,
            "maximum_height_m": 24,
            "maximum_lot_coverage_fraction": 0.65,
            "minimum_parking_spaces": 18
          }
        },
        "bodyType": "json",
        "method": "POST",
        "type": "http"
      }
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "body": {
              "additionalProperties": false,
              "properties": {
                "parcel": {
                  "additionalProperties": false,
                  "properties": {
                    "lot_area_m2": {
                      "maximum": 1000000000000,
                      "minimum": 0.01,
                      "type": "number"
                    },
                    "parcel_id": {
                      "maxLength": 128,
                      "minLength": 1,
                      "type": "string"
                    },
                    "zoning_label": {
                      "maxLength": 128,
                      "minLength": 1,
                      "type": "string"
                    }
                  },
                  "required": [
                    "parcel_id",
                    "lot_area_m2",
                    "zoning_label"
                  ],
                  "type": "object"
                },
                "proposal": {
                  "additionalProperties": false,
                  "properties": {
                    "building_footprint_m2": {
                      "maximum": 1000000000000,
                      "minimum": 0,
                      "type": "number"
                    },
                    "gross_floor_area_m2": {
                      "maximum": 1000000000000,
                      "minimum": 0,
                      "type": "number"
                    },
                    "height_m": {
                      "maximum": 10000,
                      "minimum": 0,
                      "type": "number"
                    },
                    "parking_spaces": {
                      "maximum": 1000000,
                      "minimum": 0,
                      "type": "integer"
                    },
                    "proposed_use": {
                      "maxLength": 128,
                      "minLength": 1,
                      "type": "string"
                    }
                  },
                  "required": [
                    "proposed_use",
                    "gross_floor_area_m2",
                    "building_footprint_m2",
                    "height_m",
                    "parking_spaces"
                  ],
                  "type": "object"
                },
                "supplied_rules": {
                  "additionalProperties": false,
                  "properties": {
                    "allowed_uses": {
                      "items": {
                        "maxLength": 128,
                        "minLength": 1,
                        "type": "string"
                      },
                      "maxItems": 1000,
                      "minItems": 1,
                      "type": "array",
                      "uniqueItems": true
                    },
                    "maximum_floor_area_ratio": {
                      "maximum": 1000,
                      "minimum": 0,
                      "type": "number"
                    },
                    "maximum_height_m": {
                      "maximum": 10000,
                      "minimum": 0,
                      "type": "number"
                    },
                    "maximum_lot_coverage_fraction": {
                      "maximum": 1,
                      "minimum": 0,
                      "type": "number"
                    },
                    "minimum_parking_spaces": {
                      "maximum": 1000000,
                      "minimum": 0,
                      "type": "integer"
                    }
                  },
                  "required": [
                    "allowed_uses",
                    "maximum_floor_area_ratio",
                    "maximum_lot_coverage_fraction",
                    "maximum_height_m",
                    "minimum_parking_spaces"
                  ],
                  "type": "object"
                }
              },
              "required": [
                "parcel",
                "supplied_rules",
                "proposal"
              ],
              "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"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://prop.halowerk.com/v1/zoning-intel"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://prop.halowerk.com/v1/zoning-intel");
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://prop.halowerk.com/v1/zoning-intel")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/15277.json, and this resource appears in /discovery/resources and /discovery/search.