# NYC Manhattan Demolition Permits Scraper

**Use case:** 

Scrape NYC DOB full demolition permits issued in Manhattan. Get building addresses, contractors, owners, BIN, job numbers and issuance dates in CSV or JSON.

## Input

```json
{
  "maxItems": 50,
  "borough": "MANHATTAN",
  "workType": "Full Demolition",
  "filingReason": "",
  "licenseType": "",
  "permitStatus": ""
}
```

## Output

```json
{
  "permitNumber": {
    "label": "Permit #",
    "format": "text"
  },
  "jobFilingNumber": {
    "label": "Job / Filing #",
    "format": "text"
  },
  "buildingProfileUrl": {
    "label": "Building Profile",
    "format": "link"
  },
  "borough": {
    "label": "Borough",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "workType": {
    "label": "Work Type",
    "format": "text"
  },
  "permitType": {
    "label": "Permit Type",
    "format": "text"
  },
  "permitStatus": {
    "label": "Status",
    "format": "text"
  },
  "issuedDate": {
    "label": "Issued",
    "format": "date"
  },
  "approvedDate": {
    "label": "Approved",
    "format": "date"
  },
  "applicantBusinessName": {
    "label": "Contractor",
    "format": "text"
  },
  "applicantName": {
    "label": "Permittee",
    "format": "text"
  },
  "applicantLicenseNumber": {
    "label": "License #",
    "format": "text"
  },
  "ownerName": {
    "label": "Owner",
    "format": "text"
  },
  "ownerBusinessName": {
    "label": "Owner Business",
    "format": "text"
  },
  "estimatedJobCost": {
    "label": "Est. Cost",
    "format": "number"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [NYC DOB Building Permits Scraper: Contractors & Owners](https://apify.com/scrapers_lat/nyc-dob-permits-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/nyc-dob-permits-scraper) to learn more, explore other use cases, and run it yourself.