# Research Sold Properties

**Use case:** 

Research recently sold Realtor.com properties for comparable-property analysis. Returns address, property details, sale date and the sale price where Realtor.com publishes one — sale prices are not public record in every US state. Change the location to any US market.

## Input

```json
{
  "searchLocations": [
    "Miami, FL"
  ],
  "status": "sold",
  "maxItems": 50,
  "pending": false,
  "contingent": false,
  "foreclosure": false,
  "newConstruction": false,
  "hasOpenHouse": false,
  "sortDirection": "desc",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "status": {
    "label": "Status",
    "format": "string"
  },
  "listPrice": {
    "label": "List price",
    "format": "number"
  },
  "rentPrice": {
    "label": "Rent",
    "format": "number"
  },
  "rentPriceMin": {
    "label": "Rent min",
    "format": "number"
  },
  "rentPriceMax": {
    "label": "Rent max",
    "format": "number"
  },
  "lastSoldPrice": {
    "label": "Last sold price",
    "format": "number"
  },
  "lastSoldDate": {
    "label": "Last sold date",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "stateCode": {
    "label": "State",
    "format": "string"
  },
  "zipCode": {
    "label": "ZIP",
    "format": "string"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sq ft",
    "format": "number"
  },
  "propertyType": {
    "label": "Type",
    "format": "string"
  },
  "agentName": {
    "label": "Agent",
    "format": "string"
  },
  "brokerName": {
    "label": "Brokerage",
    "format": "string"
  },
  "url": {
    "label": "Realtor.com URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Realtor.com Property Listings Scraper ($1 per 1,000 results)](https://apify.com/zapticx/realtor-com-property-listings-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zapticx/realtor-com-property-listings-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/zapticx/realtor-com-property-listings-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
