Building Permits

Phoenix, AZ

Phoenix permit data is on the roadmap. No live public feed available โ€” Accela portal returned 404, CKAN dataset frozen 2023, ArcGIS hub has no permits dataset. Investigating direct PRA / scrape options.

Total permits

0

Last 30 days

0

Total valuation

โ€”

Status

roadmap

No live public feed available โ€” Accela portal returned 404, CKAN dataset frozen 2023, ArcGIS hub has no permits dataset. Investigating direct PRA / scrape options.

Most recent permits

No permits indexed yet for Phoenix. Join the waitlist to be notified when this city goes live.

How to pull Phoenix permits

# curl
curl "https://permitflow.dev/api/public/v1/permits?city=Phoenix&state=AZ" \
  -H "Authorization: Bearer YOUR_KEY"
// JavaScript
const res = await fetch(
  "https://permitflow.dev/api/public/v1/permits?city=Phoenix&state=AZ",
  { headers: { Authorization: "Bearer " + KEY } }
);
const { data } = await res.json();
# Python
import requests
r = requests.get(
    "https://permitflow.dev/api/public/v1/permits",
    params={"city": "Phoenix", "state": "AZ"},
    headers={"Authorization": f"Bearer {KEY}"},
)
permits = r.json()["data"]

Nearby cities in Arizona

See all Arizona cities โ†’