Building Permits
Dallas, TX
Dallas 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 Dallas. Join the waitlist to be notified when this city goes live.
How to pull Dallas permits
# curl curl "https://permitflow.dev/api/public/v1/permits?city=Dallas&state=TX" \ -H "Authorization: Bearer YOUR_KEY"
// JavaScript
const res = await fetch(
"https://permitflow.dev/api/public/v1/permits?city=Dallas&state=TX",
{ headers: { Authorization: "Bearer " + KEY } }
);
const { data } = await res.json();# Python
import requests
r = requests.get(
"https://permitflow.dev/api/public/v1/permits",
params={"city": "Dallas", "state": "TX"},
headers={"Authorization": f"Bearer {KEY}"},
)
permits = r.json()["data"]