# Scrape New York City Residential Auction Listings

**Use case:** 

Scrape all residential real estate auction listings within New York City to track market trends and competitive pricing. Developers and investment firms can use

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.auction.com/residential/new-york-state/new-york-county/"
    }
  ],
  "maxItems": 300
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "formattedAddress": {
    "label": "Full Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "county": {
    "label": "County",
    "format": "text"
  },
  "zipCode": {
    "label": "ZIP",
    "format": "text"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "propertyTypeGroup": {
    "label": "Type Group",
    "format": "text"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "number"
  },
  "lotSqft": {
    "label": "Lot Sqft",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year Built",
    "format": "number"
  },
  "openingBid": {
    "label": "Opening Bid",
    "format": "number"
  },
  "estimatedValue": {
    "label": "Est. Value",
    "format": "number"
  },
  "sellerCurrentValue": {
    "label": "Seller Value",
    "format": "number"
  },
  "saleType": {
    "label": "Sale Type",
    "format": "text"
  },
  "productType": {
    "label": "Product",
    "format": "text"
  },
  "auctionStartDate": {
    "label": "Auction Start",
    "format": "text"
  },
  "auctionEndDate": {
    "label": "Auction End",
    "format": "text"
  },
  "visibleAuctionStartDate": {
    "label": "Visible Start",
    "format": "text"
  },
  "isOnlineAuction": {
    "label": "Online",
    "format": "boolean"
  },
  "isRemoteBidEnabled": {
    "label": "Remote Bid",
    "format": "boolean"
  },
  "showOpeningBid": {
    "label": "Show Bid",
    "format": "boolean"
  },
  "isHot": {
    "label": "Hot",
    "format": "boolean"
  },
  "isReserveDisplayed": {
    "label": "Reserve",
    "format": "boolean"
  },
  "buyerPremiumAvailable": {
    "label": "Buyer Prem",
    "format": "boolean"
  },
  "financingAvailable": {
    "label": "Financing",
    "format": "boolean"
  },
  "interiorAccessAllowed": {
    "label": "Interior",
    "format": "boolean"
  },
  "isFirstLookEnabled": {
    "label": "First Look",
    "format": "boolean"
  },
  "isDirectOfferEnabled": {
    "label": "Direct Offer",
    "format": "boolean"
  },
  "isThirdPartyOnline": {
    "label": "3rd Party",
    "format": "boolean"
  },
  "occupancyStatus": {
    "label": "Occupancy",
    "format": "text"
  },
  "brokerCommission": {
    "label": "Broker Comm",
    "format": "number"
  },
  "latitude": {
    "label": "Lat",
    "format": "number"
  },
  "longitude": {
    "label": "Lng",
    "format": "number"
  },
  "photos": {
    "label": "Photos",
    "format": "array"
  },
  "primaryPhotoUrl": {
    "label": "Primary Photo",
    "format": "link"
  },
  "photoCount": {
    "label": "# Photos",
    "format": "number"
  },
  "listingStatus": {
    "label": "Status",
    "format": "text"
  },
  "listingStatusGroup": {
    "label": "Status Group",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Auction.com Property Scraper](https://apify.com/crawlerbros/auction-com-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/auction-com-scraper) to learn more, explore other use cases, and run it yourself.