Building Permits
Nashville, TN
Nashville permit data is on the roadmap.
Total permits
0
Last 30 days
0
Total valuation
โ
Status
roadmap
Most recent permits
No permits indexed yet for Nashville. Join the waitlist to be notified when this city goes live.
How to pull Nashville permits
# curl curl "https://permitflow.dev/api/public/v1/permits?city=Nashville&state=TN" \ -H "Authorization: Bearer YOUR_KEY"
// JavaScript
const res = await fetch(
"https://permitflow.dev/api/public/v1/permits?city=Nashville&state=TN",
{ headers: { Authorization: "Bearer " + KEY } }
);
const { data } = await res.json();# Python
import requests
r = requests.get(
"https://permitflow.dev/api/public/v1/permits",
params={"city": "Nashville", "state": "TN"},
headers={"Authorization": f"Bearer {KEY}"},
)
permits = r.json()["data"]