## zoopla/valuation

`GET /v1/zoopla/valuation`

The portal's valuation of one address, by UPRN or by street address: the current sale and rent estimates with their range and confidence, the estimate's history, the Land Registry sales, live and similar listings nearby, and the schools and stations around it.

*Zoopla valuation*

| Parameter | Required | Description |
| --- | --- | --- |
| `uprn` | no | The property's UPRN, from zoopla/property, zoopla/estimates, zoopla/streets or zoopla/sold-prices (or pass address) — e.g. `200001198316` |
| `address` | no | A street address with its postcode instead of a UPRN — e.g. `45 Princes Avenue, South Croydon CR2 9BE` |
| `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/valuation" \
  -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": [],
  "address": "example",
  "attributes": {
    "property_type": "example"
  },
  "country": "example",
  "estimate_history": [
    {
      "confidence": "example",
      "date": "2026-09-01T12:00:00Z",
      "high": 0,
      "low": 0,
      "value": 0
    }
  ],
  "historic_listings": [],
  "latitude": 0,
  "live_listings": [],
  "longitude": 0,
  "outcode": "example",
  "platform": "example",
  "points_of_interest": [
    {
      "address": "example",
      "distance_miles": 0,
      "latitude": 0,
      "longitude": 0,
      "name": "example",
      "type": "example"
    }
  ],
  "postcode": "example",
  "rent_estimate": {
    "high": 0,
    "low": 0,
    "value": 0
  },
  "sale_estimate": {
    "confidence": "example",
    "high": 0,
    "low": 0,
    "value": 0
  },
  "sales": [],
  "similar_listings": [
    {
      "address": "example",
      "bathrooms": 0,
      "bedrooms": 0,
      "id": "example",
      "image_url": "https://example.com/example",
      "latitude": 0,
      "living_rooms": 0,
      "longitude": 0,
      "platform": "example",
      "price_label": "example",
      "price_qualifier": "example",
      "title": "example",
      "type": "example",
      "url": "https://example.com/example"
    }
  ],
  "similar_properties": [
    {
      "address": "example",
      "attributes": {
        "bathrooms": 0,
        "bedrooms": 0,
        "living_rooms": 0,
        "property_type": "example",
        "tenure": "example"
      },
      "country": "example",
      "historic_listings": [],
      "last_sale": {
        "date": "2026-09-01T12:00:00Z",
        "price": 0
      },
      "latitude": 0,
      "longitude": 0,
      "outcode": "example",
      "platform": "example",
      "postcode": "example",
      "sales": [
        {}
      ],
      "type": "example",
      "uprn": "example"
    }
  ],
  "type": "example",
  "uprn": "example"
}
```

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