Building Permits
Portland, OR
Portland permit data is shipping next. PortlandMaps OD MapServer/89 endpoint blocked from cloud egress. Needs alternative source or proxy.
Total permits
0
Last 30 days
0
Total valuation
โ
Status
shipping next
PortlandMaps OD MapServer/89 endpoint blocked from cloud egress. Needs alternative source or proxy.
Most recent permits
No permits indexed yet for Portland. Join the waitlist to be notified when this city goes live.
How to pull Portland permits
# curl curl "https://permitflow.dev/api/public/v1/permits?city=Portland&state=OR" \ -H "Authorization: Bearer YOUR_KEY"
// JavaScript
const res = await fetch(
"https://permitflow.dev/api/public/v1/permits?city=Portland&state=OR",
{ headers: { Authorization: "Bearer " + KEY } }
);
const { data } = await res.json();# Python
import requests
r = requests.get(
"https://permitflow.dev/api/public/v1/permits",
params={"city": "Portland", "state": "OR"},
headers={"Authorization": f"Bearer {KEY}"},
)
permits = r.json()["data"]