## zoopla/property-history

`GET /v1/zoopla/property-history`

The recorded sales of one address (date, price, change since the sale before) and the listings the portal has seen for it.

*Zoopla property history*

| Parameter | Required | Description |
| --- | --- | --- |
| `uprn` | yes | The property's UPRN, from zoopla/property or zoopla/estimates — e.g. `10013983744` |
| `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:** 2 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/property-history?uprn=10013983744" \
  -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
{
  "_warnings": [],
  "listings": [],
  "platform": "example",
  "sales": [
    {
      "change": 0,
      "change_pct": 0,
      "date": "2026-09-01T12:00:00Z",
      "price": 0
    }
  ],
  "type": "example",
  "uprn": "example"
}
```

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