# Property Sales Records

**Use case:** 

Get up to 1 Brooklyn, NY PropertyShark record with a sale price of at least $500,000. See sale history, addresses, and building details when available.

## Input

```json
{
  "target": "search",
  "geography": "Brooklyn, NY",
  "salePriceMin": 500000,
  "maxItems": 1
}
```

## Output

```json
{
  "propertyId": {
    "label": "Property ID",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source page",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "object"
  },
  "propertyType": {
    "label": "Property type",
    "format": "string"
  },
  "propertyClass": {
    "label": "Property class",
    "format": "string"
  },
  "buildingAreaSqFt": {
    "label": "Building area",
    "format": "number"
  },
  "lotAreaSqFt": {
    "label": "Lot area",
    "format": "number"
  },
  "lotDimensions": {
    "label": "Lot dimensions",
    "format": "object"
  },
  "stories": {
    "label": "Stories",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "integer"
  },
  "coordinates": {
    "label": "Coordinates",
    "format": "object"
  },
  "sales": {
    "label": "Sale history",
    "format": "array"
  },
  "breadcrumbs": {
    "label": "Breadcrumbs",
    "format": "array"
  },
  "walkability": {
    "label": "Walkability",
    "format": "object"
  }
}
```

## About this Actor

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