Building Permits
Charlotte, NC
Charlotte permit data is shipping next. Mecklenburg County ArcGIS endpoint (Cloudflare-protected). Needs scraper with browser-like headers or alternative source.
Total permits
0
Last 30 days
0
Total valuation
โ
Status
shipping next
Mecklenburg County ArcGIS endpoint (Cloudflare-protected). Needs scraper with browser-like headers or alternative source.
Most recent permits
No permits indexed yet for Charlotte. Join the waitlist to be notified when this city goes live.
How to pull Charlotte permits
# curl curl "https://permitflow.dev/api/public/v1/permits?city=Charlotte&state=NC" \ -H "Authorization: Bearer YOUR_KEY"
// JavaScript
const res = await fetch(
"https://permitflow.dev/api/public/v1/permits?city=Charlotte&state=NC",
{ headers: { Authorization: "Bearer " + KEY } }
);
const { data } = await res.json();# Python
import requests
r = requests.get(
"https://permitflow.dev/api/public/v1/permits",
params={"city": "Charlotte", "state": "NC"},
headers={"Authorization": f"Bearer {KEY}"},
)
permits = r.json()["data"]