# Brooklyn Sold Townhouse Comps from Realtor.com

**Use case:** 

Build a recent sold-comps dataset for Brooklyn townhouses to support CMA, appraisal, and investment workflows.

## Input

```json
{
  "location": "Brooklyn, NY",
  "listingType": "sold",
  "maxResults": 50,
  "minPrice": 500000,
  "maxPrice": 2000000,
  "propertyType": "townhouse"
}
```

## Output

```json
{
  "photoUrl": {
    "label": "Photo",
    "format": "image"
  },
  "address": {
    "label": "Address"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "zip": {
    "label": "ZIP"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sq Ft",
    "format": "number"
  },
  "propertyType": {
    "label": "Type"
  },
  "listingStatus": {
    "label": "Status"
  },
  "daysOnMarket": {
    "label": "Days Listed",
    "format": "number"
  },
  "agentName": {
    "label": "Agent"
  },
  "brokerName": {
    "label": "Broker"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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