<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: SalimSquared</title>
    <description>The latest articles on DEV Community by SalimSquared (@salimsquared).</description>
    <link>https://dev.to/salimsquared</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3975692%2Fcf115daf-44a5-49f5-a848-2caa5fe0f8c2.png</url>
      <title>DEV Community: SalimSquared</title>
      <link>https://dev.to/salimsquared</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/salimsquared"/>
    <language>en</language>
    <item>
      <title>How to Get Building Permit Data for Any US City (Free, From Official Open Data)</title>
      <dc:creator>SalimSquared</dc:creator>
      <pubDate>Tue, 09 Jun 2026 10:03:54 +0000</pubDate>
      <link>https://dev.to/salimsquared/how-to-get-building-permit-data-for-any-us-city-free-from-official-open-data-3ehc</link>
      <guid>https://dev.to/salimsquared/how-to-get-building-permit-data-for-any-us-city-free-from-official-open-data-3ehc</guid>
      <description>&lt;p&gt;If you're a contractor, real-estate investor, or developer, building permit&lt;br&gt;
data is one of the most useful public datasets in the US, it tells you who's&lt;br&gt;
building, renovating, or installing solar, roofing, and HVAC, by address and date.&lt;br&gt;
Here's how to get it yourself, for free, from official government data.&lt;/p&gt;
&lt;h2&gt;
  
  
  Most US cities publish permits as open data
&lt;/h2&gt;

&lt;p&gt;Cities like Austin, Chicago, New York, LA, and Seattle run open-data portals on&lt;br&gt;
a platform called Socrata. Each portal exposes a public API, no scraping, no key&lt;br&gt;
needed for basic use. For example, Austin's issued construction permits live at&lt;br&gt;
&lt;code&gt;data.austintexas.gov&lt;/code&gt;, dataset &lt;code&gt;3syk-w9eu&lt;/code&gt;.&lt;/p&gt;
&lt;h2&gt;
  
  
  Pulling permits with one query
&lt;/h2&gt;

&lt;p&gt;Socrata uses a query language called SoQL. To get the most recent permits, you&lt;br&gt;
hit the dataset's API endpoint and filter by date. For Austin:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;https://data.austintexas.gov/resource/3syk-w9eu.json?$where=issued_date &amp;gt; '2026-01-01'&amp;amp;$order=issued_date DESC&amp;amp;$limit=50&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;That returns clean JSON: permit type, address, valuation, contractor, dates.&lt;br&gt;
Swap the domain and dataset ID for other cities and you get the same data.&lt;/p&gt;
&lt;h2&gt;
  
  
  The catch
&lt;/h2&gt;

&lt;p&gt;Every city names its columns differently, the date fields vary, and you have to&lt;br&gt;
re-pull and de-duplicate constantly to get only &lt;em&gt;new&lt;/em&gt; permits. Doing this across&lt;br&gt;
even 5 cities by hand gets old fast.&lt;/p&gt;
&lt;h2&gt;
  
  
  The shortcut
&lt;/h2&gt;

&lt;p&gt;I got tired of maintaining this for multiple cities, so I built a tool that&lt;br&gt;
normalizes every city into one schema, runs daily, and returns only new permits, pay only for the rows you get. If you'd rather skip the plumbing, it's here:&lt;br&gt;
&lt;/p&gt;
&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
        &lt;div class="c-embed__cover"&gt;
          &lt;a href="https://apify.com/curative_blanket/us-building-permits" class="c-link align-middle" rel="noopener noreferrer"&gt;
            &lt;img alt="" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fapify.com%2Fog-image%2Factor%3FactorName%3DUS%2BBuilding%2BPermits%2B%25E2%2580%2594%2BMulti-City%252C%2BDaily%2B%2526%2BIncremental%26uniqueName%3Dcurative_blanket%252Fus-building-permits%26categories%3DLEAD_GENERATION%252CREAL_ESTATE%252CDEVELOPER_TOOLS%26users%3D2%26runs%3D2%26pictureUrl%3Dhttps%253A%252F%252Fapify-image-uploads-prod.s3.us-east-1.amazonaws.com%252FwdfRHbFCxeqN0LPYf-actor-YqUBDgQB34l1BKfMc-gTBrwkA7KF-Gemini_Generated_Image_7eqhc77eqhc77eqh-removebg-preview.png%26authorName%3DSalim%26userPictureUrl%3Dhttps%253A%252F%252Fimages.apifyusercontent.com%252F-SiQenSWrsARAmI5HvuHrsafLKcmQMb4HeHet2AEP2E%252Frs%253Afill%253A224%253A224%252Fcb%253A1%252FaHR0cHM6Ly9saDMuZ29vZ2xldXNlcmNvbnRlbnQuY29tL2EvQUNnOG9jSmc0Z3NQQ0hhY0haTHI5QjlVRlJXS3FNSGhTTHhKRWhzZzRkcXN1Rl9wcGJkZF9BPXM5Ni1j.webp" height="420" class="m-0" width="800"&gt;
          &lt;/a&gt;
        &lt;/div&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://apify.com/curative_blanket/us-building-permits" rel="noopener noreferrer" class="c-link"&gt;
            US Building Permits — Multi-City, Daily &amp;amp; Incremental · Apify
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            Fresh building permits from 5 US cities (Austin, Chicago, NYC, LA, Seattle) via official open data. Normalized schema, incremental, pay-per-result. Buil...
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
            &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fapify.com%2Ffavicon.ico%3Ffavicon.2653ilt32bing.ico%3Fdpl%3D00f7c6e9bc" width="48" height="48"&gt;
          apify.com
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


</description>
      <category>leadgeneration</category>
      <category>realestate</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
