## zoopla/sold-prices

`GET /v1/zoopla/sold-prices`

The Land Registry sales in an area as the portal indexes them: each address with its last sale, its attributes and its UPRN, and the area's average prices by property type.

*Zoopla sold prices*

| Parameter | Required | Description |
| --- | --- | --- |
| `location` | yes | A town, area, postcode or outcode, or a path such as london/croydon — e.g. `Oxford` |
| `page` | no | Page number (25 a page) — e.g. `1` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 3 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/zoopla/sold-prices?location=Oxford" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "area": {
    "average_prices": {
      "all": 0,
      "detached": 0,
      "flat": 0,
      "semi_detached": 0,
      "terraced": 0
    },
    "county": "example",
    "name": "example",
    "path": "example",
    "region": "example",
    "short_name": "example",
    "town": "example",
    "url": "https://example.com/example"
  },
  "count": 0,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "address": "example",
      "attributes": {
        "bathrooms": 0,
        "bedrooms": 0,
        "floor_area_sq_m": 0,
        "living_rooms": 0,
        "property_type": "example",
        "tenure": "example"
      },
      "last_sale": {
        "currency": "example",
        "date": "2026-09-01T12:00:00Z",
        "price": 0
      },
      "latitude": 0,
      "longitude": 0,
      "platform": "example",
      "postcode": "example",
      "type": "example",
      "uprn": "example",
      "url": "https://example.com/example"
    }
  ],
  "page": 0,
  "pages": 0,
  "per_page": 0,
  "total": 0
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/zoopla/sold-prices#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/zoopla/sold-prices.json)
