# Track recently sold homes in Seattle

**Use case:** 

Get homes sold in Seattle in the last 30 days from Redfin — sale price, beds/baths, sale/tax history, and Redfin Estimate.

## Input

```json
{
  "location": "Seattle",
  "status": "sold",
  "soldWithinDays": 30,
  "includeDetails": true,
  "maxItems": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "propertyId": {
    "label": "Property ID",
    "format": "number"
  },
  "listingId": {
    "label": "Listing ID",
    "format": "number"
  },
  "mlsId": {
    "label": "MLS #",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "streetLine": {
    "label": "Address",
    "format": "text"
  },
  "unitNumber": {
    "label": "Unit",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip": {
    "label": "ZIP",
    "format": "text"
  },
  "countryCode": {
    "label": "Country",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "text"
  },
  "longitude": {
    "label": "Longitude",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "pricePerSqFt": {
    "label": "Price / sqft",
    "format": "number"
  },
  "hoa": {
    "label": "HOA",
    "format": "number"
  },
  "sqFt": {
    "label": "Sq ft",
    "format": "number"
  },
  "lotSize": {
    "label": "Lot size",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "number"
  },
  "stories": {
    "label": "Stories",
    "format": "number"
  },
  "propertyType": {
    "label": "Property type",
    "format": "text"
  },
  "mlsStatus": {
    "label": "MLS status",
    "format": "text"
  },
  "daysOnMarket": {
    "label": "Days on market",
    "format": "number"
  },
  "isNewConstruction": {
    "label": "New construction",
    "format": "text"
  },
  "hasVirtualTour": {
    "label": "Virtual tour",
    "format": "text"
  },
  "has3DTour": {
    "label": "3D tour",
    "format": "text"
  },
  "numPhotos": {
    "label": "# photos",
    "format": "number"
  },
  "photos": {
    "label": "Photos",
    "format": "array"
  },
  "tour3dScan": {
    "label": "3D scan URL",
    "format": "text"
  },
  "listingAgentName": {
    "label": "Listing agent",
    "format": "text"
  },
  "listingBrokerName": {
    "label": "Listing broker",
    "format": "text"
  },
  "openHouseStart": {
    "label": "Open house start",
    "format": "text"
  },
  "openHouseName": {
    "label": "Open house",
    "format": "text"
  },
  "listingRemarks": {
    "label": "Remarks",
    "format": "text"
  },
  "redfinEstimate": {
    "label": "Redfin Estimate",
    "format": "number"
  },
  "apn": {
    "label": "APN",
    "format": "text"
  },
  "countyName": {
    "label": "County",
    "format": "text"
  },
  "saleHistory": {
    "label": "Sale history",
    "format": "array"
  },
  "taxHistory": {
    "label": "Tax history",
    "format": "array"
  },
  "schools": {
    "label": "Schools",
    "format": "array"
  },
  "listingAgentPhone": {
    "label": "Agent phone",
    "format": "text"
  },
  "listingBrokerPhone": {
    "label": "Broker phone",
    "format": "text"
  },
  "totalViews": {
    "label": "Views",
    "format": "number"
  },
  "favoriteCount": {
    "label": "Favorites",
    "format": "number"
  },
  "detailPhotos": {
    "label": "All photos (detail)",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Redfin API Scraper](https://apify.com/rl1987/redfin-api-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rl1987/redfin-api-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

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

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
