# US Building Permit Leads — Multi-City (`carranza-tech/us-building-permit-leads`) Actor

Fresh, normalized building-permit leads across NYC, SF, Chicago, Austin & Seattle. Filter by city, date, cost, keyword, ZIP. One unified schema.

- **URL**: https://apify.com/carranza-tech/us-building-permit-leads.md
- **Developed by:** [Alfredo Carranza](https://apify.com/carranza-tech) (community)
- **Categories:** Lead generation, Real estate
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$4.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## US Building Permit Leads — Multi-City

Fresh, normalized **building-permit leads** from five major US cities in one unified schema. Filter by city, issue date, job cost, work-description keyword, and ZIP. Built for contractors, roofers, solar installers, materials suppliers, and lead-gen agencies who want a clean, current feed of who just pulled a permit — and for what.

### Cities covered

| City | Source | Cost filter | Owner name | Contractor name |
|------|--------|:-----------:|:----------:|:---------------:|
| New York City | DOB NOW: Build – Approved Permits | ✅ | ✅ | ✅ |
| San Francisco | DBI Building Permits | ✅ | ❌ | ❌ |
| Chicago | Building Permits | ✅ | ❌ | ✅ (contact 1) |
| Austin | Issued Construction Permits | ❌ (not published) | ❌ | ❌ |
| Seattle | Built Environment Permits | ✅ | ❌ | ❌ |

All sources are official **open-data (Socrata) APIs** — no login, no CAPTCHA, no proxies. Data is refreshed by the cities themselves, so maintenance is minimal.

### Input

| Field | Type | Description |
|-------|------|-------------|
| `cities` | array | Which cities to pull (default: all five). |
| `since` | string | Only permits issued on/after `YYYY-MM-DD`. |
| `minCost` | integer | Minimum estimated job cost (USD). |
| `keyword` | string | Case-insensitive substring on the work description (e.g. `roof`, `solar`, `pool`). |
| `zipFilter` | array | Restrict to specific 5-digit ZIPs. |
| `maxResultsPerCity` | integer | Cap per city (default 1000). |

### Output — normalized lead schema

````

city, permit\_id, permit\_type, work\_description, status,
issue\_date, applied\_date, estimated\_cost,
address, zip, latitude, longitude,
owner\_name, contractor\_name, contractor\_phone, source\_url

````

### Known limitations (read before buying)

- **Field coverage varies by city** (see table). Not every city publishes cost, owner, or contractor. Fields are `null` where the source doesn't provide them — never fabricated.
- **Austin has no job cost** in its public dataset. If you set `minCost`, Austin leads are excluded (can't verify the threshold).
- **`contractor_phone`** is not available in the current public datasets for any city; the field exists for schema stability and forward compatibility.
- **Date semantics** = permit *issued* date. "Applied" date is included where available.
- These are **public records**. The product's value is unification, filtering, freshness, and delivery — not exclusive data.

### Pricing

Pay-per-event: one **`permit-lead`** event per delivered lead. Configure the price in the Apify Console → Publication → Monetization.

### Local development

```bash
python3.11 -m venv .venv
./.venv/bin/pip install -r requirements.txt
## edit storage/key_value_stores/default/INPUT.json
APIFY_LOCAL_STORAGE_DIR=./storage ./.venv/bin/python -m src
````

Pure-stdlib fetch engine (`src/engine.py`, `src/cities.py`) is import-safe and testable without the SDK via `test_local.py`.

### Roadmap

- Fix `contractor_phone` sourcing where a secondary dataset exposes it.
- Add cities weekly (LA needs an app token; Boston, Seattle county, Denver, Portland are candidates) — each new city widens the lead over single-city competitors.

# Actor input Schema

## `cities` (type: `array`):

Which cities to pull permit leads from.

## `since` (type: `string`):

Only return permits issued on or after this date. Leave empty for no date filter.

## `minCost` (type: `integer`):

Only return permits with an estimated/reported job cost at or above this value. Note: Austin does not publish job cost, so an Austin lead is excluded when this filter is set.

## `keyword` (type: `string`):

Case-insensitive substring match against the permit's work description (e.g. 'roof', 'solar', 'pool', 'kitchen').

## `zipFilter` (type: `array`):

Restrict results to these 5-digit ZIP codes. Leave empty for all ZIPs.

## `maxResultsPerCity` (type: `integer`):

Cap on how many leads to return per city.

## Actor input object example

```json
{
  "cities": [
    "nyc",
    "sf",
    "chicago",
    "austin",
    "seattle",
    "los_angeles",
    "mesa",
    "cambridge"
  ],
  "since": "2026-06-01",
  "minCost": 10000,
  "keyword": "roof",
  "zipFilter": [
    "94118",
    "94132"
  ],
  "maxResultsPerCity": 1000
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("carranza-tech/us-building-permit-leads").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("carranza-tech/us-building-permit-leads").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call carranza-tech/us-building-permit-leads --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=carranza-tech/us-building-permit-leads",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "US Building Permit Leads — Multi-City",
        "description": "Fresh, normalized building-permit leads across NYC, SF, Chicago, Austin & Seattle. Filter by city, date, cost, keyword, ZIP. One unified schema.",
        "version": "0.1",
        "x-build-id": "W8JqSvrNJKOOkEYWD"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/carranza-tech~us-building-permit-leads/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-carranza-tech-us-building-permit-leads",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/carranza-tech~us-building-permit-leads/runs": {
            "post": {
                "operationId": "runs-sync-carranza-tech-us-building-permit-leads",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/carranza-tech~us-building-permit-leads/run-sync": {
            "post": {
                "operationId": "run-sync-carranza-tech-us-building-permit-leads",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "cities"
                ],
                "properties": {
                    "cities": {
                        "title": "Cities",
                        "type": "array",
                        "description": "Which cities to pull permit leads from.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "nyc",
                                "sf",
                                "chicago",
                                "austin",
                                "seattle",
                                "los_angeles",
                                "mesa",
                                "cambridge"
                            ],
                            "enumTitles": [
                                "New York City",
                                "San Francisco",
                                "Chicago",
                                "Austin",
                                "Seattle",
                                "Los Angeles",
                                "Mesa AZ",
                                "Cambridge MA"
                            ]
                        },
                        "default": [
                            "nyc",
                            "sf",
                            "chicago",
                            "austin",
                            "seattle",
                            "los_angeles",
                            "mesa",
                            "cambridge"
                        ]
                    },
                    "since": {
                        "title": "Issued since (YYYY-MM-DD)",
                        "type": "string",
                        "description": "Only return permits issued on or after this date. Leave empty for no date filter."
                    },
                    "minCost": {
                        "title": "Minimum estimated cost (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Only return permits with an estimated/reported job cost at or above this value. Note: Austin does not publish job cost, so an Austin lead is excluded when this filter is set."
                    },
                    "keyword": {
                        "title": "Work description keyword",
                        "type": "string",
                        "description": "Case-insensitive substring match against the permit's work description (e.g. 'roof', 'solar', 'pool', 'kitchen')."
                    },
                    "zipFilter": {
                        "title": "ZIP codes",
                        "type": "array",
                        "description": "Restrict results to these 5-digit ZIP codes. Leave empty for all ZIPs.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResultsPerCity": {
                        "title": "Max results per city",
                        "minimum": 1,
                        "maximum": 50000,
                        "type": "integer",
                        "description": "Cap on how many leads to return per city.",
                        "default": 1000
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
