# Get UK Sold House Prices in Claude via MCP

**Use case:** 

Ask Claude what homes in a UK town last sold for. Each live listing returns address, UPRN, dated price history, last sold price and date where held.

## Input

```json
{
  "mode": "search",
  "locations": [
    "Wakefield"
  ],
  "propertyType": "For sale",
  "maxResultsPerSearch": 6
}
```

## Output

```json
{
  "address": {
    "label": "Address",
    "format": "string"
  },
  "lastSoldPrice": {
    "label": "Last sold price",
    "format": "string"
  },
  "lastSoldDate": {
    "label": "Last sold date",
    "format": "string"
  },
  "lastSoldValue": {
    "label": "Last sold value",
    "format": "number"
  },
  "listingHistory": {
    "label": "Listing history",
    "format": "array"
  },
  "uprn": {
    "label": "UPRN",
    "format": "string"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Zoopla UK Property API](https://apify.com/johnvc/zoopla-property-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/zoopla-property-api) to learn more, explore other use cases, and run it yourself.