# Recent Los Angeles Building Permits by ZIP

**Use case:** 

Find recently issued Los Angeles building permits in selected ZIP codes and export project type, valuation, description, address, and coordinates.

## Input

```json
{
  "startDate": "2026-01-01",
  "zipCodes": [
    "90012"
  ],
  "sort": "newest",
  "maxItems": 25
}
```

## Output

```json
{
  "permitNumber": {
    "label": "Permit number",
    "format": "string"
  },
  "issueDate": {
    "label": "Issue date",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "zipCode": {
    "label": "ZIP code",
    "format": "string"
  },
  "permitType": {
    "label": "Permit type",
    "format": "string"
  },
  "permitSubType": {
    "label": "Permit subtype",
    "format": "string"
  },
  "useDescription": {
    "label": "Use description",
    "format": "string"
  },
  "valuation": {
    "label": "Valuation",
    "format": "number"
  },
  "workDescription": {
    "label": "Work description",
    "format": "string"
  },
  "solar": {
    "label": "Solar",
    "format": "boolean"
  },
  "electricVehicle": {
    "label": "EV",
    "format": "boolean"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "refreshTime": {
    "label": "Refresh time",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Los Angeles Building Permits Scraper](https://apify.com/automation-lab/los-angeles-building-permits-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/los-angeles-building-permits-scraper) to learn more, explore other use cases, and run it yourself.