## zoopla/estimates

`GET /v1/zoopla/estimates`

Every address along one street with the portal's sale estimate, its attributes and its recorded sales, plus the street's market line (average price paid, properties sold).

*Zoopla street estimates*

| Parameter | Required | Description |
| --- | --- | --- |
| `path` | yes | A street path from zoopla/streets or zoopla/area — e.g. `london/oxford-road-se19` |
| `page` | no | Page number — e.g. `1` |
| `limit` | no | Addresses per page, 1 to 50 — e.g. `12` |
| `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/estimates?path=london%2Foxford-road-se19" \
  -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
{
  "count": 0,
  "cursor": null,
  "has_more": false,
  "items": [
    {
      "address": "example",
      "attributes": {
        "bathrooms": 0,
        "bedrooms": 0,
        "living_rooms": 0,
        "property_type": "example",
        "tenure": "example"
      },
      "historic_listings": [
        {}
      ],
      "last_sale": {
        "date": "2026-09-01T12:00:00Z",
        "price": 0
      },
      "latitude": 0,
      "longitude": 0,
      "platform": "example",
      "sale_estimate": {
        "confidence": "example",
        "value": 0
      },
      "sales": [
        {}
      ],
      "type": "example",
      "uprn": "example"
    }
  ],
  "page": 0,
  "street": {
    "kind": "example",
    "name": "example",
    "path": "example",
    "short_name": "example"
  },
  "total": 0
}
```

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