Instant zone, rules, and overlay data for any South East Queensland address. One API call. Clean JSON. No scraping.
Live demo
Everything a property developer, valuer, or proptech team needs. Structured JSON, no HTML parsing.
Zone code and name, height limits, site coverage, setbacks, permitted uses β all structured as clean JSON.
Flood risk (river + overland), character heritage overlay, and school catchments in a single call.
Brisbane City Council, Gold Coast City Council, and Moreton Bay Regional Council. Sunshine Coast coming May 2026.
Start free. Upgrade when you scale.
One API call. Clean JSON.
curl -G https://zoneiq.com.au/api/lookup \ --data-urlencode \ "address=1 George St Brisbane QLD" \ -H "X-Api-Key: YOUR_KEY"
const res = await fetch(
'/api/lookup?address=' +
encodeURIComponent(address),
{ headers: {
'X-Api-Key': 'YOUR_KEY'
}}
)
const data = await res.json()
console.log(data.zone.name)
// "Centre"
console.log(data.rules.max_height_m)
// null (height overlay applies)import httpx
r = httpx.get(
"https://zoneiq.com.au/api/lookup",
params={"address": "1 George St Brisbane QLD"},
headers={"X-Api-Key": "YOUR_KEY"}
)
data = r.json()
print(data["zone"]["name"])
# "Centre"
print(data["rules"]["max_storeys"])
# NoneFree tier is 100 requests/day. No credit card required.