has coordinates
- - Tables have "Rent PCM", "Deposit", "Bills Included", etc. (NOT bedrooms)
- - Description in elements with class containing "description"
- """
- soup = BeautifulSoup(html, "lxml")
- details: dict = {}
-
- # --- Title from h1 ---
- h1 = soup.select_one("h1")
- if h1:
- title_text = h1.get_text(strip=True)
- # Validate it's not a nav/modal element (e.g. "Log in")
- if len(title_text) > 10 and "log in" not in title_text.lower():
- details["title"] = title_text
- postcode = _extract_postcode(title_text)
- if postcode:
- details["postcode"] = postcode
-
- # --- Coordinates from map element ---
- # The map div has id="map" with data-lat and data-lng
- map_el = soup.select_one("#map[data-lat]")
- if not map_el:
- # Fallback: any element with data-lat (but prefer #map)
- map_el = soup.select_one("[data-lat]")
- if map_el:
- lat = map_el.get("data-lat")
- lng = map_el.get("data-lng") or map_el.get("data-lon")
- if lat and lng:
- try:
- details["lat"] = float(lat)
- details["lng"] = float(lng)
- except ValueError:
- pass
-
- # --- Parse tables for rent and property details ---
- for table in soup.select("table"):
- for row in table.select("tr"):
- cells = row.select("td")
- if len(cells) < 2:
- continue
- label = cells[0].get_text(strip=True).lower()
- value = cells[1].get_text(strip=True)
-
- if "rent" in label and "pcm" in label:
- match = re.search(r"£([\d,]+)", value)
- if match:
- details["price"] = int(match.group(1).replace(",", ""))
- elif "bedroom" in label:
- match = re.search(r"(\d+)", value)
- if match:
- details["bedrooms"] = int(match.group(1))
- elif "bathroom" in label:
- match = re.search(r"(\d+)", value)
- if match:
- details["bathrooms"] = int(match.group(1))
- elif "type" in label and "property" in label:
- details["property_type"] = value
- elif "available" in label or "move" in label:
- details["available_date"] = value
- elif "furnish" in label:
- details["furnished"] = value
-
- # --- Coordinates from inline JavaScript (last resort) ---
- if "lat" not in details:
- for script in soup.select("script"):
- text = script.string or ""
- lat_match = re.search(r'"latitude"\s*:\s*([\d.-]+)', text)
- lng_match = re.search(r'"longitude"\s*:\s*([\d.-]+)', text)
- if lat_match and lng_match:
- try:
- details["lat"] = float(lat_match.group(1))
- details["lng"] = float(lng_match.group(1))
- except ValueError:
- pass
- break
-
- # --- Description for floor area ---
- desc_el = soup.select_one(".description, [class*='description'], #description")
- if desc_el:
- details["description"] = desc_el.get_text(strip=True)
-
- return details
-
-
-# ---------------------------------------------------------------------------
-# Property type mapping & floor area
-# ---------------------------------------------------------------------------
-
-
-def map_property_type(raw_type: str | None) -> str:
- """Map OpenRent property type to canonical type."""
- if not raw_type:
- return "Other"
- canonical = PROPERTY_TYPE_MAP.get(raw_type)
- if canonical:
- return canonical
- lower = raw_type.lower()
- if "room" in lower or "shared" in lower:
- return "Other"
- if (
- "flat" in lower
- or "apartment" in lower
- or "maisonette" in lower
- or "studio" in lower
- ):
- return "Flats/Maisonettes"
- if "detached" in lower and "semi" not in lower:
- return "Detached"
- if "semi" in lower:
- return "Semi-Detached"
- if "terrace" in lower or "mews" in lower:
- return "Terraced"
- if "house" in lower:
- return "Detached"
- log.debug("Unknown property type: %r — mapping to Other", raw_type)
- return "Other"
-
-
-def parse_floor_area(description: str | None) -> float | None:
- """Try to extract floor area from description text."""
- if not description:
- return None
- m = re.search(r"([\d,]+(?:\.\d+)?)\s*sq\.?\s*ft", description, re.IGNORECASE)
- if m:
- sqft = float(m.group(1).replace(",", ""))
- return validate_floor_area(round(sqft * 0.092903, 1))
- m = re.search(r"([\d,]+(?:\.\d+)?)\s*sq\.?\s*m", description, re.IGNORECASE)
- if m:
- return validate_floor_area(round(float(m.group(1).replace(",", "")), 1))
- return None
-
-
-# ---------------------------------------------------------------------------
-# Transform & search
-# ---------------------------------------------------------------------------
-
-
-def _resolve_outcode_postcodes(
- outcode: str,
- pc_coords: dict[str, tuple[float, float]],
-) -> list[str]:
- """Get all postcodes for an outcode from the postcode coordinates lookup."""
- # ONSPD 7-char format: 4-char outcodes have no space before incode
- # (e.g., "BH191AB"), while shorter outcodes do (e.g., "E14 5AB").
- prefix = outcode + " "
- results = [pcd for pcd in pc_coords if pcd.startswith(prefix)]
- if not results and len(outcode) >= 4:
- results = [pcd for pcd in pc_coords if pcd.startswith(outcode) and len(pcd) > len(outcode)]
- return results
-
-
-def _parse_or_date(date_str: str) -> str:
- """Parse OpenRent date strings to ISO format (YYYY-MM-DD).
- Handles 'Today', 'Tomorrow', and 'DD Month, YYYY' formats."""
- if not date_str:
- return ""
- stripped = date_str.strip()
- lower = stripped.lower()
- if lower == "today":
- from datetime import datetime
- return datetime.now().strftime("%Y-%m-%d")
- if lower == "tomorrow":
- from datetime import datetime, timedelta
- return (datetime.now() + timedelta(days=1)).strftime("%Y-%m-%d")
- # Try "DD Month, YYYY" format (e.g., "01 April, 2026")
- from datetime import datetime
- for fmt in ("%d %B, %Y", "%d %B %Y"):
- try:
- return datetime.strptime(stripped, fmt).strftime("%Y-%m-%d")
- except ValueError:
- continue
- return date_str # Return as-is if unparseable
-
-
-def transform_property(
- search_data: dict,
- detail_data: dict | None,
- pc_index: PostcodeSpatialIndex,
- pc_coords: dict[str, tuple[float, float]],
-) -> dict | None:
- """Transform OpenRent property data into our output schema.
-
- Merges data from the search results page and (optionally) the detail page.
- Uses pc_coords (postcode -> lat/lng) as a fallback when coordinates are
- missing but a postcode is available.
- """
- detail = detail_data or {}
-
- # Merge: detail page data takes precedence
- lat = detail.get("lat") or search_data.get("lat")
- lng = detail.get("lng") or search_data.get("lng")
- price = detail.get("price") or search_data.get("price")
- if not price or int(price) <= 0:
- return None
-
- frequency = search_data.get("frequency", "monthly")
-
- # Get postcode: detail page > search card
- postcode = detail.get("postcode") or search_data.get("postcode")
-
- if lat is not None and lng is not None:
- # Validate coordinates are in England
- if not (49 <= lat <= 56 and -7 <= lng <= 2):
- log.debug("Coords outside England: lat=%.4f lng=%.4f — skipping", lat, lng)
- return None
- if not postcode:
- if pc_index:
- postcode = pc_index.nearest(lat, lng)
- elif search_data.get("outcode"):
- # No spatial index — try outcode lookup as fallback
- outcode_pcs = _resolve_outcode_postcodes(
- search_data["outcode"],
- pc_coords,
- )
- if outcode_pcs:
- postcode = outcode_pcs[0]
- elif postcode:
- # Have postcode but no coordinates — look up centroid from arcgis data
- coords = pc_coords.get(postcode)
- if coords:
- lat, lng = coords
- else:
- log.debug("Postcode %s not in arcgis data — skipping", postcode)
- return None
- elif search_data.get("outcode"):
- # Have only outcode — find postcodes in that outcode and use centroid
- outcode = search_data["outcode"]
- outcode_postcodes = _resolve_outcode_postcodes(outcode, pc_coords)
- if outcode_postcodes:
- # Use the first postcode as a rough approximation
- postcode = outcode_postcodes[0]
- lat, lng = pc_coords[postcode]
- else:
- log.debug("No postcodes found for outcode %s — skipping", outcode)
- return None
- else:
- return None
-
- if not postcode:
- log.debug("No postcode for property — skipping")
- return None
-
- raw_beds = detail.get("bedrooms") or search_data.get("bedrooms", 0) or 0
- raw_baths = detail.get("bathrooms") or search_data.get("bathrooms", 0) or 0
- bedrooms = raw_beds if raw_beds <= MAX_BEDROOMS else 0
- bathrooms = raw_baths if raw_baths <= MAX_BEDROOMS else 0
- if raw_beds > MAX_BEDROOMS or raw_baths > MAX_BEDROOMS:
- log.warning(
- "OpenRent %s: implausible beds=%d baths=%d (capped to 0)",
- search_data.get("id", "?"), raw_beds, raw_baths,
- )
-
- # Title: prefer detail page (has h1 with full title)
- title = detail.get("title") or search_data.get("title", "")
-
- # Address: take the middle part of the title (skip the "N Bed Type" prefix
- # and the outcode suffix). E.g., "1 Bed Flat, Bank Chambers, SW1Y" -> "Bank Chambers"
- address = ""
- if title:
- parts = [p.strip() for p in title.split(",")]
- if len(parts) >= 3:
- # Skip first (type) and last (outcode), join the middle
- address = ", ".join(parts[1:-1])
- elif len(parts) == 2:
- # Could be "Location, OUTCODE" or "Type, Location"
- # If last part looks like an outcode, use the first part
- if re.match(r"^[A-Z]{1,2}\d", parts[-1].strip()):
- address = parts[0]
- else:
- address = parts[1]
- else:
- address = title
-
- # Property type: prefer detail, then search card, then infer from title
- property_type = detail.get("property_type") or search_data.get("property_type", "")
- if not property_type and title:
- property_type = _infer_property_type(title)
-
- prop_id = search_data.get("id", "")
- listing_url = search_data.get(
- "url",
- f"{OPENRENT_BASE}/{prop_id}" if prop_id else "",
- )
- description = detail.get("description") or search_data.get("description", "")
-
- return {
- "id": f"or_{prop_id}",
- "Bedrooms": bedrooms,
- "Bathrooms": bathrooms,
- "Number of bedrooms & living rooms": bedrooms,
- "lon": lng,
- "lat": lat,
- "Postcode": normalize_postcode(postcode),
- "Address per Property Register": address,
- # OpenRent is a rental-only platform — tenure (Freehold/Leasehold) is a
- # property ownership concept that doesn't apply to rental listings. The
- # landlord's tenure is not shown on OpenRent listing pages.
- "Leasehold/Freehold": None,
- "Property type": map_property_type(property_type),
- "Property sub-type": normalize_sub_type(property_type),
- "price": int(price),
- "price_frequency": frequency,
- "Price qualifier": "",
- "Total floor area (sqm)": parse_floor_area(description),
- "Listing URL": listing_url,
- "Listing features": [],
- "first_visible_date": _parse_or_date(detail.get("available_date", "")),
- }
-
-
-def search_outcode(
- client: Session,
- outcode: str,
- pc_index: PostcodeSpatialIndex,
- pc_coords: dict[str, tuple[float, float]],
- fetch_details: bool = True,
-) -> list[dict]:
- """Search OpenRent for rental properties in one outcode.
-
- 1. Fetches the search results page for the outcode
- 2. Parses property cards from the HTML (title, price, beds, baths)
- 3. Fetches each property's detail page for coordinates
- 4. Transforms to common output schema
-
- The search card provides most data (price, bedrooms, bathrooms, title,
- property type). Detail pages are needed primarily for precise coordinates
- and full postcodes. When detail pages fail, we fall back to outcode-level
- coordinates from the postcode lookup.
- """
- search_url = f"{OPENRENT_BASE}/properties-to-rent/?term={outcode}&isLive=true"
-
- html = fetch_page(client, search_url)
- if not html:
- return []
-
- search_results = parse_search_results(html)
- if not search_results:
- return []
-
- properties = []
- for search_data in search_results:
- detail_data = None
-
- # Skip detail page if we already have coordinates or a resolvable postcode
- has_coords = (
- search_data.get("lat") is not None
- and search_data.get("lng") is not None
- )
- has_resolvable_pc = (
- search_data.get("postcode")
- and pc_coords
- and search_data["postcode"] in pc_coords
- )
- needs_detail = (
- fetch_details
- and search_data.get("url")
- and not has_coords
- and not has_resolvable_pc
- )
-
- if needs_detail:
- detail_html = fetch_page(client, search_data["url"])
- if detail_html:
- detail_data = parse_property_detail(detail_html)
- # Shorter delay for detail pages (within same outcode)
- time.sleep(0.15)
-
- transformed = transform_property(
- search_data,
- detail_data,
- pc_index,
- pc_coords,
- )
- if transformed:
- properties.append(transformed)
- openrent_properties_scraped.labels(channel="rent").inc()
-
- return properties
diff --git a/finder/pyproject.toml b/finder/pyproject.toml
index 64be8ed..9023939 100644
--- a/finder/pyproject.toml
+++ b/finder/pyproject.toml
@@ -3,15 +3,10 @@ name = "finder"
version = "0.1.0"
requires-python = ">=3.12"
dependencies = [
- "flask",
"httpx",
"curl_cffi",
"polars",
"fake-useragent>=2.2.0",
- "prometheus-client",
- "beautifulsoup4",
- "lxml",
"playwright>=1.58.0",
- "playwright-stealth>=2.0.2",
"camoufox>=0.4.11",
]
diff --git a/finder/rightmove.py b/finder/rightmove.py
index 236959b..3c831a5 100644
--- a/finder/rightmove.py
+++ b/finder/rightmove.py
@@ -58,6 +58,7 @@ def _paginate(
channel_cfg: dict,
pc_index: PostcodeSpatialIndex,
extra_params: dict | None = None,
+ max_properties: int | None = None,
) -> tuple[list[dict], int]:
"""Paginate through search results. Returns (properties, result_count)."""
properties = []
@@ -94,6 +95,8 @@ def _paginate(
transformed = transform_property(prop, outcode, pc_index)
if transformed:
properties.append(transformed)
+ if max_properties is not None and len(properties) >= max_properties:
+ return properties, result_count
# Check if there are more pages
result_count_str = data.get("resultCount", "0")
@@ -114,6 +117,7 @@ def search_outcode(
outcode: str,
channel_cfg: dict,
pc_index: PostcodeSpatialIndex,
+ max_properties: int | None = None,
) -> list[dict]:
"""Paginate through search results for one outcode+channel. Returns transformed properties.
@@ -121,9 +125,12 @@ def search_outcode(
re-queries per property type to recover listings beyond the cap.
"""
properties, result_count = _paginate(
- client, outcode_id, outcode, channel_cfg, pc_index
+ client, outcode_id, outcode, channel_cfg, pc_index, max_properties=max_properties
)
+ if max_properties is not None and len(properties) >= max_properties:
+ return properties[:max_properties]
+
if result_count <= _MAX_INDEX:
return properties
@@ -140,17 +147,28 @@ def search_outcode(
pt_props, _ = _paginate(
client, outcode_id, outcode, channel_cfg, pc_index,
extra_params={"propertyTypes": pt},
+ max_properties=max_properties,
)
new = 0
for p in pt_props:
if p["id"] not in all_by_id:
all_by_id[p["id"]] = p
new += 1
+ if (
+ max_properties is not None
+ and len(all_by_id) >= max_properties
+ ):
+ break
if new:
log.debug("%s/%s type=%s: +%d new properties", outcode, ch, pt, new)
+ if max_properties is not None and len(all_by_id) >= max_properties:
+ break
log.info(
"%s/%s: type split recovered %d → %d properties",
outcode, ch, len(properties), len(all_by_id),
)
- return list(all_by_id.values())
+ properties = list(all_by_id.values())
+ if max_properties is not None:
+ return properties[:max_properties]
+ return properties
diff --git a/finder/rightmove/buy.json b/finder/rightmove/buy.json
deleted file mode 100644
index 1cb4acc..0000000
--- a/finder/rightmove/buy.json
+++ /dev/null
@@ -1,10918 +0,0 @@
-{
- "countryCode": "gb",
- "countryId": -1,
- "dfpModel": {
- "sidebarSlots": [
- {
- "id": "searchSidebar-mpuSlot-2",
- "adUnitPath": "/5029762/Rightmove_Property_Web/Property_Results_Sidebar/MPU2",
- "sizes": [[300, 250]],
- "mappings": []
- },
- {
- "id": "searchSidebar-mpuSlot-1",
- "adUnitPath": "/5029762/Rightmove_Property_Web/Property_Results_Sidebar/MPU1",
- "sizes": [[300, 250]],
- "mappings": []
- }
- ],
- "targeting": [{ "key": "CT", "value": "property-for-sale" }]
- },
- "formattedExchangeRateDate": "",
- "location": {
- "id": 746,
- "displayName": "E11",
- "shortDisplayName": "E11",
- "locationType": "OUTCODE",
- "listingCurrency": "GBP",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [0.00006, 51.56708],
- [-0.00049, 51.56598],
- [-0.00058, 51.566],
- [-0.00148, 51.56499],
- [-0.00182, 51.56509],
- [-0.00168, 51.56526],
- [-0.00192, 51.56538],
- [-0.00203, 51.5656],
- [-0.00242, 51.56549],
- [-0.00256, 51.56535],
- [-0.00147, 51.56476],
- [-0.00219, 51.56447],
- [-0.00426, 51.56281],
- [-0.00309, 51.56204],
- [-0.00304, 51.56164],
- [-0.00194, 51.56098],
- [-0.00189, 51.56037],
- [-0.00253, 51.55993],
- [-0.0038, 51.55872],
- [-0.00474, 51.55908],
- [-0.00557, 51.55855],
- [-0.0042, 51.5577],
- [-0.00593, 51.55659],
- [-0.00549, 51.55594],
- [-0.00531, 51.55529],
- [-0.00501, 51.55536],
- [-0.00482, 51.5551],
- [-0.00491, 51.55508],
- [-0.0049, 51.55475],
- [-0.00499, 51.5547],
- [-0.00496, 51.55457],
- [-0.00478, 51.55444],
- [-0.00512, 51.55423],
- [-0.00519, 51.55402],
- [-0.00478, 51.55407],
- [-0.00468, 51.55383],
- [-0.00483, 51.55358],
- [-0.00465, 51.55323],
- [-0.00443, 51.55322],
- [-0.00127, 51.55391],
- [-0.00107, 51.55407],
- [-0.00084, 51.55414],
- [-0.0007, 51.55416],
- [-0.00029, 51.55381],
- [-0.00032, 51.55353],
- [0.00188, 51.55378],
- [0.00184, 51.55413],
- [0.00213, 51.55386],
- [0.00333, 51.55331],
- [0.00462, 51.55338],
- [0.00507, 51.55301],
- [0.00497, 51.55246],
- [0.0055, 51.55208],
- [0.00554, 51.55224],
- [0.00609, 51.55263],
- [0.00625, 51.5526],
- [0.00706, 51.55245],
- [0.00776, 51.55266],
- [0.00828, 51.55317],
- [0.00899, 51.5534],
- [0.00943, 51.55376],
- [0.00999, 51.5545],
- [0.01202, 51.55494],
- [0.01271, 51.55548],
- [0.01374, 51.55593],
- [0.01715, 51.55718],
- [0.01832, 51.55747],
- [0.01863, 51.55766],
- [0.02012, 51.55636],
- [0.02054, 51.5561],
- [0.02138, 51.55618],
- [0.02253, 51.55606],
- [0.02262, 51.55659],
- [0.02311, 51.55677],
- [0.02333, 51.55671],
- [0.02358, 51.55649],
- [0.02361, 51.55578],
- [0.02385, 51.55543],
- [0.0253, 51.55544],
- [0.02531, 51.55707],
- [0.02533, 51.55978],
- [0.02562, 51.56149],
- [0.02499, 51.56415],
- [0.02521, 51.56412],
- [0.02712, 51.56292],
- [0.02765, 51.56266],
- [0.02811, 51.56262],
- [0.03175, 51.56291],
- [0.03174, 51.5631],
- [0.03207, 51.56343],
- [0.03206, 51.56444],
- [0.03235, 51.56472],
- [0.03236, 51.56509],
- [0.03216, 51.56545],
- [0.0321, 51.56586],
- [0.03212, 51.56633],
- [0.03268, 51.56791],
- [0.03417, 51.56774],
- [0.0352, 51.56788],
- [0.03697, 51.56781],
- [0.03741, 51.56801],
- [0.03885, 51.56721],
- [0.04653, 51.56625],
- [0.05018, 51.56626],
- [0.05025, 51.56653],
- [0.04709, 51.57032],
- [0.04454, 51.57185],
- [0.04469, 51.57194],
- [0.04221, 51.57354],
- [0.04159, 51.57403],
- [0.04027, 51.57443],
- [0.04008, 51.57462],
- [0.04005, 51.5749],
- [0.04086, 51.57657],
- [0.04222, 51.57731],
- [0.04338, 51.57852],
- [0.04161, 51.58142],
- [0.04095, 51.58281],
- [0.04091, 51.58326],
- [0.04112, 51.58397],
- [0.04103, 51.58548],
- [0.03826, 51.58467],
- [0.03762, 51.58484],
- [0.03727, 51.58477],
- [0.03683, 51.58492],
- [0.03656, 51.58515],
- [0.03604, 51.58538],
- [0.03592, 51.58554],
- [0.03541, 51.58551],
- [0.03508, 51.58575],
- [0.03476, 51.58586],
- [0.03438, 51.58565],
- [0.03372, 51.58545],
- [0.03392, 51.58506],
- [0.03053, 51.58408],
- [0.0305, 51.58414],
- [0.03024, 51.58409],
- [0.03008, 51.58441],
- [0.03053, 51.58455],
- [0.0302, 51.58497],
- [0.0297, 51.58499],
- [0.02986, 51.58531],
- [0.02857, 51.58556],
- [0.02769, 51.58586],
- [0.02732, 51.58536],
- [0.02649, 51.58558],
- [0.02627, 51.58539],
- [0.02591, 51.58545],
- [0.02547, 51.58531],
- [0.02637, 51.58679],
- [0.02672, 51.58818],
- [0.02669, 51.58865],
- [0.02656, 51.58873],
- [0.02565, 51.58698],
- [0.02515, 51.58643],
- [0.02448, 51.58632],
- [0.02364, 51.58638],
- [0.0236, 51.58576],
- [0.02276, 51.58579],
- [0.02269, 51.58505],
- [0.02239, 51.58455],
- [0.02161, 51.58414],
- [0.02198, 51.5838],
- [0.02106, 51.58348],
- [0.0184, 51.58367],
- [0.01657, 51.5839],
- [0.01552, 51.58328],
- [0.01415, 51.58331],
- [0.01342, 51.58368],
- [0.01303, 51.58629],
- [0.01287, 51.5862],
- [0.01237, 51.58616],
- [0.01177, 51.58582],
- [0.01136, 51.58552],
- [0.01097, 51.58534],
- [0.01109, 51.58519],
- [0.01103, 51.58512],
- [0.00967, 51.58472],
- [0.0101, 51.58333],
- [0.00688, 51.58343],
- [0.00594, 51.58368],
- [0.00138, 51.58169],
- [0.00124, 51.58158],
- [0.00116, 51.58125],
- [0.00124, 51.58109],
- [0.00151, 51.58096],
- [0.00204, 51.58098],
- [0.00241, 51.58111],
- [0.00241, 51.58057],
- [0.00302, 51.58019],
- [-0.0004, 51.57806],
- [0.00391, 51.57487],
- [0.00361, 51.57497],
- [0.00226, 51.57426],
- [-0.00038, 51.57312],
- [-0.0003, 51.57303],
- [-0.00086, 51.57275],
- [-0.00115, 51.57239],
- [-0.00204, 51.57188],
- [-0.00227, 51.57186],
- [-0.00323, 51.57142],
- [-0.00335, 51.57095],
- [-0.00473, 51.5704],
- [-0.00455, 51.57021],
- [-0.00432, 51.57013],
- [-0.00347, 51.57046],
- [-0.00351, 51.57033],
- [-0.00548, 51.56901],
- [-0.00668, 51.56909],
- [-0.00716, 51.56929],
- [-0.00831, 51.56837],
- [-0.00756, 51.56751],
- [-0.00603, 51.56809],
- [-0.00624, 51.56816],
- [-0.00603, 51.56837],
- [-0.00617, 51.56847],
- [-0.00529, 51.56874],
- [-0.00025, 51.56702],
- [0.00006, 51.56708]
- ]
- ]
- },
- "encodedGeometry": {
- "encodedPolygon": "guvyHKzElBCPhErDSbAa@[Wn@k@TTjAZ\\tByEx@nCjI|KxCiFnAIbC{ExBIvA~BpF|FgAzDhBdDhDqG|ExI`CwA`Cc@M}@r@e@BR`AAHNXCXc@h@bAh@LIqAn@Sp@\\dAe@@i@iCwR_@g@Mm@C[dAqAv@Dq@wLeAFt@y@lBoFMaGhAyAlBTjAkB_@GmAmBD_@\\aDi@kCeBeBm@oCgAuAsCqBwAuKkBiCyAmEyFgTy@kFe@}@bGiHr@sAOgDVeFiBQc@aBJk@j@q@lCEdAo@AaHeIA}OCuIy@sO|BDk@nF}Jr@iBF{Ay@wUe@BaAcAiE@w@w@iACgAf@qAL}AE{HoB`@iH[mELaJg@wA~C_H~D_o@AyUu@MuVvRqH|NQ]_InNaBzBoAfGe@f@w@BmIaDsCoGqFgFcQ`JuGbCyAFmCi@mHP`DhPa@~BLfA]tAm@t@m@fB_@VDfBo@~@U~@h@jAf@bClAg@bEdTKDHr@_A^[yAsA`ACbB_A_@q@`G{@nDbBhAk@dDd@j@KfAZvAgHsDuGeA}ADOX|ItDlBbBTdCKfDzBFEfDrCLbBz@pAzCbAiA~@vDe@rOm@lJzBpEEpGiApCiOlAP^FbBbAvBz@pAb@lA\\WLJnAnGtGuASbSq@zDlKn[TZ`AN^OXu@CiBYgAjB?jA{BhLjT|R}YSz@lCnGbFlOPQv@pBfAx@dBpDBl@vA~D|AVlBrGd@c@Nm@aAiDXFfGhKOnFg@~AvDdFjDuCsBqHMh@i@i@SZu@oDvIo^K}@"
- }
- },
- "noResultsModel": { "suggestionPods": [], "intelligentSuggestion": null },
- "pagination": {
- "total": 12,
- "options": [
- { "value": "0", "description": "1" },
- { "value": "24", "description": "2" },
- { "value": "48", "description": "3" },
- { "value": "72", "description": "4" },
- { "value": "96", "description": "5" },
- { "value": "120", "description": "6" },
- { "value": "144", "description": "7" },
- { "value": "168", "description": "8" },
- { "value": "192", "description": "9" },
- { "value": "216", "description": "10" },
- { "value": "240", "description": "11" },
- { "value": "264", "description": "12" }
- ],
- "first": "0",
- "last": "264",
- "next": "24",
- "page": "1"
- },
- "properties": [
- {
- "id": 170765942,
- "bedrooms": 1,
- "bathrooms": 1,
- "numberOfImages": 27,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Set on the first floor, this newly refurbished flat brings together fresh finishes and a thoughtfully arranged layout, centred around an open-plan living room that feels immediately welcoming. The double bedroom offers a peaceful retreat, while its chain-free status adds ease for those looking to...",
- "displayAddress": "Elsham Road, Leytonstone",
- "countryCode": "GB",
- "location": { "latitude": 51.556064, "longitude": 0.007337 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c6c8124f/170765942/5c6c8124facc3be9413b272679f15a31_max_476x317.jpeg",
- "url": "property-photo/5c6c8124f/170765942/5c6c8124facc3be9413b272679f15a31.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3e66c5e1b/170765942/3e66c5e1b628e7aa0fa99f090738b1d5_max_476x317.jpeg",
- "url": "property-photo/3e66c5e1b/170765942/3e66c5e1b628e7aa0fa99f090738b1d5.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/45c4dd371/170765942/45c4dd3714a51a622da58cda3210ae5c_max_476x317.jpeg",
- "url": "property-photo/45c4dd371/170765942/45c4dd3714a51a622da58cda3210ae5c.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5dc1636a8/170765942/5dc1636a8196a1ce7c790fd822c315e1_max_476x317.jpeg",
- "url": "property-photo/5dc1636a8/170765942/5dc1636a8196a1ce7c790fd822c315e1.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d67d86940/170765942/d67d86940aee6ade70f1c2af14a3719d_max_476x317.jpeg",
- "url": "property-photo/d67d86940/170765942/d67d86940aee6ade70f1c2af14a3719d.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/62555627a/170765942/62555627a9f9eb27d6f25b55a4c6437f_max_476x317.jpeg",
- "url": "property-photo/62555627a/170765942/62555627a9f9eb27d6f25b55a4c6437f.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f424a11c5/170765942/f424a11c55209355bb16ceb6fe81b1d3_max_476x317.jpeg",
- "url": "property-photo/f424a11c5/170765942/f424a11c55209355bb16ceb6fe81b1d3.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/70f483a02/170765942/70f483a027e317b7ac029350ac5bd61c_max_476x317.jpeg",
- "url": "property-photo/70f483a02/170765942/70f483a027e317b7ac029350ac5bd61c.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5a74bef5c/170765942/5a74bef5c77b965e06296aa106681ca7_max_476x317.jpeg",
- "url": "property-photo/5a74bef5c/170765942/5a74bef5c77b965e06296aa106681ca7.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4508f8160/170765942/4508f81601daa88575dc51fe10157604_max_476x317.jpeg",
- "url": "property-photo/4508f8160/170765942/4508f81601daa88575dc51fe10157604.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dae99d030/170765942/dae99d030a0f807014e1f1f077dfe83b_max_476x317.jpeg",
- "url": "property-photo/dae99d030/170765942/dae99d030a0f807014e1f1f077dfe83b.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/830c1f9c1/170765942/830c1f9c1b50327cdd5a332f348d510a_max_476x317.jpeg",
- "url": "property-photo/830c1f9c1/170765942/830c1f9c1b50327cdd5a332f348d510a.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/34904e2a0/170765942/34904e2a039a7e6bfca056ceae2b0484_max_476x317.jpeg",
- "url": "property-photo/34904e2a0/170765942/34904e2a039a7e6bfca056ceae2b0484.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2530eff79/170765942/2530eff79482c36155e19e3939acb6af_max_476x317.jpeg",
- "url": "property-photo/2530eff79/170765942/2530eff79482c36155e19e3939acb6af.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d7d92337a/170765942/d7d92337a56e321178bcf0241b446be3_max_476x317.jpeg",
- "url": "property-photo/d7d92337a/170765942/d7d92337a56e321178bcf0241b446be3.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ca9d82d86/170765942/ca9d82d86ed211180e534c9aade6a882_max_476x317.jpeg",
- "url": "property-photo/ca9d82d86/170765942/ca9d82d86ed211180e534c9aade6a882.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/623750858/170765942/62375085876bef5665d8b157092977ed_max_476x317.jpeg",
- "url": "property-photo/623750858/170765942/62375085876bef5665d8b157092977ed.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/660d7c1f6/170765942/660d7c1f6c367aa317b017372a2f7a88_max_476x317.jpeg",
- "url": "property-photo/660d7c1f6/170765942/660d7c1f6c367aa317b017372a2f7a88.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9c1528b7f/170765942/9c1528b7f9b4cfa7d1aa6e6a68b2491c_max_476x317.jpeg",
- "url": "property-photo/9c1528b7f/170765942/9c1528b7f9b4cfa7d1aa6e6a68b2491c.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b084585f/170765942/6b084585f9f18f2209becee71844dd34_max_476x317.jpeg",
- "url": "property-photo/6b084585f/170765942/6b084585f9f18f2209becee71844dd34.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc15df182/170765942/bc15df182391ac474208e858c32adc3d_max_476x317.jpeg",
- "url": "property-photo/bc15df182/170765942/bc15df182391ac474208e858c32adc3d.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3019b33f7/170765942/3019b33f7514827f5fc7b25198554a84_max_476x317.jpeg",
- "url": "property-photo/3019b33f7/170765942/3019b33f7514827f5fc7b25198554a84.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/af29a0b51/170765942/af29a0b51c112db97fdc4e852a1bd831_max_476x317.jpeg",
- "url": "property-photo/af29a0b51/170765942/af29a0b51c112db97fdc4e852a1bd831.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9b4f68aed/170765942/9b4f68aed1ad4691571f7774fa5b4a3c_max_476x317.jpeg",
- "url": "property-photo/9b4f68aed/170765942/9b4f68aed1ad4691571f7774fa5b4a3c.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/624c48274/170765942/624c48274671a4c7433211bc8ab91d6d_max_476x317.jpeg",
- "url": "property-photo/624c48274/170765942/624c48274671a4c7433211bc8ab91d6d.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f1124ffc8/170765942/f1124ffc87d522cebcfa2e017ea7d3e9_max_476x317.jpeg",
- "url": "property-photo/f1124ffc8/170765942/f1124ffc87d522cebcfa2e017ea7d3e9.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a074d3931/170765942/a074d3931a8d3389d4ff2976914dc6d3_max_476x317.png",
- "url": "property-photo/a074d3931/170765942/a074d3931a8d3389d4ff2976914dc6d3.png",
- "caption": "Elsham Road, E11"
- }
- ],
- "propertySubType": "Flat",
- "tenure": { "tenureType": "LEASEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2026-02-09T12:33:56Z"
- },
- "price": {
- "amount": 350000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£350,000", "displayPriceQualifier": "Guide Price" }
- ]
- },
- "premiumListing": true,
- "featuredProperty": true,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 171122,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_49357_0001.png",
- "contactTelephone": "020 3907 3713",
- "branchDisplayName": "The Stow Brothers, Wanstead & Leytonstone",
- "branchName": "Wanstead & Leytonstone",
- "brandTradingName": "The Stow Brothers",
- "branchLandingPageUrl": "/estate-agents/agent/The-Stow-Brothers/Wanstead-and-Leytonstone-171122.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-19T10:05:05Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_49357_0001.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": {
- "productLabelText": "Premium Listing",
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "499 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/170765942#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=170765942",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2026-01-02T12:59:05Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-09T12:33:58Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "First Floor Flat",
- "htmlDescription": "First Floor Flat"
- },
- {
- "order": 2,
- "description": "Chain Free",
- "htmlDescription": "Chain Free"
- },
- {
- "order": 3,
- "description": "Newly Refurbished",
- "htmlDescription": "Newly Refurbished"
- },
- {
- "order": 4,
- "description": "Close to Wanstead Flats",
- "htmlDescription": "Close to Wanstead Flats"
- },
- {
- "order": 5,
- "description": "Open Plan Living Room",
- "htmlDescription": "Open Plan Living Room"
- },
- {
- "order": 6,
- "description": "One Double Bedroom",
- "htmlDescription": "One Double Bedroom"
- },
- {
- "order": 7,
- "description": "Close to Leytonstone High Road",
- "htmlDescription": "Close to Leytonstone High Road"
- },
- {
- "order": 8,
- "description": "new 148 year lease",
- "htmlDescription": "new 148 year lease"
- },
- {
- "order": 9,
- "description": "Planning submitted for loft conversion",
- "htmlDescription": "Planning submitted for loft conversion"
- },
- {
- "order": 10,
- "description": "Loft space and licence for alteration included in sale.",
- "htmlDescription": "Loft space and licence for alteration included in sale."
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c6c8124f/170765942/5c6c8124facc3be9413b272679f15a31_max_476x317.jpeg",
- "url": "property-photo/5c6c8124f/170765942/5c6c8124facc3be9413b272679f15a31.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3e66c5e1b/170765942/3e66c5e1b628e7aa0fa99f090738b1d5_max_476x317.jpeg",
- "url": "property-photo/3e66c5e1b/170765942/3e66c5e1b628e7aa0fa99f090738b1d5.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/45c4dd371/170765942/45c4dd3714a51a622da58cda3210ae5c_max_476x317.jpeg",
- "url": "property-photo/45c4dd371/170765942/45c4dd3714a51a622da58cda3210ae5c.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5dc1636a8/170765942/5dc1636a8196a1ce7c790fd822c315e1_max_476x317.jpeg",
- "url": "property-photo/5dc1636a8/170765942/5dc1636a8196a1ce7c790fd822c315e1.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d67d86940/170765942/d67d86940aee6ade70f1c2af14a3719d_max_476x317.jpeg",
- "url": "property-photo/d67d86940/170765942/d67d86940aee6ade70f1c2af14a3719d.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/62555627a/170765942/62555627a9f9eb27d6f25b55a4c6437f_max_476x317.jpeg",
- "url": "property-photo/62555627a/170765942/62555627a9f9eb27d6f25b55a4c6437f.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f424a11c5/170765942/f424a11c55209355bb16ceb6fe81b1d3_max_476x317.jpeg",
- "url": "property-photo/f424a11c5/170765942/f424a11c55209355bb16ceb6fe81b1d3.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/70f483a02/170765942/70f483a027e317b7ac029350ac5bd61c_max_476x317.jpeg",
- "url": "property-photo/70f483a02/170765942/70f483a027e317b7ac029350ac5bd61c.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5a74bef5c/170765942/5a74bef5c77b965e06296aa106681ca7_max_476x317.jpeg",
- "url": "property-photo/5a74bef5c/170765942/5a74bef5c77b965e06296aa106681ca7.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4508f8160/170765942/4508f81601daa88575dc51fe10157604_max_476x317.jpeg",
- "url": "property-photo/4508f8160/170765942/4508f81601daa88575dc51fe10157604.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dae99d030/170765942/dae99d030a0f807014e1f1f077dfe83b_max_476x317.jpeg",
- "url": "property-photo/dae99d030/170765942/dae99d030a0f807014e1f1f077dfe83b.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/830c1f9c1/170765942/830c1f9c1b50327cdd5a332f348d510a_max_476x317.jpeg",
- "url": "property-photo/830c1f9c1/170765942/830c1f9c1b50327cdd5a332f348d510a.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/34904e2a0/170765942/34904e2a039a7e6bfca056ceae2b0484_max_476x317.jpeg",
- "url": "property-photo/34904e2a0/170765942/34904e2a039a7e6bfca056ceae2b0484.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2530eff79/170765942/2530eff79482c36155e19e3939acb6af_max_476x317.jpeg",
- "url": "property-photo/2530eff79/170765942/2530eff79482c36155e19e3939acb6af.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d7d92337a/170765942/d7d92337a56e321178bcf0241b446be3_max_476x317.jpeg",
- "url": "property-photo/d7d92337a/170765942/d7d92337a56e321178bcf0241b446be3.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ca9d82d86/170765942/ca9d82d86ed211180e534c9aade6a882_max_476x317.jpeg",
- "url": "property-photo/ca9d82d86/170765942/ca9d82d86ed211180e534c9aade6a882.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/623750858/170765942/62375085876bef5665d8b157092977ed_max_476x317.jpeg",
- "url": "property-photo/623750858/170765942/62375085876bef5665d8b157092977ed.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/660d7c1f6/170765942/660d7c1f6c367aa317b017372a2f7a88_max_476x317.jpeg",
- "url": "property-photo/660d7c1f6/170765942/660d7c1f6c367aa317b017372a2f7a88.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9c1528b7f/170765942/9c1528b7f9b4cfa7d1aa6e6a68b2491c_max_476x317.jpeg",
- "url": "property-photo/9c1528b7f/170765942/9c1528b7f9b4cfa7d1aa6e6a68b2491c.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b084585f/170765942/6b084585f9f18f2209becee71844dd34_max_476x317.jpeg",
- "url": "property-photo/6b084585f/170765942/6b084585f9f18f2209becee71844dd34.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc15df182/170765942/bc15df182391ac474208e858c32adc3d_max_476x317.jpeg",
- "url": "property-photo/bc15df182/170765942/bc15df182391ac474208e858c32adc3d.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3019b33f7/170765942/3019b33f7514827f5fc7b25198554a84_max_476x317.jpeg",
- "url": "property-photo/3019b33f7/170765942/3019b33f7514827f5fc7b25198554a84.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/af29a0b51/170765942/af29a0b51c112db97fdc4e852a1bd831_max_476x317.jpeg",
- "url": "property-photo/af29a0b51/170765942/af29a0b51c112db97fdc4e852a1bd831.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9b4f68aed/170765942/9b4f68aed1ad4691571f7774fa5b4a3c_max_476x317.jpeg",
- "url": "property-photo/9b4f68aed/170765942/9b4f68aed1ad4691571f7774fa5b4a3c.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/624c48274/170765942/624c48274671a4c7433211bc8ab91d6d_max_476x317.jpeg",
- "url": "property-photo/624c48274/170765942/624c48274671a4c7433211bc8ab91d6d.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f1124ffc8/170765942/f1124ffc87d522cebcfa2e017ea7d3e9_max_476x317.jpeg",
- "url": "property-photo/f1124ffc8/170765942/f1124ffc87d522cebcfa2e017ea7d3e9.jpeg",
- "caption": "Elsham Road, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a074d3931/170765942/a074d3931a8d3389d4ff2976914dc6d3_max_476x317.png",
- "url": "property-photo/a074d3931/170765942/a074d3931a8d3389d4ff2976914dc6d3.png",
- "caption": "Elsham Road, E11"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c6c8124f/170765942/5c6c8124facc3be9413b272679f15a31_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c6c8124f/170765942/5c6c8124facc3be9413b272679f15a31_max_296x197.jpeg"
- },
- "formattedBranchName": " by The Stow Brothers, Wanstead & Leytonstone",
- "addedOrReduced": "Reduced on 09/02/2026",
- "formattedDistance": "",
- "heading": "Featured Property",
- "propertyTypeFullDescription": "1 bedroom flat for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 169786709,
- "bedrooms": 5,
- "bathrooms": 2,
- "numberOfImages": 36,
- "numberOfFloorplans": 0,
- "numberOfVirtualTours": 0,
- "summary": "Guide Price £3,250,000 to £3,500,000 Applegarth is a distinguished residence occupying a commanding position on Nutter Lane, with open views across private playing fields. Filled with charm and character, the home features a grand entrance hall, galleried landing, and elegant sash windows that f...",
- "displayAddress": "Nutter Lane, London, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.57834, "longitude": 0.033272 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c198dbe8/169786709/8c198dbe80f0ba9ef851c247627a4c10_max_476x317.jpeg",
- "url": "property-photo/8c198dbe8/169786709/8c198dbe80f0ba9ef851c247627a4c10.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c1d58eb42/169786709/c1d58eb42e7ec087cff2749468f2e008_max_476x317.jpeg",
- "url": "property-photo/c1d58eb42/169786709/c1d58eb42e7ec087cff2749468f2e008.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2fce999ff/169786709/2fce999ffde058107da994669619339e_max_476x317.jpeg",
- "url": "property-photo/2fce999ff/169786709/2fce999ffde058107da994669619339e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2a88ed23a/169786709/2a88ed23a0d71bf021a1a33bf27bfebe_max_476x317.jpeg",
- "url": "property-photo/2a88ed23a/169786709/2a88ed23a0d71bf021a1a33bf27bfebe.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ebd50e4fc/169786709/ebd50e4fc17d8611589bf15f954ca273_max_476x317.jpeg",
- "url": "property-photo/ebd50e4fc/169786709/ebd50e4fc17d8611589bf15f954ca273.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7acd33c63/169786709/7acd33c6376a6ad6ba18cfbb04cdb5ad_max_476x317.jpeg",
- "url": "property-photo/7acd33c63/169786709/7acd33c6376a6ad6ba18cfbb04cdb5ad.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0984d4ec7/169786709/0984d4ec72ccaae2f26a8a824d635aec_max_476x317.jpeg",
- "url": "property-photo/0984d4ec7/169786709/0984d4ec72ccaae2f26a8a824d635aec.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/70a3dd404/169786709/70a3dd404e6d69cc8e77e93c0ba9ccd5_max_476x317.jpeg",
- "url": "property-photo/70a3dd404/169786709/70a3dd404e6d69cc8e77e93c0ba9ccd5.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/16913d51f/169786709/16913d51f50e35ca11354acb13972c15_max_476x317.jpeg",
- "url": "property-photo/16913d51f/169786709/16913d51f50e35ca11354acb13972c15.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/74468eb95/169786709/74468eb9560808b6cb0a15ae0b58b0ae_max_476x317.jpeg",
- "url": "property-photo/74468eb95/169786709/74468eb9560808b6cb0a15ae0b58b0ae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8d8b3ab45/169786709/8d8b3ab45f89631d56020189a8433d8c_max_476x317.jpeg",
- "url": "property-photo/8d8b3ab45/169786709/8d8b3ab45f89631d56020189a8433d8c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8e45313a5/169786709/8e45313a567505c4c81732cbcf4dfbc1_max_476x317.jpeg",
- "url": "property-photo/8e45313a5/169786709/8e45313a567505c4c81732cbcf4dfbc1.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7a2ff815a/169786709/7a2ff815ab755cd14323390f49139c45_max_476x317.jpeg",
- "url": "property-photo/7a2ff815a/169786709/7a2ff815ab755cd14323390f49139c45.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5749797a1/169786709/5749797a1b7b6a68bfba4aafa0a770a3_max_476x317.jpeg",
- "url": "property-photo/5749797a1/169786709/5749797a1b7b6a68bfba4aafa0a770a3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f84d42589/169786709/f84d425895881518f8c2f42d45a4c3eb_max_476x317.jpeg",
- "url": "property-photo/f84d42589/169786709/f84d425895881518f8c2f42d45a4c3eb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d45c51916/169786709/d45c519160950d785f82694d5f298dcb_max_476x317.jpeg",
- "url": "property-photo/d45c51916/169786709/d45c519160950d785f82694d5f298dcb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c04e5925/169786709/1c04e5925c8b18bcb3c905a21ac0cdb2_max_476x317.jpeg",
- "url": "property-photo/1c04e5925/169786709/1c04e5925c8b18bcb3c905a21ac0cdb2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/15e9ba995/169786709/15e9ba995e3df6fb3fe2116bf947c5f6_max_476x317.jpeg",
- "url": "property-photo/15e9ba995/169786709/15e9ba995e3df6fb3fe2116bf947c5f6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/79a93f23c/169786709/79a93f23c2a6e711a2040cb5dc47dd7c_max_476x317.jpeg",
- "url": "property-photo/79a93f23c/169786709/79a93f23c2a6e711a2040cb5dc47dd7c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9f12c9cfa/169786709/9f12c9cfa94492a5682bc5f7c8df83c1_max_476x317.jpeg",
- "url": "property-photo/9f12c9cfa/169786709/9f12c9cfa94492a5682bc5f7c8df83c1.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c78bc0509/169786709/c78bc050901afacbb1047257d3acd251_max_476x317.jpeg",
- "url": "property-photo/c78bc0509/169786709/c78bc050901afacbb1047257d3acd251.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e89b89d1d/169786709/e89b89d1d7bc52e923034d9246fe2148_max_476x317.jpeg",
- "url": "property-photo/e89b89d1d/169786709/e89b89d1d7bc52e923034d9246fe2148.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e26937cc5/169786709/e26937cc56016bfb73f88a0612aa4e02_max_476x317.jpeg",
- "url": "property-photo/e26937cc5/169786709/e26937cc56016bfb73f88a0612aa4e02.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/46b568e78/169786709/46b568e78da6bd39c47f82bc006dcd34_max_476x317.jpeg",
- "url": "property-photo/46b568e78/169786709/46b568e78da6bd39c47f82bc006dcd34.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/580c222a3/169786709/580c222a3f2105be301d956d218dcadf_max_476x317.jpeg",
- "url": "property-photo/580c222a3/169786709/580c222a3f2105be301d956d218dcadf.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c830cebf6/169786709/c830cebf62dc2e5f0455c8f5553fcf93_max_476x317.jpeg",
- "url": "property-photo/c830cebf6/169786709/c830cebf62dc2e5f0455c8f5553fcf93.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/df2bf97af/169786709/df2bf97af48650521092d3975a514d1f_max_476x317.jpeg",
- "url": "property-photo/df2bf97af/169786709/df2bf97af48650521092d3975a514d1f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/53a924ce7/169786709/53a924ce734d1bca0330d048043c7aad_max_476x317.jpeg",
- "url": "property-photo/53a924ce7/169786709/53a924ce734d1bca0330d048043c7aad.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a5e37761b/169786709/a5e37761b6becd584d8f56902dbe3c19_max_476x317.jpeg",
- "url": "property-photo/a5e37761b/169786709/a5e37761b6becd584d8f56902dbe3c19.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/754633b5e/169786709/754633b5e8c82bb3d3b29e33a6b4fdec_max_476x317.jpeg",
- "url": "property-photo/754633b5e/169786709/754633b5e8c82bb3d3b29e33a6b4fdec.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e5976cbb0/169786709/e5976cbb03e3f81c0b76f6f22ef44ad4_max_476x317.jpeg",
- "url": "property-photo/e5976cbb0/169786709/e5976cbb03e3f81c0b76f6f22ef44ad4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e27ed627b/169786709/e27ed627b33c682be9f26db87ede71be_max_476x317.jpeg",
- "url": "property-photo/e27ed627b/169786709/e27ed627b33c682be9f26db87ede71be.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/64872777b/169786709/64872777be255759243ee5b759d8dca8_max_476x317.jpeg",
- "url": "property-photo/64872777b/169786709/64872777be255759243ee5b759d8dca8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bfb5350fe/169786709/bfb5350feb914f2a97d6312a8b27b251_max_476x317.jpeg",
- "url": "property-photo/bfb5350fe/169786709/bfb5350feb914f2a97d6312a8b27b251.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d7f0b6de2/169786709/d7f0b6de26937dbc74dc517e3d6ec4dc_max_476x317.jpeg",
- "url": "property-photo/d7f0b6de2/169786709/d7f0b6de26937dbc74dc517e3d6ec4dc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c0c19366/169786709/5c0c1936644fb2cb546ec3d71411f384_max_476x317.jpeg",
- "url": "property-photo/5c0c19366/169786709/5c0c1936644fb2cb546ec3d71411f384.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-11-27T15:25:03Z"
- },
- "price": {
- "amount": 3250000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£3,250,000",
- "displayPriceQualifier": "Guide Price"
- }
- ]
- },
- "premiumListing": true,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 95089,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_59759_0003.jpeg",
- "contactTelephone": "020 3834 8710",
- "branchDisplayName": "Hamptons, Canary Wharf",
- "branchName": "Canary Wharf",
- "brandTradingName": "Hamptons",
- "branchLandingPageUrl": "/estate-agents/agent/Hamptons/Canary-Wharf-95089.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-06T15:10:48Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_59759_0003.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": {
- "productLabelText": "Character Features",
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "4,124 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/169786709#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=169786709",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-11-27T15:19:41Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-01-24T02:39:59Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Georgian Family Home",
- "htmlDescription": "Georgian Family Home"
- },
- {
- "order": 2,
- "description": "Packed Full of Period Features",
- "htmlDescription": "Packed Full of Period Features"
- },
- {
- "order": 3,
- "description": "5 Double Bedrooms",
- "htmlDescription": "5 Double Bedrooms"
- },
- {
- "order": 4,
- "description": "4 Receptions",
- "htmlDescription": "4 Receptions"
- },
- {
- "order": 5,
- "description": "Established Landscaped Gardens",
- "htmlDescription": "Established Landscaped Gardens"
- },
- {
- "order": 6,
- "description": "Double Garage",
- "htmlDescription": "Double Garage"
- },
- {
- "order": 7,
- "description": "Off Street Parking",
- "htmlDescription": "Off Street Parking"
- },
- {
- "order": 8,
- "description": "Option to Extend (STP)",
- "htmlDescription": "Option to Extend (STP)"
- },
- {
- "order": 9,
- "description": "Short Walk from High Street",
- "htmlDescription": "Short Walk from High Street"
- },
- {
- "order": 10,
- "description": "Close to Tube",
- "htmlDescription": "Close to Tube"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c198dbe8/169786709/8c198dbe80f0ba9ef851c247627a4c10_max_476x317.jpeg",
- "url": "property-photo/8c198dbe8/169786709/8c198dbe80f0ba9ef851c247627a4c10.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c1d58eb42/169786709/c1d58eb42e7ec087cff2749468f2e008_max_476x317.jpeg",
- "url": "property-photo/c1d58eb42/169786709/c1d58eb42e7ec087cff2749468f2e008.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2fce999ff/169786709/2fce999ffde058107da994669619339e_max_476x317.jpeg",
- "url": "property-photo/2fce999ff/169786709/2fce999ffde058107da994669619339e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2a88ed23a/169786709/2a88ed23a0d71bf021a1a33bf27bfebe_max_476x317.jpeg",
- "url": "property-photo/2a88ed23a/169786709/2a88ed23a0d71bf021a1a33bf27bfebe.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ebd50e4fc/169786709/ebd50e4fc17d8611589bf15f954ca273_max_476x317.jpeg",
- "url": "property-photo/ebd50e4fc/169786709/ebd50e4fc17d8611589bf15f954ca273.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7acd33c63/169786709/7acd33c6376a6ad6ba18cfbb04cdb5ad_max_476x317.jpeg",
- "url": "property-photo/7acd33c63/169786709/7acd33c6376a6ad6ba18cfbb04cdb5ad.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0984d4ec7/169786709/0984d4ec72ccaae2f26a8a824d635aec_max_476x317.jpeg",
- "url": "property-photo/0984d4ec7/169786709/0984d4ec72ccaae2f26a8a824d635aec.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/70a3dd404/169786709/70a3dd404e6d69cc8e77e93c0ba9ccd5_max_476x317.jpeg",
- "url": "property-photo/70a3dd404/169786709/70a3dd404e6d69cc8e77e93c0ba9ccd5.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/16913d51f/169786709/16913d51f50e35ca11354acb13972c15_max_476x317.jpeg",
- "url": "property-photo/16913d51f/169786709/16913d51f50e35ca11354acb13972c15.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/74468eb95/169786709/74468eb9560808b6cb0a15ae0b58b0ae_max_476x317.jpeg",
- "url": "property-photo/74468eb95/169786709/74468eb9560808b6cb0a15ae0b58b0ae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8d8b3ab45/169786709/8d8b3ab45f89631d56020189a8433d8c_max_476x317.jpeg",
- "url": "property-photo/8d8b3ab45/169786709/8d8b3ab45f89631d56020189a8433d8c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8e45313a5/169786709/8e45313a567505c4c81732cbcf4dfbc1_max_476x317.jpeg",
- "url": "property-photo/8e45313a5/169786709/8e45313a567505c4c81732cbcf4dfbc1.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7a2ff815a/169786709/7a2ff815ab755cd14323390f49139c45_max_476x317.jpeg",
- "url": "property-photo/7a2ff815a/169786709/7a2ff815ab755cd14323390f49139c45.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5749797a1/169786709/5749797a1b7b6a68bfba4aafa0a770a3_max_476x317.jpeg",
- "url": "property-photo/5749797a1/169786709/5749797a1b7b6a68bfba4aafa0a770a3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f84d42589/169786709/f84d425895881518f8c2f42d45a4c3eb_max_476x317.jpeg",
- "url": "property-photo/f84d42589/169786709/f84d425895881518f8c2f42d45a4c3eb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d45c51916/169786709/d45c519160950d785f82694d5f298dcb_max_476x317.jpeg",
- "url": "property-photo/d45c51916/169786709/d45c519160950d785f82694d5f298dcb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c04e5925/169786709/1c04e5925c8b18bcb3c905a21ac0cdb2_max_476x317.jpeg",
- "url": "property-photo/1c04e5925/169786709/1c04e5925c8b18bcb3c905a21ac0cdb2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/15e9ba995/169786709/15e9ba995e3df6fb3fe2116bf947c5f6_max_476x317.jpeg",
- "url": "property-photo/15e9ba995/169786709/15e9ba995e3df6fb3fe2116bf947c5f6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/79a93f23c/169786709/79a93f23c2a6e711a2040cb5dc47dd7c_max_476x317.jpeg",
- "url": "property-photo/79a93f23c/169786709/79a93f23c2a6e711a2040cb5dc47dd7c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9f12c9cfa/169786709/9f12c9cfa94492a5682bc5f7c8df83c1_max_476x317.jpeg",
- "url": "property-photo/9f12c9cfa/169786709/9f12c9cfa94492a5682bc5f7c8df83c1.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c78bc0509/169786709/c78bc050901afacbb1047257d3acd251_max_476x317.jpeg",
- "url": "property-photo/c78bc0509/169786709/c78bc050901afacbb1047257d3acd251.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e89b89d1d/169786709/e89b89d1d7bc52e923034d9246fe2148_max_476x317.jpeg",
- "url": "property-photo/e89b89d1d/169786709/e89b89d1d7bc52e923034d9246fe2148.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e26937cc5/169786709/e26937cc56016bfb73f88a0612aa4e02_max_476x317.jpeg",
- "url": "property-photo/e26937cc5/169786709/e26937cc56016bfb73f88a0612aa4e02.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/46b568e78/169786709/46b568e78da6bd39c47f82bc006dcd34_max_476x317.jpeg",
- "url": "property-photo/46b568e78/169786709/46b568e78da6bd39c47f82bc006dcd34.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/580c222a3/169786709/580c222a3f2105be301d956d218dcadf_max_476x317.jpeg",
- "url": "property-photo/580c222a3/169786709/580c222a3f2105be301d956d218dcadf.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c830cebf6/169786709/c830cebf62dc2e5f0455c8f5553fcf93_max_476x317.jpeg",
- "url": "property-photo/c830cebf6/169786709/c830cebf62dc2e5f0455c8f5553fcf93.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/df2bf97af/169786709/df2bf97af48650521092d3975a514d1f_max_476x317.jpeg",
- "url": "property-photo/df2bf97af/169786709/df2bf97af48650521092d3975a514d1f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/53a924ce7/169786709/53a924ce734d1bca0330d048043c7aad_max_476x317.jpeg",
- "url": "property-photo/53a924ce7/169786709/53a924ce734d1bca0330d048043c7aad.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a5e37761b/169786709/a5e37761b6becd584d8f56902dbe3c19_max_476x317.jpeg",
- "url": "property-photo/a5e37761b/169786709/a5e37761b6becd584d8f56902dbe3c19.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/754633b5e/169786709/754633b5e8c82bb3d3b29e33a6b4fdec_max_476x317.jpeg",
- "url": "property-photo/754633b5e/169786709/754633b5e8c82bb3d3b29e33a6b4fdec.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e5976cbb0/169786709/e5976cbb03e3f81c0b76f6f22ef44ad4_max_476x317.jpeg",
- "url": "property-photo/e5976cbb0/169786709/e5976cbb03e3f81c0b76f6f22ef44ad4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e27ed627b/169786709/e27ed627b33c682be9f26db87ede71be_max_476x317.jpeg",
- "url": "property-photo/e27ed627b/169786709/e27ed627b33c682be9f26db87ede71be.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/64872777b/169786709/64872777be255759243ee5b759d8dca8_max_476x317.jpeg",
- "url": "property-photo/64872777b/169786709/64872777be255759243ee5b759d8dca8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bfb5350fe/169786709/bfb5350feb914f2a97d6312a8b27b251_max_476x317.jpeg",
- "url": "property-photo/bfb5350fe/169786709/bfb5350feb914f2a97d6312a8b27b251.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d7f0b6de2/169786709/d7f0b6de26937dbc74dc517e3d6ec4dc_max_476x317.jpeg",
- "url": "property-photo/d7f0b6de2/169786709/d7f0b6de26937dbc74dc517e3d6ec4dc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c0c19366/169786709/5c0c1936644fb2cb546ec3d71411f384_max_476x317.jpeg",
- "url": "property-photo/5c0c19366/169786709/5c0c1936644fb2cb546ec3d71411f384.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c198dbe8/169786709/8c198dbe80f0ba9ef851c247627a4c10_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c198dbe8/169786709/8c198dbe80f0ba9ef851c247627a4c10_max_296x197.jpeg"
- },
- "formattedBranchName": " by Hamptons, Canary Wharf",
- "addedOrReduced": "Added on 27/11/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "5 bedroom detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 168069566,
- "bedrooms": 5,
- "bathrooms": 2,
- "numberOfImages": 29,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Set on a prestigious residential road within Wanstead, this detached 1950s house offers a sublime balance of period charm and contemporary potential, with multiple highlights inside and out including three balconies with multiple views, a large driveway, and incredible natural light throughout. T...",
- "displayAddress": "The Warren Drive, Wanstead",
- "countryCode": "GB",
- "location": { "latitude": 51.570835, "longitude": 0.035477 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c8fb4cba9/168069566/c8fb4cba96d9dc7a9649ea05221f6209_max_476x317.jpeg",
- "url": "property-photo/c8fb4cba9/168069566/c8fb4cba96d9dc7a9649ea05221f6209.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/626a2b67c/168069566/626a2b67c9d903712a8a9ad204c6f9e8_max_476x317.jpeg",
- "url": "property-photo/626a2b67c/168069566/626a2b67c9d903712a8a9ad204c6f9e8.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5f6c6161b/168069566/5f6c6161b938d438a279e4ee30b91011_max_476x317.jpeg",
- "url": "property-photo/5f6c6161b/168069566/5f6c6161b938d438a279e4ee30b91011.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1f0eada33/168069566/1f0eada33b95615d3262e1d8edabea21_max_476x317.jpeg",
- "url": "property-photo/1f0eada33/168069566/1f0eada33b95615d3262e1d8edabea21.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6dab50326/168069566/6dab50326c097956507e354e793bb293_max_476x317.jpeg",
- "url": "property-photo/6dab50326/168069566/6dab50326c097956507e354e793bb293.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b80c093d2/168069566/b80c093d29cb46881d28c59d5aa54a4d_max_476x317.jpeg",
- "url": "property-photo/b80c093d2/168069566/b80c093d29cb46881d28c59d5aa54a4d.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d78020a37/168069566/d78020a37e52fe901f3a33630554fd8a_max_476x317.jpeg",
- "url": "property-photo/d78020a37/168069566/d78020a37e52fe901f3a33630554fd8a.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/17eec3acf/168069566/17eec3acf23c40fb13fdb5f6c46b2cee_max_476x317.jpeg",
- "url": "property-photo/17eec3acf/168069566/17eec3acf23c40fb13fdb5f6c46b2cee.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8d42c2fdc/168069566/8d42c2fdc26d9795d0befda1a6ef13e5_max_476x317.jpeg",
- "url": "property-photo/8d42c2fdc/168069566/8d42c2fdc26d9795d0befda1a6ef13e5.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/33febc705/168069566/33febc705a683b345b3a9816947b9d81_max_476x317.jpeg",
- "url": "property-photo/33febc705/168069566/33febc705a683b345b3a9816947b9d81.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/99232bf31/168069566/99232bf31be995e777cc405693e7d5c7_max_476x317.jpeg",
- "url": "property-photo/99232bf31/168069566/99232bf31be995e777cc405693e7d5c7.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/68def3982/168069566/68def3982fb5f3d16d169c43c56db9fd_max_476x317.jpeg",
- "url": "property-photo/68def3982/168069566/68def3982fb5f3d16d169c43c56db9fd.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a2e833bf1/168069566/a2e833bf1fccc8a40ed8abed1e5fae5e_max_476x317.jpeg",
- "url": "property-photo/a2e833bf1/168069566/a2e833bf1fccc8a40ed8abed1e5fae5e.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/418e1d95e/168069566/418e1d95e9730e1879072907df517439_max_476x317.jpeg",
- "url": "property-photo/418e1d95e/168069566/418e1d95e9730e1879072907df517439.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2e90addf1/168069566/2e90addf14b423f9da70fbaca9b5d217_max_476x317.jpeg",
- "url": "property-photo/2e90addf1/168069566/2e90addf14b423f9da70fbaca9b5d217.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3f1f2350f/168069566/3f1f2350f3e8986b160c5ee387e17a65_max_476x317.jpeg",
- "url": "property-photo/3f1f2350f/168069566/3f1f2350f3e8986b160c5ee387e17a65.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/25dc4ebb8/168069566/25dc4ebb80723f33b62714de35a49987_max_476x317.jpeg",
- "url": "property-photo/25dc4ebb8/168069566/25dc4ebb80723f33b62714de35a49987.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c8baeaa44/168069566/c8baeaa44361c5fdeb1b160bcbfff5f3_max_476x317.jpeg",
- "url": "property-photo/c8baeaa44/168069566/c8baeaa44361c5fdeb1b160bcbfff5f3.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0d5654077/168069566/0d56540775287c04a92eb2ed8fe0349d_max_476x317.jpeg",
- "url": "property-photo/0d5654077/168069566/0d56540775287c04a92eb2ed8fe0349d.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b44e7a78e/168069566/b44e7a78eb8164ff3bd62babe528c529_max_476x317.jpeg",
- "url": "property-photo/b44e7a78e/168069566/b44e7a78eb8164ff3bd62babe528c529.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9f185536d/168069566/9f185536db9411f25b47bf2f8ec723a5_max_476x317.jpeg",
- "url": "property-photo/9f185536d/168069566/9f185536db9411f25b47bf2f8ec723a5.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/33560ff0b/168069566/33560ff0b3240c5949f6ddc1931d99f0_max_476x317.jpeg",
- "url": "property-photo/33560ff0b/168069566/33560ff0b3240c5949f6ddc1931d99f0.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7f2f2e041/168069566/7f2f2e0413b046ae553b79a2baf11334_max_476x317.png",
- "url": "property-photo/7f2f2e041/168069566/7f2f2e0413b046ae553b79a2baf11334.png",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bfb29277a/168069566/bfb29277ade3548355bdd2e9de589106_max_476x317.png",
- "url": "property-photo/bfb29277a/168069566/bfb29277ade3548355bdd2e9de589106.png",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ebf043e93/168069566/ebf043e9393c753053c764d207873957_max_476x317.png",
- "url": "property-photo/ebf043e93/168069566/ebf043e9393c753053c764d207873957.png",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/710506001/168069566/710506001e52873f28cd19d816962e98_max_476x317.jpeg",
- "url": "property-photo/710506001/168069566/710506001e52873f28cd19d816962e98.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/25feff5e9/168069566/25feff5e9eb6b59d2726e475577df043_max_476x317.jpeg",
- "url": "property-photo/25feff5e9/168069566/25feff5e9eb6b59d2726e475577df043.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a2353263f/168069566/a2353263f6b1c0b23116c48311fbbc7b_max_476x317.png",
- "url": "property-photo/a2353263f/168069566/a2353263f6b1c0b23116c48311fbbc7b.png",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/324b35948/168069566/324b35948d1a581aa92224a6ec55dd3c_max_476x317.png",
- "url": "property-photo/324b35948/168069566/324b35948d1a581aa92224a6ec55dd3c.png",
- "caption": "The Warren Drive, E11"
- }
- ],
- "propertySubType": "House",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-10-10T10:43:03Z"
- },
- "price": {
- "amount": 3000000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£3,000,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 171122,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_49357_0001.png",
- "contactTelephone": "020 3907 3713",
- "branchDisplayName": "The Stow Brothers, Wanstead & Leytonstone",
- "branchName": "Wanstead & Leytonstone",
- "brandTradingName": "The Stow Brothers",
- "branchLandingPageUrl": "/estate-agents/agent/The-Stow-Brothers/Wanstead-and-Leytonstone-171122.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-19T10:05:05Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_49357_0001.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "2,322 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/168069566#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=168069566",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-10-10T10:37:18Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2025-12-15T14:42:23Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Detached 1950s House",
- "htmlDescription": "Detached 1950s House"
- },
- {
- "order": 2,
- "description": "Exceptional Plot Overlooking 18th Green of Wanstead Golf Course",
- "htmlDescription": "Exceptional Plot Overlooking 18th Green of Wanstead Golf Course"
- },
- {
- "order": 3,
- "description": "Fantastic Potential For Renovation Or Re-Development",
- "htmlDescription": "Fantastic Potential For Renovation Or Re-Development"
- },
- {
- "order": 4,
- "description": "Prestigious Residential Road Within Wanstead",
- "htmlDescription": "Prestigious Residential Road Within Wanstead"
- },
- {
- "order": 5,
- "description": "Three Balconies, Two Offering Scenic Views of Golf Parkland",
- "htmlDescription": "Three Balconies, Two Offering Scenic Views of Golf Parkland"
- },
- {
- "order": 6,
- "description": "Driveway For Multiple Cars",
- "htmlDescription": "Driveway For Multiple Cars"
- },
- {
- "order": 7,
- "description": "Incredible Natural Light & Charm",
- "htmlDescription": "Incredible Natural Light & Charm"
- },
- {
- "order": 8,
- "description": "Nestled Between Wanstead Park/ Golf Course & High Street/ Tube Station",
- "htmlDescription": "Nestled Between Wanstead Park/ Golf Course & High Street/ Tube Station"
- },
- {
- "order": 9,
- "description": "Chain Free",
- "htmlDescription": "Chain Free"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c8fb4cba9/168069566/c8fb4cba96d9dc7a9649ea05221f6209_max_476x317.jpeg",
- "url": "property-photo/c8fb4cba9/168069566/c8fb4cba96d9dc7a9649ea05221f6209.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/626a2b67c/168069566/626a2b67c9d903712a8a9ad204c6f9e8_max_476x317.jpeg",
- "url": "property-photo/626a2b67c/168069566/626a2b67c9d903712a8a9ad204c6f9e8.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5f6c6161b/168069566/5f6c6161b938d438a279e4ee30b91011_max_476x317.jpeg",
- "url": "property-photo/5f6c6161b/168069566/5f6c6161b938d438a279e4ee30b91011.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1f0eada33/168069566/1f0eada33b95615d3262e1d8edabea21_max_476x317.jpeg",
- "url": "property-photo/1f0eada33/168069566/1f0eada33b95615d3262e1d8edabea21.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6dab50326/168069566/6dab50326c097956507e354e793bb293_max_476x317.jpeg",
- "url": "property-photo/6dab50326/168069566/6dab50326c097956507e354e793bb293.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b80c093d2/168069566/b80c093d29cb46881d28c59d5aa54a4d_max_476x317.jpeg",
- "url": "property-photo/b80c093d2/168069566/b80c093d29cb46881d28c59d5aa54a4d.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d78020a37/168069566/d78020a37e52fe901f3a33630554fd8a_max_476x317.jpeg",
- "url": "property-photo/d78020a37/168069566/d78020a37e52fe901f3a33630554fd8a.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/17eec3acf/168069566/17eec3acf23c40fb13fdb5f6c46b2cee_max_476x317.jpeg",
- "url": "property-photo/17eec3acf/168069566/17eec3acf23c40fb13fdb5f6c46b2cee.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8d42c2fdc/168069566/8d42c2fdc26d9795d0befda1a6ef13e5_max_476x317.jpeg",
- "url": "property-photo/8d42c2fdc/168069566/8d42c2fdc26d9795d0befda1a6ef13e5.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/33febc705/168069566/33febc705a683b345b3a9816947b9d81_max_476x317.jpeg",
- "url": "property-photo/33febc705/168069566/33febc705a683b345b3a9816947b9d81.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/99232bf31/168069566/99232bf31be995e777cc405693e7d5c7_max_476x317.jpeg",
- "url": "property-photo/99232bf31/168069566/99232bf31be995e777cc405693e7d5c7.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/68def3982/168069566/68def3982fb5f3d16d169c43c56db9fd_max_476x317.jpeg",
- "url": "property-photo/68def3982/168069566/68def3982fb5f3d16d169c43c56db9fd.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a2e833bf1/168069566/a2e833bf1fccc8a40ed8abed1e5fae5e_max_476x317.jpeg",
- "url": "property-photo/a2e833bf1/168069566/a2e833bf1fccc8a40ed8abed1e5fae5e.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/418e1d95e/168069566/418e1d95e9730e1879072907df517439_max_476x317.jpeg",
- "url": "property-photo/418e1d95e/168069566/418e1d95e9730e1879072907df517439.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2e90addf1/168069566/2e90addf14b423f9da70fbaca9b5d217_max_476x317.jpeg",
- "url": "property-photo/2e90addf1/168069566/2e90addf14b423f9da70fbaca9b5d217.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3f1f2350f/168069566/3f1f2350f3e8986b160c5ee387e17a65_max_476x317.jpeg",
- "url": "property-photo/3f1f2350f/168069566/3f1f2350f3e8986b160c5ee387e17a65.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/25dc4ebb8/168069566/25dc4ebb80723f33b62714de35a49987_max_476x317.jpeg",
- "url": "property-photo/25dc4ebb8/168069566/25dc4ebb80723f33b62714de35a49987.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c8baeaa44/168069566/c8baeaa44361c5fdeb1b160bcbfff5f3_max_476x317.jpeg",
- "url": "property-photo/c8baeaa44/168069566/c8baeaa44361c5fdeb1b160bcbfff5f3.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0d5654077/168069566/0d56540775287c04a92eb2ed8fe0349d_max_476x317.jpeg",
- "url": "property-photo/0d5654077/168069566/0d56540775287c04a92eb2ed8fe0349d.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b44e7a78e/168069566/b44e7a78eb8164ff3bd62babe528c529_max_476x317.jpeg",
- "url": "property-photo/b44e7a78e/168069566/b44e7a78eb8164ff3bd62babe528c529.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9f185536d/168069566/9f185536db9411f25b47bf2f8ec723a5_max_476x317.jpeg",
- "url": "property-photo/9f185536d/168069566/9f185536db9411f25b47bf2f8ec723a5.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/33560ff0b/168069566/33560ff0b3240c5949f6ddc1931d99f0_max_476x317.jpeg",
- "url": "property-photo/33560ff0b/168069566/33560ff0b3240c5949f6ddc1931d99f0.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7f2f2e041/168069566/7f2f2e0413b046ae553b79a2baf11334_max_476x317.png",
- "url": "property-photo/7f2f2e041/168069566/7f2f2e0413b046ae553b79a2baf11334.png",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bfb29277a/168069566/bfb29277ade3548355bdd2e9de589106_max_476x317.png",
- "url": "property-photo/bfb29277a/168069566/bfb29277ade3548355bdd2e9de589106.png",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ebf043e93/168069566/ebf043e9393c753053c764d207873957_max_476x317.png",
- "url": "property-photo/ebf043e93/168069566/ebf043e9393c753053c764d207873957.png",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/710506001/168069566/710506001e52873f28cd19d816962e98_max_476x317.jpeg",
- "url": "property-photo/710506001/168069566/710506001e52873f28cd19d816962e98.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/25feff5e9/168069566/25feff5e9eb6b59d2726e475577df043_max_476x317.jpeg",
- "url": "property-photo/25feff5e9/168069566/25feff5e9eb6b59d2726e475577df043.jpeg",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a2353263f/168069566/a2353263f6b1c0b23116c48311fbbc7b_max_476x317.png",
- "url": "property-photo/a2353263f/168069566/a2353263f6b1c0b23116c48311fbbc7b.png",
- "caption": "The Warren Drive, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/324b35948/168069566/324b35948d1a581aa92224a6ec55dd3c_max_476x317.png",
- "url": "property-photo/324b35948/168069566/324b35948d1a581aa92224a6ec55dd3c.png",
- "caption": "The Warren Drive, E11"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c8fb4cba9/168069566/c8fb4cba96d9dc7a9649ea05221f6209_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c8fb4cba9/168069566/c8fb4cba96d9dc7a9649ea05221f6209_max_296x197.jpeg"
- },
- "formattedBranchName": " by The Stow Brothers, Wanstead & Leytonstone",
- "addedOrReduced": "Added on 10/10/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "5 bedroom house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 169932497,
- "bedrooms": 7,
- "bathrooms": 6,
- "numberOfImages": 47,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Desirable Location - Gated Detached Home - Double Garage & Carriage Driveway - Landscaped Rear Garden - Multiple Reception Rooms - Downstairs WC & Utility Room - Seven Bedrooms, Four With En Suites - Over 5,000 SQ FT Of Living Space - Stylish Kitchen - Excellent Transport Links",
- "displayAddress": "The Avenue, Wanstead, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.577823, "longitude": 0.029488 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/52b307ab7/169932497/52b307ab7b219b511f6c9f7de6fd4810_max_476x317.jpeg",
- "url": "property-photo/52b307ab7/169932497/52b307ab7b219b511f6c9f7de6fd4810.jpeg",
- "caption": "avenue-86.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d68e7873c/169932497/d68e7873c6f5ce55caa83f6514381475_max_476x317.jpeg",
- "url": "property-photo/d68e7873c/169932497/d68e7873c6f5ce55caa83f6514381475.jpeg",
- "caption": "Avenue-34.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9b47c714f/169932497/9b47c714f6475ef3c3ee1687a0ff9c2a_max_476x317.jpeg",
- "url": "property-photo/9b47c714f/169932497/9b47c714f6475ef3c3ee1687a0ff9c2a.jpeg",
- "caption": "Avenue-36.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c242f23d5/169932497/c242f23d5f65420c03631d64964565d3_max_476x317.jpeg",
- "url": "property-photo/c242f23d5/169932497/c242f23d5f65420c03631d64964565d3.jpeg",
- "caption": "Avenue-37.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/14c03f979/169932497/14c03f97939524d73f5bb372946e21ad_max_476x317.jpeg",
- "url": "property-photo/14c03f979/169932497/14c03f97939524d73f5bb372946e21ad.jpeg",
- "caption": "Avenue-38.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/622818c59/169932497/622818c59628f550014ce901b80cdf41_max_476x317.jpeg",
- "url": "property-photo/622818c59/169932497/622818c59628f550014ce901b80cdf41.jpeg",
- "caption": "Avenue-39.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a35ea66cf/169932497/a35ea66cf00a0bb3136308500ddceb0e_max_476x317.jpeg",
- "url": "property-photo/a35ea66cf/169932497/a35ea66cf00a0bb3136308500ddceb0e.jpeg",
- "caption": "Avenue-40.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f50bd9489/169932497/f50bd94890182e3a1ad159140a7f572f_max_476x317.jpeg",
- "url": "property-photo/f50bd9489/169932497/f50bd94890182e3a1ad159140a7f572f.jpeg",
- "caption": "Avenue-41.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bf72edb18/169932497/bf72edb182587879267fb5089af27286_max_476x317.jpeg",
- "url": "property-photo/bf72edb18/169932497/bf72edb182587879267fb5089af27286.jpeg",
- "caption": "Avenue-42.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0654f383/169932497/d0654f383e72209fbfda632fa47b679a_max_476x317.jpeg",
- "url": "property-photo/d0654f383/169932497/d0654f383e72209fbfda632fa47b679a.jpeg",
- "caption": "Avenue-43.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/add9293ef/169932497/add9293efd19563c1e845cff012982bd_max_476x317.jpeg",
- "url": "property-photo/add9293ef/169932497/add9293efd19563c1e845cff012982bd.jpeg",
- "caption": "Avenue-44.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5a9020970/169932497/5a90209707f6ac78e9c4f7ea82c5be5f_max_476x317.jpeg",
- "url": "property-photo/5a9020970/169932497/5a90209707f6ac78e9c4f7ea82c5be5f.jpeg",
- "caption": "Avenue-45.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db8ae20ca/169932497/db8ae20ca512c094f2accb1429349af4_max_476x317.jpeg",
- "url": "property-photo/db8ae20ca/169932497/db8ae20ca512c094f2accb1429349af4.jpeg",
- "caption": "Avenue-46.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4afd4fe4f/169932497/4afd4fe4f655aa59c07ebfce143d761b_max_476x317.jpeg",
- "url": "property-photo/4afd4fe4f/169932497/4afd4fe4f655aa59c07ebfce143d761b.jpeg",
- "caption": "Avenue-47.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/37194c3b3/169932497/37194c3b3b26cb69891a8008ded91a66_max_476x317.jpeg",
- "url": "property-photo/37194c3b3/169932497/37194c3b3b26cb69891a8008ded91a66.jpeg",
- "caption": "Avenue-48.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/371f6d745/169932497/371f6d7458d1f679aed03d5e5a9da486_max_476x317.jpeg",
- "url": "property-photo/371f6d745/169932497/371f6d7458d1f679aed03d5e5a9da486.jpeg",
- "caption": "Avenue-50.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e325cbb6b/169932497/e325cbb6be4c3cddc9e12b50ddc13ff1_max_476x317.jpeg",
- "url": "property-photo/e325cbb6b/169932497/e325cbb6be4c3cddc9e12b50ddc13ff1.jpeg",
- "caption": "Avenue-51.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ef38b82b/169932497/9ef38b82b376e64bfca67ecd8c22e53e_max_476x317.jpeg",
- "url": "property-photo/9ef38b82b/169932497/9ef38b82b376e64bfca67ecd8c22e53e.jpeg",
- "caption": "Avenue-52.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/75ad42574/169932497/75ad42574515e3f5125556ca907d9607_max_476x317.jpeg",
- "url": "property-photo/75ad42574/169932497/75ad42574515e3f5125556ca907d9607.jpeg",
- "caption": "Avenue-53.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7d3b7a532/169932497/7d3b7a532f364ca1e3a1c85777b9b2d4_max_476x317.jpeg",
- "url": "property-photo/7d3b7a532/169932497/7d3b7a532f364ca1e3a1c85777b9b2d4.jpeg",
- "caption": "Avenue-55.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dbfc48ed7/169932497/dbfc48ed7336613acb01f678bd2e294c_max_476x317.jpeg",
- "url": "property-photo/dbfc48ed7/169932497/dbfc48ed7336613acb01f678bd2e294c.jpeg",
- "caption": "Avenue-56.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f1b5b34cb/169932497/f1b5b34cb48815ceb8cd6b34d2b636e0_max_476x317.jpeg",
- "url": "property-photo/f1b5b34cb/169932497/f1b5b34cb48815ceb8cd6b34d2b636e0.jpeg",
- "caption": "Avenue-57.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b98501c6d/169932497/b98501c6daaf684314332afcfcaffe52_max_476x317.jpeg",
- "url": "property-photo/b98501c6d/169932497/b98501c6daaf684314332afcfcaffe52.jpeg",
- "caption": "Avenue-58.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2d93cd963/169932497/2d93cd9639e050ee606cd8331c6e3f31_max_476x317.jpeg",
- "url": "property-photo/2d93cd963/169932497/2d93cd9639e050ee606cd8331c6e3f31.jpeg",
- "caption": "Avenue-59.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0616c046/169932497/d0616c046296045cad8d2d816cb798c0_max_476x317.jpeg",
- "url": "property-photo/d0616c046/169932497/d0616c046296045cad8d2d816cb798c0.jpeg",
- "caption": "Avenue-60.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/75821bd20/169932497/75821bd20fedc9707c379d5beda0e41c_max_476x317.jpeg",
- "url": "property-photo/75821bd20/169932497/75821bd20fedc9707c379d5beda0e41c.jpeg",
- "caption": "Avenue-61.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f01e8befb/169932497/f01e8befb6a8057c3f13496a714a0fdd_max_476x317.jpeg",
- "url": "property-photo/f01e8befb/169932497/f01e8befb6a8057c3f13496a714a0fdd.jpeg",
- "caption": "Avenue-62.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b807371c8/169932497/b807371c85e9b4a501014092e7207e9c_max_476x317.jpeg",
- "url": "property-photo/b807371c8/169932497/b807371c85e9b4a501014092e7207e9c.jpeg",
- "caption": "Avenue-63.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/87789ec6f/169932497/87789ec6fb12c5c3c5c2eb1dfa15b855_max_476x317.jpeg",
- "url": "property-photo/87789ec6f/169932497/87789ec6fb12c5c3c5c2eb1dfa15b855.jpeg",
- "caption": "Avenue-64.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1b3180cce/169932497/1b3180cceb28fed803332bb974c8fd7c_max_476x317.jpeg",
- "url": "property-photo/1b3180cce/169932497/1b3180cceb28fed803332bb974c8fd7c.jpeg",
- "caption": "Avenue-65.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/99681cbbd/169932497/99681cbbd6a01741012b557dc9a27cf4_max_476x317.jpeg",
- "url": "property-photo/99681cbbd/169932497/99681cbbd6a01741012b557dc9a27cf4.jpeg",
- "caption": "Avenue-66.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63f5bac52/169932497/63f5bac5241f53e5a9200eb078eb7989_max_476x317.jpeg",
- "url": "property-photo/63f5bac52/169932497/63f5bac5241f53e5a9200eb078eb7989.jpeg",
- "caption": "Avenue-67.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/62dfb0c13/169932497/62dfb0c135cdb39367847875e0abf571_max_476x317.jpeg",
- "url": "property-photo/62dfb0c13/169932497/62dfb0c135cdb39367847875e0abf571.jpeg",
- "caption": "Avenue-68.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f48bf139f/169932497/f48bf139f5c2bb4371dfeea0f324dc92_max_476x317.jpeg",
- "url": "property-photo/f48bf139f/169932497/f48bf139f5c2bb4371dfeea0f324dc92.jpeg",
- "caption": "Avenue-69.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/12e2e3638/169932497/12e2e3638e44be093aba26ea1445bca3_max_476x317.jpeg",
- "url": "property-photo/12e2e3638/169932497/12e2e3638e44be093aba26ea1445bca3.jpeg",
- "caption": "Avenue-70.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/120dfae09/169932497/120dfae09e07eb740824a07960607c69_max_476x317.jpeg",
- "url": "property-photo/120dfae09/169932497/120dfae09e07eb740824a07960607c69.jpeg",
- "caption": "Avenue-71.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/149cd40a6/169932497/149cd40a654fa8ea80c6cd1c5eb2ef26_max_476x317.jpeg",
- "url": "property-photo/149cd40a6/169932497/149cd40a654fa8ea80c6cd1c5eb2ef26.jpeg",
- "caption": "Avenue-72.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c2aba3250/169932497/c2aba325088f36268b17a7ee84dbd915_max_476x317.jpeg",
- "url": "property-photo/c2aba3250/169932497/c2aba325088f36268b17a7ee84dbd915.jpeg",
- "caption": "Avenue-73.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/530de612b/169932497/530de612b82b23cb6fa3ffc8944ac778_max_476x317.jpeg",
- "url": "property-photo/530de612b/169932497/530de612b82b23cb6fa3ffc8944ac778.jpeg",
- "caption": "Avenue-74.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3e7ab5a0d/169932497/3e7ab5a0dee3f245baa561d5904a3f5b_max_476x317.jpeg",
- "url": "property-photo/3e7ab5a0d/169932497/3e7ab5a0dee3f245baa561d5904a3f5b.jpeg",
- "caption": "Avenue-75.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f36e45ed3/169932497/f36e45ed3c39f0045dfbb05d6d142667_max_476x317.jpeg",
- "url": "property-photo/f36e45ed3/169932497/f36e45ed3c39f0045dfbb05d6d142667.jpeg",
- "caption": "Avenue-76.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/eb2b66754/169932497/eb2b66754f3711a87767516f1a6e5876_max_476x317.jpeg",
- "url": "property-photo/eb2b66754/169932497/eb2b66754f3711a87767516f1a6e5876.jpeg",
- "caption": "Avenue-77.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6cac937e1/169932497/6cac937e193854b3e271d8f6a8b7171e_max_476x317.jpeg",
- "url": "property-photo/6cac937e1/169932497/6cac937e193854b3e271d8f6a8b7171e.jpeg",
- "caption": "Avenue-78.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b637acb75/169932497/b637acb754d232518160871b412dbf4a_max_476x317.jpeg",
- "url": "property-photo/b637acb75/169932497/b637acb754d232518160871b412dbf4a.jpeg",
- "caption": "Avenue-79.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/53aebf358/169932497/53aebf358d622ea8f8be0a70ce08942f_max_476x317.jpeg",
- "url": "property-photo/53aebf358/169932497/53aebf358d622ea8f8be0a70ce08942f.jpeg",
- "caption": "avenue-82.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8d2bd8825/169932497/8d2bd8825ac0b4fce634293538f3c358_max_476x317.jpeg",
- "url": "property-photo/8d2bd8825/169932497/8d2bd8825ac0b4fce634293538f3c358.jpeg",
- "caption": "avenue-84.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/151498739/169932497/151498739a8062e8ec2dc33e8782b8cb_max_476x317.jpeg",
- "url": "property-photo/151498739/169932497/151498739a8062e8ec2dc33e8782b8cb.jpeg",
- "caption": "avenue-85.1.jpg"
- }
- ],
- "propertySubType": "Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-12-02T17:13:04Z"
- },
- "price": {
- "amount": 2950000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£2,950,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": true,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 273152,
- "brandPlusLogoURI": "/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "contactTelephone": "020 8138 0636",
- "branchDisplayName": "Durden & Hunt, Wanstead & East London",
- "branchName": "Wanstead & East London",
- "brandTradingName": "Durden & Hunt",
- "branchLandingPageUrl": "/estate-agents/agent/Durden-and-Hunt/Wanstead-and-East-London-273152.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-01T10:42:02Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "primaryBrandColour": "#000000"
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": {
- "productLabelText": "Premium Listing",
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "5,013 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/169932497#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=169932497",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-12-02T17:07:54Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T10:13:41Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Desirable Location",
- "htmlDescription": "Desirable Location"
- },
- {
- "order": 2,
- "description": "Gated Detached Home",
- "htmlDescription": "Gated Detached Home"
- },
- {
- "order": 3,
- "description": "Double Garage & Carriage Driveway",
- "htmlDescription": "Double Garage & Carriage Driveway"
- },
- {
- "order": 4,
- "description": "Landscaped Rear Garden",
- "htmlDescription": "Landscaped Rear Garden"
- },
- {
- "order": 5,
- "description": "Multiple Reception Rooms",
- "htmlDescription": "Multiple Reception Rooms"
- },
- {
- "order": 6,
- "description": "Downstairs WC & Utility Room",
- "htmlDescription": "Downstairs WC & Utility Room"
- },
- {
- "order": 7,
- "description": "Seven Bedrooms, Four With En Suites",
- "htmlDescription": "Seven Bedrooms, Four With En Suites"
- },
- {
- "order": 8,
- "description": "Over 5,000 SQ FT Of Living Space",
- "htmlDescription": "Over 5,000 SQ FT Of Living Space"
- },
- {
- "order": 9,
- "description": "Stylish Kitchen",
- "htmlDescription": "Stylish Kitchen"
- },
- {
- "order": 10,
- "description": "Excellent Transport Links",
- "htmlDescription": "Excellent Transport Links"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/52b307ab7/169932497/52b307ab7b219b511f6c9f7de6fd4810_max_476x317.jpeg",
- "url": "property-photo/52b307ab7/169932497/52b307ab7b219b511f6c9f7de6fd4810.jpeg",
- "caption": "avenue-86.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d68e7873c/169932497/d68e7873c6f5ce55caa83f6514381475_max_476x317.jpeg",
- "url": "property-photo/d68e7873c/169932497/d68e7873c6f5ce55caa83f6514381475.jpeg",
- "caption": "Avenue-34.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9b47c714f/169932497/9b47c714f6475ef3c3ee1687a0ff9c2a_max_476x317.jpeg",
- "url": "property-photo/9b47c714f/169932497/9b47c714f6475ef3c3ee1687a0ff9c2a.jpeg",
- "caption": "Avenue-36.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c242f23d5/169932497/c242f23d5f65420c03631d64964565d3_max_476x317.jpeg",
- "url": "property-photo/c242f23d5/169932497/c242f23d5f65420c03631d64964565d3.jpeg",
- "caption": "Avenue-37.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/14c03f979/169932497/14c03f97939524d73f5bb372946e21ad_max_476x317.jpeg",
- "url": "property-photo/14c03f979/169932497/14c03f97939524d73f5bb372946e21ad.jpeg",
- "caption": "Avenue-38.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/622818c59/169932497/622818c59628f550014ce901b80cdf41_max_476x317.jpeg",
- "url": "property-photo/622818c59/169932497/622818c59628f550014ce901b80cdf41.jpeg",
- "caption": "Avenue-39.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a35ea66cf/169932497/a35ea66cf00a0bb3136308500ddceb0e_max_476x317.jpeg",
- "url": "property-photo/a35ea66cf/169932497/a35ea66cf00a0bb3136308500ddceb0e.jpeg",
- "caption": "Avenue-40.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f50bd9489/169932497/f50bd94890182e3a1ad159140a7f572f_max_476x317.jpeg",
- "url": "property-photo/f50bd9489/169932497/f50bd94890182e3a1ad159140a7f572f.jpeg",
- "caption": "Avenue-41.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bf72edb18/169932497/bf72edb182587879267fb5089af27286_max_476x317.jpeg",
- "url": "property-photo/bf72edb18/169932497/bf72edb182587879267fb5089af27286.jpeg",
- "caption": "Avenue-42.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0654f383/169932497/d0654f383e72209fbfda632fa47b679a_max_476x317.jpeg",
- "url": "property-photo/d0654f383/169932497/d0654f383e72209fbfda632fa47b679a.jpeg",
- "caption": "Avenue-43.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/add9293ef/169932497/add9293efd19563c1e845cff012982bd_max_476x317.jpeg",
- "url": "property-photo/add9293ef/169932497/add9293efd19563c1e845cff012982bd.jpeg",
- "caption": "Avenue-44.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5a9020970/169932497/5a90209707f6ac78e9c4f7ea82c5be5f_max_476x317.jpeg",
- "url": "property-photo/5a9020970/169932497/5a90209707f6ac78e9c4f7ea82c5be5f.jpeg",
- "caption": "Avenue-45.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db8ae20ca/169932497/db8ae20ca512c094f2accb1429349af4_max_476x317.jpeg",
- "url": "property-photo/db8ae20ca/169932497/db8ae20ca512c094f2accb1429349af4.jpeg",
- "caption": "Avenue-46.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4afd4fe4f/169932497/4afd4fe4f655aa59c07ebfce143d761b_max_476x317.jpeg",
- "url": "property-photo/4afd4fe4f/169932497/4afd4fe4f655aa59c07ebfce143d761b.jpeg",
- "caption": "Avenue-47.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/37194c3b3/169932497/37194c3b3b26cb69891a8008ded91a66_max_476x317.jpeg",
- "url": "property-photo/37194c3b3/169932497/37194c3b3b26cb69891a8008ded91a66.jpeg",
- "caption": "Avenue-48.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/371f6d745/169932497/371f6d7458d1f679aed03d5e5a9da486_max_476x317.jpeg",
- "url": "property-photo/371f6d745/169932497/371f6d7458d1f679aed03d5e5a9da486.jpeg",
- "caption": "Avenue-50.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e325cbb6b/169932497/e325cbb6be4c3cddc9e12b50ddc13ff1_max_476x317.jpeg",
- "url": "property-photo/e325cbb6b/169932497/e325cbb6be4c3cddc9e12b50ddc13ff1.jpeg",
- "caption": "Avenue-51.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ef38b82b/169932497/9ef38b82b376e64bfca67ecd8c22e53e_max_476x317.jpeg",
- "url": "property-photo/9ef38b82b/169932497/9ef38b82b376e64bfca67ecd8c22e53e.jpeg",
- "caption": "Avenue-52.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/75ad42574/169932497/75ad42574515e3f5125556ca907d9607_max_476x317.jpeg",
- "url": "property-photo/75ad42574/169932497/75ad42574515e3f5125556ca907d9607.jpeg",
- "caption": "Avenue-53.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7d3b7a532/169932497/7d3b7a532f364ca1e3a1c85777b9b2d4_max_476x317.jpeg",
- "url": "property-photo/7d3b7a532/169932497/7d3b7a532f364ca1e3a1c85777b9b2d4.jpeg",
- "caption": "Avenue-55.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dbfc48ed7/169932497/dbfc48ed7336613acb01f678bd2e294c_max_476x317.jpeg",
- "url": "property-photo/dbfc48ed7/169932497/dbfc48ed7336613acb01f678bd2e294c.jpeg",
- "caption": "Avenue-56.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f1b5b34cb/169932497/f1b5b34cb48815ceb8cd6b34d2b636e0_max_476x317.jpeg",
- "url": "property-photo/f1b5b34cb/169932497/f1b5b34cb48815ceb8cd6b34d2b636e0.jpeg",
- "caption": "Avenue-57.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b98501c6d/169932497/b98501c6daaf684314332afcfcaffe52_max_476x317.jpeg",
- "url": "property-photo/b98501c6d/169932497/b98501c6daaf684314332afcfcaffe52.jpeg",
- "caption": "Avenue-58.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2d93cd963/169932497/2d93cd9639e050ee606cd8331c6e3f31_max_476x317.jpeg",
- "url": "property-photo/2d93cd963/169932497/2d93cd9639e050ee606cd8331c6e3f31.jpeg",
- "caption": "Avenue-59.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0616c046/169932497/d0616c046296045cad8d2d816cb798c0_max_476x317.jpeg",
- "url": "property-photo/d0616c046/169932497/d0616c046296045cad8d2d816cb798c0.jpeg",
- "caption": "Avenue-60.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/75821bd20/169932497/75821bd20fedc9707c379d5beda0e41c_max_476x317.jpeg",
- "url": "property-photo/75821bd20/169932497/75821bd20fedc9707c379d5beda0e41c.jpeg",
- "caption": "Avenue-61.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f01e8befb/169932497/f01e8befb6a8057c3f13496a714a0fdd_max_476x317.jpeg",
- "url": "property-photo/f01e8befb/169932497/f01e8befb6a8057c3f13496a714a0fdd.jpeg",
- "caption": "Avenue-62.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b807371c8/169932497/b807371c85e9b4a501014092e7207e9c_max_476x317.jpeg",
- "url": "property-photo/b807371c8/169932497/b807371c85e9b4a501014092e7207e9c.jpeg",
- "caption": "Avenue-63.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/87789ec6f/169932497/87789ec6fb12c5c3c5c2eb1dfa15b855_max_476x317.jpeg",
- "url": "property-photo/87789ec6f/169932497/87789ec6fb12c5c3c5c2eb1dfa15b855.jpeg",
- "caption": "Avenue-64.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1b3180cce/169932497/1b3180cceb28fed803332bb974c8fd7c_max_476x317.jpeg",
- "url": "property-photo/1b3180cce/169932497/1b3180cceb28fed803332bb974c8fd7c.jpeg",
- "caption": "Avenue-65.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/99681cbbd/169932497/99681cbbd6a01741012b557dc9a27cf4_max_476x317.jpeg",
- "url": "property-photo/99681cbbd/169932497/99681cbbd6a01741012b557dc9a27cf4.jpeg",
- "caption": "Avenue-66.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63f5bac52/169932497/63f5bac5241f53e5a9200eb078eb7989_max_476x317.jpeg",
- "url": "property-photo/63f5bac52/169932497/63f5bac5241f53e5a9200eb078eb7989.jpeg",
- "caption": "Avenue-67.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/62dfb0c13/169932497/62dfb0c135cdb39367847875e0abf571_max_476x317.jpeg",
- "url": "property-photo/62dfb0c13/169932497/62dfb0c135cdb39367847875e0abf571.jpeg",
- "caption": "Avenue-68.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f48bf139f/169932497/f48bf139f5c2bb4371dfeea0f324dc92_max_476x317.jpeg",
- "url": "property-photo/f48bf139f/169932497/f48bf139f5c2bb4371dfeea0f324dc92.jpeg",
- "caption": "Avenue-69.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/12e2e3638/169932497/12e2e3638e44be093aba26ea1445bca3_max_476x317.jpeg",
- "url": "property-photo/12e2e3638/169932497/12e2e3638e44be093aba26ea1445bca3.jpeg",
- "caption": "Avenue-70.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/120dfae09/169932497/120dfae09e07eb740824a07960607c69_max_476x317.jpeg",
- "url": "property-photo/120dfae09/169932497/120dfae09e07eb740824a07960607c69.jpeg",
- "caption": "Avenue-71.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/149cd40a6/169932497/149cd40a654fa8ea80c6cd1c5eb2ef26_max_476x317.jpeg",
- "url": "property-photo/149cd40a6/169932497/149cd40a654fa8ea80c6cd1c5eb2ef26.jpeg",
- "caption": "Avenue-72.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c2aba3250/169932497/c2aba325088f36268b17a7ee84dbd915_max_476x317.jpeg",
- "url": "property-photo/c2aba3250/169932497/c2aba325088f36268b17a7ee84dbd915.jpeg",
- "caption": "Avenue-73.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/530de612b/169932497/530de612b82b23cb6fa3ffc8944ac778_max_476x317.jpeg",
- "url": "property-photo/530de612b/169932497/530de612b82b23cb6fa3ffc8944ac778.jpeg",
- "caption": "Avenue-74.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3e7ab5a0d/169932497/3e7ab5a0dee3f245baa561d5904a3f5b_max_476x317.jpeg",
- "url": "property-photo/3e7ab5a0d/169932497/3e7ab5a0dee3f245baa561d5904a3f5b.jpeg",
- "caption": "Avenue-75.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f36e45ed3/169932497/f36e45ed3c39f0045dfbb05d6d142667_max_476x317.jpeg",
- "url": "property-photo/f36e45ed3/169932497/f36e45ed3c39f0045dfbb05d6d142667.jpeg",
- "caption": "Avenue-76.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/eb2b66754/169932497/eb2b66754f3711a87767516f1a6e5876_max_476x317.jpeg",
- "url": "property-photo/eb2b66754/169932497/eb2b66754f3711a87767516f1a6e5876.jpeg",
- "caption": "Avenue-77.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6cac937e1/169932497/6cac937e193854b3e271d8f6a8b7171e_max_476x317.jpeg",
- "url": "property-photo/6cac937e1/169932497/6cac937e193854b3e271d8f6a8b7171e.jpeg",
- "caption": "Avenue-78.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b637acb75/169932497/b637acb754d232518160871b412dbf4a_max_476x317.jpeg",
- "url": "property-photo/b637acb75/169932497/b637acb754d232518160871b412dbf4a.jpeg",
- "caption": "Avenue-79.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/53aebf358/169932497/53aebf358d622ea8f8be0a70ce08942f_max_476x317.jpeg",
- "url": "property-photo/53aebf358/169932497/53aebf358d622ea8f8be0a70ce08942f.jpeg",
- "caption": "avenue-82.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8d2bd8825/169932497/8d2bd8825ac0b4fce634293538f3c358_max_476x317.jpeg",
- "url": "property-photo/8d2bd8825/169932497/8d2bd8825ac0b4fce634293538f3c358.jpeg",
- "caption": "avenue-84.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/151498739/169932497/151498739a8062e8ec2dc33e8782b8cb_max_476x317.jpeg",
- "url": "property-photo/151498739/169932497/151498739a8062e8ec2dc33e8782b8cb.jpeg",
- "caption": "avenue-85.1.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/52b307ab7/169932497/52b307ab7b219b511f6c9f7de6fd4810_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/52b307ab7/169932497/52b307ab7b219b511f6c9f7de6fd4810_max_296x197.jpeg"
- },
- "formattedBranchName": " by Durden & Hunt, Wanstead & East London",
- "addedOrReduced": "Added on 02/12/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "7 bedroom detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 162119180,
- "bedrooms": 16,
- "bathrooms": 8,
- "numberOfImages": 2,
- "numberOfFloorplans": 0,
- "numberOfVirtualTours": 0,
- "summary": "*INCREDIBLE INVESTMENT OPPORTUNITY* Exclusive to Charleson´s Estate Agent a rare opportunity to acquire 8x two-bedroom apartments plus the freehold in the highly sought after location of Leytonstone. The combined annual return works out at over 5% currently but this can be increased. The pro...",
- "displayAddress": "Harrow Road, Leytonstone",
- "countryCode": "GB",
- "location": { "latitude": 51.55948, "longitude": 0.01285 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/257a894c6/162119180/257a894c6106e124b286c26d7bb1137a_max_476x317.jpeg",
- "url": "property-photo/257a894c6/162119180/257a894c6106e124b286c26d7bb1137a.jpeg",
- "caption": "Regency Court - F..."
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2bc59e62b/162119180/2bc59e62b01b15ee0cb7d62682ecc64f_max_476x317.jpeg",
- "url": "property-photo/2bc59e62b/162119180/2bc59e62b01b15ee0cb7d62682ecc64f.jpeg",
- "caption": "Regency Court - F..."
- }
- ],
- "propertySubType": "Land",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-05-19T12:26:34Z"
- },
- "price": {
- "amount": 2500000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£2,500,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 40074,
- "brandPlusLogoURI": "/41k/40074/branch_rmchoice_logo_40074_0001.jpeg",
- "contactTelephone": "020 3909 4057",
- "branchDisplayName": "Charlesons, Gants Hill",
- "branchName": "Gants Hill",
- "brandTradingName": "Charlesons",
- "branchLandingPageUrl": "/estate-agents/agent/Charlesons/Gants-Hill-40074.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-05-29T09:03:07Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/41k/40074/branch_rmchoice_logo_40074_0001.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": true,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/162119180#/?channel=COM_BUY",
- "contactUrl": "/commercial-property-for-sale/contactBranch.html?propertyId=162119180",
- "staticMapUrl": null,
- "channel": "COMMERCIAL_BUY",
- "firstVisibleDate": "2025-05-19T12:21:19Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2025-08-30T10:34:04Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Freehold",
- "htmlDescription": "Freehold "
- },
- {
- "order": 2,
- "description": "Fully let",
- "htmlDescription": "Fully let"
- },
- {
- "order": 3,
- "description": "Close to local amanaties",
- "htmlDescription": "Close to local amanaties"
- },
- {
- "order": 4,
- "description": "Close to transport links",
- "htmlDescription": "Close to transport links"
- },
- {
- "order": 5,
- "description": "Potential to develop further (STNPC)",
- "htmlDescription": "Potential to develop further (STNPC)"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/257a894c6/162119180/257a894c6106e124b286c26d7bb1137a_max_476x317.jpeg",
- "url": "property-photo/257a894c6/162119180/257a894c6106e124b286c26d7bb1137a.jpeg",
- "caption": "Regency Court - F..."
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2bc59e62b/162119180/2bc59e62b01b15ee0cb7d62682ecc64f_max_476x317.jpeg",
- "url": "property-photo/2bc59e62b/162119180/2bc59e62b01b15ee0cb7d62682ecc64f.jpeg",
- "caption": "Regency Court - F..."
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/257a894c6/162119180/257a894c6106e124b286c26d7bb1137a_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/257a894c6/162119180/257a894c6106e124b286c26d7bb1137a_max_296x197.jpeg"
- },
- "formattedBranchName": "Marketed by Charlesons, Gants Hill",
- "addedOrReduced": "",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "Land for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 167051186,
- "bedrooms": 16,
- "bathrooms": 8,
- "numberOfImages": 4,
- "numberOfFloorplans": 0,
- "numberOfVirtualTours": 0,
- "summary": "INVESTMENT OPPURTUNITY - investment opportunity of eight apartments in Regency Court, London, E11. These luxurious apartments are a prime investment opportunity to add to your current portfolio - SOUGHT AFTER LOCATION - boasting a chain-free status, it presents an enticing prospect for investors.",
- "displayAddress": "Regency Court, Harrow Road, London, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.5594, "longitude": 0.012429 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc64e0dd3/167051186/bc64e0dd31ffa071d51dde6dc34bdca1_max_476x317.jpeg",
- "url": "property-photo/bc64e0dd3/167051186/bc64e0dd31ffa071d51dde6dc34bdca1.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f9b3f3925/167051186/f9b3f3925fcd8f822e05673de420f8e7_max_476x317.jpeg",
- "url": "property-photo/f9b3f3925/167051186/f9b3f3925fcd8f822e05673de420f8e7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cae1f964f/167051186/cae1f964f59a897e83b1e306d69248eb_max_476x317.jpeg",
- "url": "property-photo/cae1f964f/167051186/cae1f964f59a897e83b1e306d69248eb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f3ebbc24/167051186/6f3ebbc245f80b67533cec0e9d49b765_max_476x317.jpeg",
- "url": "property-photo/6f3ebbc24/167051186/6f3ebbc245f80b67533cec0e9d49b765.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Block of Apartments",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": "2025-09-16T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-09-16T14:01:02Z"
- },
- "price": {
- "amount": 2500000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£2,500,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 93287,
- "brandPlusLogoURI": "/company/clogo_8522_0005.jpeg",
- "contactTelephone": "020 8554 5544",
- "branchDisplayName": "Woodland, Ilford",
- "branchName": "Ilford",
- "brandTradingName": "Woodland",
- "branchLandingPageUrl": "/estate-agents/agent/Woodland/Ilford-93287.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-10-28T10:22:10Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_8522_0005.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/167051186#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=167051186",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-09-16T13:55:11Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-01-14T13:15:14Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Shops and amenities nearby",
- "htmlDescription": "Shops and amenities nearby"
- },
- {
- "order": 2,
- "description": "Close to public transport",
- "htmlDescription": "Close to public transport"
- },
- {
- "order": 3,
- "description": "Good Investment",
- "htmlDescription": "Good Investment"
- },
- {
- "order": 4,
- "description": "Chain free",
- "htmlDescription": "Chain free"
- },
- {
- "order": 5,
- "description": "Communal Garden",
- "htmlDescription": "Communal Garden"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc64e0dd3/167051186/bc64e0dd31ffa071d51dde6dc34bdca1_max_476x317.jpeg",
- "url": "property-photo/bc64e0dd3/167051186/bc64e0dd31ffa071d51dde6dc34bdca1.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f9b3f3925/167051186/f9b3f3925fcd8f822e05673de420f8e7_max_476x317.jpeg",
- "url": "property-photo/f9b3f3925/167051186/f9b3f3925fcd8f822e05673de420f8e7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cae1f964f/167051186/cae1f964f59a897e83b1e306d69248eb_max_476x317.jpeg",
- "url": "property-photo/cae1f964f/167051186/cae1f964f59a897e83b1e306d69248eb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f3ebbc24/167051186/6f3ebbc245f80b67533cec0e9d49b765_max_476x317.jpeg",
- "url": "property-photo/6f3ebbc24/167051186/6f3ebbc245f80b67533cec0e9d49b765.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc64e0dd3/167051186/bc64e0dd31ffa071d51dde6dc34bdca1_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc64e0dd3/167051186/bc64e0dd31ffa071d51dde6dc34bdca1_max_296x197.jpeg"
- },
- "formattedBranchName": " by Woodland, Ilford",
- "addedOrReduced": "Added on 16/09/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "16 bedroom block of apartments for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 167048381,
- "bedrooms": 5,
- "bathrooms": 4,
- "numberOfImages": 46,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Chain Free - Exceptional Detached Home - Prime Location - Excellent Transport Links - Carriage Driveway And Double Garage - South Facing Landscaped Garden - Approved Planning Permission (REF:1300/24) - Multiple Reception Rooms - Open Plan Kitchen Diner - Home Office And Guest WC - Five Bedrooms, ...",
- "displayAddress": "The Avenue, Wanstead, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.578968, "longitude": 0.032914 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0371d5664/167048381/0371d5664d3ae745a9bef4a513bdd379_max_476x317.jpeg",
- "url": "property-photo/0371d5664/167048381/0371d5664d3ae745a9bef4a513bdd379.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/05cb1d6d5/167048381/05cb1d6d5d75e4a30848fc34fe8f5d5d_max_476x317.jpeg",
- "url": "property-photo/05cb1d6d5/167048381/05cb1d6d5d75e4a30848fc34fe8f5d5d.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dcaf3c425/167048381/dcaf3c425eec86e277318f871759dcb5_max_476x317.jpeg",
- "url": "property-photo/dcaf3c425/167048381/dcaf3c425eec86e277318f871759dcb5.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c6a44f76/167048381/6c6a44f7669edad40e8ff8f6ba430fd2_max_476x317.jpeg",
- "url": "property-photo/6c6a44f76/167048381/6c6a44f7669edad40e8ff8f6ba430fd2.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63542b31c/167048381/63542b31c43daf5adf362335d303bcf9_max_476x317.jpeg",
- "url": "property-photo/63542b31c/167048381/63542b31c43daf5adf362335d303bcf9.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/02e3fc863/167048381/02e3fc8631521640ae33625b313baad3_max_476x317.jpeg",
- "url": "property-photo/02e3fc863/167048381/02e3fc8631521640ae33625b313baad3.jpeg",
- "caption": "366the.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d6de085d4/167048381/d6de085d4d485fc0b5cafc8ca6bf24d8_max_476x317.jpeg",
- "url": "property-photo/d6de085d4/167048381/d6de085d4d485fc0b5cafc8ca6bf24d8.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b079ba88/167048381/5b079ba88daab07e75824bf21a89210b_max_476x317.jpeg",
- "url": "property-photo/5b079ba88/167048381/5b079ba88daab07e75824bf21a89210b.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/384b6aa89/167048381/384b6aa895d7625ab10957d0248501fc_max_476x317.jpeg",
- "url": "property-photo/384b6aa89/167048381/384b6aa895d7625ab10957d0248501fc.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6a1c2d15d/167048381/6a1c2d15d99b7ede171f2e389610b73c_max_476x317.jpeg",
- "url": "property-photo/6a1c2d15d/167048381/6a1c2d15d99b7ede171f2e389610b73c.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91eb91994/167048381/91eb919942454a84ff01db3366956c5b_max_476x317.jpeg",
- "url": "property-photo/91eb91994/167048381/91eb919942454a84ff01db3366956c5b.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/29625a456/167048381/29625a45692763a5f1b49506ee4c8dac_max_476x317.jpeg",
- "url": "property-photo/29625a456/167048381/29625a45692763a5f1b49506ee4c8dac.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1d2daf274/167048381/1d2daf274658c924fc8d30764f713360_max_476x317.jpeg",
- "url": "property-photo/1d2daf274/167048381/1d2daf274658c924fc8d30764f713360.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cc436ad78/167048381/cc436ad789dce9743081bbec771acaec_max_476x317.jpeg",
- "url": "property-photo/cc436ad78/167048381/cc436ad789dce9743081bbec771acaec.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6337ff7f4/167048381/6337ff7f4a166ab9e3c1680d8e16d47c_max_476x317.jpeg",
- "url": "property-photo/6337ff7f4/167048381/6337ff7f4a166ab9e3c1680d8e16d47c.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/401dce4db/167048381/401dce4db15351100a46534877462a8f_max_476x317.jpeg",
- "url": "property-photo/401dce4db/167048381/401dce4db15351100a46534877462a8f.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/748ebd304/167048381/748ebd304c08601aeb4ac4481ef4810f_max_476x317.jpeg",
- "url": "property-photo/748ebd304/167048381/748ebd304c08601aeb4ac4481ef4810f.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bbdbbca72/167048381/bbdbbca726867f675cf732da8328b8e3_max_476x317.jpeg",
- "url": "property-photo/bbdbbca72/167048381/bbdbbca726867f675cf732da8328b8e3.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d242ec3f1/167048381/d242ec3f1df3da47a3fc6f1ed9ecad49_max_476x317.jpeg",
- "url": "property-photo/d242ec3f1/167048381/d242ec3f1df3da47a3fc6f1ed9ecad49.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9dc190de7/167048381/9dc190de76aa5774f2e1519363cd898c_max_476x317.jpeg",
- "url": "property-photo/9dc190de7/167048381/9dc190de76aa5774f2e1519363cd898c.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c966857b9/167048381/c966857b902303d41c8114b82ea5c6c1_max_476x317.jpeg",
- "url": "property-photo/c966857b9/167048381/c966857b902303d41c8114b82ea5c6c1.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/36655747e/167048381/36655747e38d8e752ba8adb45bbea03f_max_476x317.jpeg",
- "url": "property-photo/36655747e/167048381/36655747e38d8e752ba8adb45bbea03f.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/874326dfe/167048381/874326dfe53b1d4f0d723d6278906cc8_max_476x317.jpeg",
- "url": "property-photo/874326dfe/167048381/874326dfe53b1d4f0d723d6278906cc8.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8198d7352/167048381/8198d7352d863846a1de7a559a99ef2d_max_476x317.jpeg",
- "url": "property-photo/8198d7352/167048381/8198d7352d863846a1de7a559a99ef2d.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3666e96c6/167048381/3666e96c62bad4fe4caa5f382c17567f_max_476x317.jpeg",
- "url": "property-photo/3666e96c6/167048381/3666e96c62bad4fe4caa5f382c17567f.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/385c5e7e0/167048381/385c5e7e0eca965a3ebdf684c6e7cb55_max_476x317.jpeg",
- "url": "property-photo/385c5e7e0/167048381/385c5e7e0eca965a3ebdf684c6e7cb55.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/79fccb050/167048381/79fccb050999ab08013c56c1f99acf1e_max_476x317.jpeg",
- "url": "property-photo/79fccb050/167048381/79fccb050999ab08013c56c1f99acf1e.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/867e3b197/167048381/867e3b1970ebfe6ca49d9baa77834a07_max_476x317.jpeg",
- "url": "property-photo/867e3b197/167048381/867e3b1970ebfe6ca49d9baa77834a07.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e1c6962c0/167048381/e1c6962c0d60b2b8e9e68380e56d859c_max_476x317.jpeg",
- "url": "property-photo/e1c6962c0/167048381/e1c6962c0d60b2b8e9e68380e56d859c.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4f0367ed0/167048381/4f0367ed017da1f85f01ad442215e78e_max_476x317.jpeg",
- "url": "property-photo/4f0367ed0/167048381/4f0367ed017da1f85f01ad442215e78e.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/82491bca2/167048381/82491bca24afbe1754976759aa6ddd58_max_476x317.jpeg",
- "url": "property-photo/82491bca2/167048381/82491bca24afbe1754976759aa6ddd58.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b67074092/167048381/b67074092b076c646a72a46c285141b1_max_476x317.jpeg",
- "url": "property-photo/b67074092/167048381/b67074092b076c646a72a46c285141b1.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/108120673/167048381/1081206733b7eeb272548ee35cfbfae1_max_476x317.jpeg",
- "url": "property-photo/108120673/167048381/1081206733b7eeb272548ee35cfbfae1.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a6cb6662/167048381/1a6cb66625fc39e40e48c0ac56881129_max_476x317.jpeg",
- "url": "property-photo/1a6cb6662/167048381/1a6cb66625fc39e40e48c0ac56881129.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/841a1cdce/167048381/841a1cdce7cdf562deb60dca88aa8a60_max_476x317.jpeg",
- "url": "property-photo/841a1cdce/167048381/841a1cdce7cdf562deb60dca88aa8a60.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2a88cef83/167048381/2a88cef835fd34f84856c5038d933f5a_max_476x317.jpeg",
- "url": "property-photo/2a88cef83/167048381/2a88cef835fd34f84856c5038d933f5a.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0a95a28d2/167048381/0a95a28d20841905e589b0c07470efee_max_476x317.jpeg",
- "url": "property-photo/0a95a28d2/167048381/0a95a28d20841905e589b0c07470efee.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/00d9f8056/167048381/00d9f805603d3284dee94e9b06637b2d_max_476x317.jpeg",
- "url": "property-photo/00d9f8056/167048381/00d9f805603d3284dee94e9b06637b2d.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ee509d03/167048381/9ee509d03ec500cab160fbce9dbc1923_max_476x317.jpeg",
- "url": "property-photo/9ee509d03/167048381/9ee509d03ec500cab160fbce9dbc1923.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bcc8a5a66/167048381/bcc8a5a665931e1f43b53008e6eca6de_max_476x317.jpeg",
- "url": "property-photo/bcc8a5a66/167048381/bcc8a5a665931e1f43b53008e6eca6de.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f8445266e/167048381/f8445266ecf8088a4a5fdc1e84771ab9_max_476x317.jpeg",
- "url": "property-photo/f8445266e/167048381/f8445266ecf8088a4a5fdc1e84771ab9.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/876179013/167048381/8761790132bbc46fc8af7fd045e90677_max_476x317.jpeg",
- "url": "property-photo/876179013/167048381/8761790132bbc46fc8af7fd045e90677.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e351b9918/167048381/e351b9918dc131bccf894cc4a5662d99_max_476x317.jpeg",
- "url": "property-photo/e351b9918/167048381/e351b9918dc131bccf894cc4a5662d99.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ec8147eb4/167048381/ec8147eb44807d09be9cecb925ecdb81_max_476x317.jpeg",
- "url": "property-photo/ec8147eb4/167048381/ec8147eb44807d09be9cecb925ecdb81.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/52b0dbaa2/167048381/52b0dbaa2e9dd07c2f4f98e90e9921c7_max_476x317.jpeg",
- "url": "property-photo/52b0dbaa2/167048381/52b0dbaa2e9dd07c2f4f98e90e9921c7.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/331c05dc1/167048381/331c05dc116719056292e31f90e3bdc0_max_476x317.jpeg",
- "url": "property-photo/331c05dc1/167048381/331c05dc116719056292e31f90e3bdc0.jpeg",
- "caption": "The Avenue"
- }
- ],
- "propertySubType": "Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-09-16T13:17:05Z"
- },
- "price": {
- "amount": 2400000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,400,000",
- "displayPriceQualifier": "Offers in Excess of"
- }
- ]
- },
- "premiumListing": true,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 273152,
- "brandPlusLogoURI": "/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "contactTelephone": "020 8138 0636",
- "branchDisplayName": "Durden & Hunt, Wanstead & East London",
- "branchName": "Wanstead & East London",
- "brandTradingName": "Durden & Hunt",
- "branchLandingPageUrl": "/estate-agents/agent/Durden-and-Hunt/Wanstead-and-East-London-273152.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-01T10:42:02Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "primaryBrandColour": "#000000"
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": {
- "productLabelText": "Planning Permission Granted",
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "3,193 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/167048381#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=167048381",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-09-16T13:12:02Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2025-09-30T17:56:44Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Chain Free",
- "htmlDescription": "Chain Free"
- },
- {
- "order": 2,
- "description": "Exceptional Detached Home In A Prime Location",
- "htmlDescription": "Exceptional Detached Home In A Prime Location"
- },
- {
- "order": 3,
- "description": "Excellent Transport Links",
- "htmlDescription": "Excellent Transport Links"
- },
- {
- "order": 4,
- "description": "Carriage Driveway And Double Garage",
- "htmlDescription": "Carriage Driveway And Double Garage"
- },
- {
- "order": 5,
- "description": "South Facing Landscaped Garden",
- "htmlDescription": "South Facing Landscaped Garden"
- },
- {
- "order": 6,
- "description": "Approved Planning Permission (REF:1300/24)",
- "htmlDescription": "Approved Planning Permission (REF:1300/24)"
- },
- {
- "order": 7,
- "description": "Multiple Reception Rooms",
- "htmlDescription": "Multiple Reception Rooms"
- },
- {
- "order": 8,
- "description": "Open Plan Kitchen Diner",
- "htmlDescription": "Open Plan Kitchen Diner"
- },
- {
- "order": 9,
- "description": "Home Office And Guest WC",
- "htmlDescription": "Home Office And Guest WC"
- },
- {
- "order": 10,
- "description": "Five Bedrooms, Three With En Suites",
- "htmlDescription": "Five Bedrooms, Three With En Suites"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0371d5664/167048381/0371d5664d3ae745a9bef4a513bdd379_max_476x317.jpeg",
- "url": "property-photo/0371d5664/167048381/0371d5664d3ae745a9bef4a513bdd379.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/05cb1d6d5/167048381/05cb1d6d5d75e4a30848fc34fe8f5d5d_max_476x317.jpeg",
- "url": "property-photo/05cb1d6d5/167048381/05cb1d6d5d75e4a30848fc34fe8f5d5d.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dcaf3c425/167048381/dcaf3c425eec86e277318f871759dcb5_max_476x317.jpeg",
- "url": "property-photo/dcaf3c425/167048381/dcaf3c425eec86e277318f871759dcb5.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c6a44f76/167048381/6c6a44f7669edad40e8ff8f6ba430fd2_max_476x317.jpeg",
- "url": "property-photo/6c6a44f76/167048381/6c6a44f7669edad40e8ff8f6ba430fd2.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63542b31c/167048381/63542b31c43daf5adf362335d303bcf9_max_476x317.jpeg",
- "url": "property-photo/63542b31c/167048381/63542b31c43daf5adf362335d303bcf9.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/02e3fc863/167048381/02e3fc8631521640ae33625b313baad3_max_476x317.jpeg",
- "url": "property-photo/02e3fc863/167048381/02e3fc8631521640ae33625b313baad3.jpeg",
- "caption": "366the.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d6de085d4/167048381/d6de085d4d485fc0b5cafc8ca6bf24d8_max_476x317.jpeg",
- "url": "property-photo/d6de085d4/167048381/d6de085d4d485fc0b5cafc8ca6bf24d8.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b079ba88/167048381/5b079ba88daab07e75824bf21a89210b_max_476x317.jpeg",
- "url": "property-photo/5b079ba88/167048381/5b079ba88daab07e75824bf21a89210b.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/384b6aa89/167048381/384b6aa895d7625ab10957d0248501fc_max_476x317.jpeg",
- "url": "property-photo/384b6aa89/167048381/384b6aa895d7625ab10957d0248501fc.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6a1c2d15d/167048381/6a1c2d15d99b7ede171f2e389610b73c_max_476x317.jpeg",
- "url": "property-photo/6a1c2d15d/167048381/6a1c2d15d99b7ede171f2e389610b73c.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91eb91994/167048381/91eb919942454a84ff01db3366956c5b_max_476x317.jpeg",
- "url": "property-photo/91eb91994/167048381/91eb919942454a84ff01db3366956c5b.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/29625a456/167048381/29625a45692763a5f1b49506ee4c8dac_max_476x317.jpeg",
- "url": "property-photo/29625a456/167048381/29625a45692763a5f1b49506ee4c8dac.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1d2daf274/167048381/1d2daf274658c924fc8d30764f713360_max_476x317.jpeg",
- "url": "property-photo/1d2daf274/167048381/1d2daf274658c924fc8d30764f713360.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cc436ad78/167048381/cc436ad789dce9743081bbec771acaec_max_476x317.jpeg",
- "url": "property-photo/cc436ad78/167048381/cc436ad789dce9743081bbec771acaec.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6337ff7f4/167048381/6337ff7f4a166ab9e3c1680d8e16d47c_max_476x317.jpeg",
- "url": "property-photo/6337ff7f4/167048381/6337ff7f4a166ab9e3c1680d8e16d47c.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/401dce4db/167048381/401dce4db15351100a46534877462a8f_max_476x317.jpeg",
- "url": "property-photo/401dce4db/167048381/401dce4db15351100a46534877462a8f.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/748ebd304/167048381/748ebd304c08601aeb4ac4481ef4810f_max_476x317.jpeg",
- "url": "property-photo/748ebd304/167048381/748ebd304c08601aeb4ac4481ef4810f.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bbdbbca72/167048381/bbdbbca726867f675cf732da8328b8e3_max_476x317.jpeg",
- "url": "property-photo/bbdbbca72/167048381/bbdbbca726867f675cf732da8328b8e3.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d242ec3f1/167048381/d242ec3f1df3da47a3fc6f1ed9ecad49_max_476x317.jpeg",
- "url": "property-photo/d242ec3f1/167048381/d242ec3f1df3da47a3fc6f1ed9ecad49.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9dc190de7/167048381/9dc190de76aa5774f2e1519363cd898c_max_476x317.jpeg",
- "url": "property-photo/9dc190de7/167048381/9dc190de76aa5774f2e1519363cd898c.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c966857b9/167048381/c966857b902303d41c8114b82ea5c6c1_max_476x317.jpeg",
- "url": "property-photo/c966857b9/167048381/c966857b902303d41c8114b82ea5c6c1.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/36655747e/167048381/36655747e38d8e752ba8adb45bbea03f_max_476x317.jpeg",
- "url": "property-photo/36655747e/167048381/36655747e38d8e752ba8adb45bbea03f.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/874326dfe/167048381/874326dfe53b1d4f0d723d6278906cc8_max_476x317.jpeg",
- "url": "property-photo/874326dfe/167048381/874326dfe53b1d4f0d723d6278906cc8.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8198d7352/167048381/8198d7352d863846a1de7a559a99ef2d_max_476x317.jpeg",
- "url": "property-photo/8198d7352/167048381/8198d7352d863846a1de7a559a99ef2d.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3666e96c6/167048381/3666e96c62bad4fe4caa5f382c17567f_max_476x317.jpeg",
- "url": "property-photo/3666e96c6/167048381/3666e96c62bad4fe4caa5f382c17567f.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/385c5e7e0/167048381/385c5e7e0eca965a3ebdf684c6e7cb55_max_476x317.jpeg",
- "url": "property-photo/385c5e7e0/167048381/385c5e7e0eca965a3ebdf684c6e7cb55.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/79fccb050/167048381/79fccb050999ab08013c56c1f99acf1e_max_476x317.jpeg",
- "url": "property-photo/79fccb050/167048381/79fccb050999ab08013c56c1f99acf1e.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/867e3b197/167048381/867e3b1970ebfe6ca49d9baa77834a07_max_476x317.jpeg",
- "url": "property-photo/867e3b197/167048381/867e3b1970ebfe6ca49d9baa77834a07.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e1c6962c0/167048381/e1c6962c0d60b2b8e9e68380e56d859c_max_476x317.jpeg",
- "url": "property-photo/e1c6962c0/167048381/e1c6962c0d60b2b8e9e68380e56d859c.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4f0367ed0/167048381/4f0367ed017da1f85f01ad442215e78e_max_476x317.jpeg",
- "url": "property-photo/4f0367ed0/167048381/4f0367ed017da1f85f01ad442215e78e.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/82491bca2/167048381/82491bca24afbe1754976759aa6ddd58_max_476x317.jpeg",
- "url": "property-photo/82491bca2/167048381/82491bca24afbe1754976759aa6ddd58.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b67074092/167048381/b67074092b076c646a72a46c285141b1_max_476x317.jpeg",
- "url": "property-photo/b67074092/167048381/b67074092b076c646a72a46c285141b1.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/108120673/167048381/1081206733b7eeb272548ee35cfbfae1_max_476x317.jpeg",
- "url": "property-photo/108120673/167048381/1081206733b7eeb272548ee35cfbfae1.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a6cb6662/167048381/1a6cb66625fc39e40e48c0ac56881129_max_476x317.jpeg",
- "url": "property-photo/1a6cb6662/167048381/1a6cb66625fc39e40e48c0ac56881129.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/841a1cdce/167048381/841a1cdce7cdf562deb60dca88aa8a60_max_476x317.jpeg",
- "url": "property-photo/841a1cdce/167048381/841a1cdce7cdf562deb60dca88aa8a60.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2a88cef83/167048381/2a88cef835fd34f84856c5038d933f5a_max_476x317.jpeg",
- "url": "property-photo/2a88cef83/167048381/2a88cef835fd34f84856c5038d933f5a.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0a95a28d2/167048381/0a95a28d20841905e589b0c07470efee_max_476x317.jpeg",
- "url": "property-photo/0a95a28d2/167048381/0a95a28d20841905e589b0c07470efee.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/00d9f8056/167048381/00d9f805603d3284dee94e9b06637b2d_max_476x317.jpeg",
- "url": "property-photo/00d9f8056/167048381/00d9f805603d3284dee94e9b06637b2d.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ee509d03/167048381/9ee509d03ec500cab160fbce9dbc1923_max_476x317.jpeg",
- "url": "property-photo/9ee509d03/167048381/9ee509d03ec500cab160fbce9dbc1923.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bcc8a5a66/167048381/bcc8a5a665931e1f43b53008e6eca6de_max_476x317.jpeg",
- "url": "property-photo/bcc8a5a66/167048381/bcc8a5a665931e1f43b53008e6eca6de.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f8445266e/167048381/f8445266ecf8088a4a5fdc1e84771ab9_max_476x317.jpeg",
- "url": "property-photo/f8445266e/167048381/f8445266ecf8088a4a5fdc1e84771ab9.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/876179013/167048381/8761790132bbc46fc8af7fd045e90677_max_476x317.jpeg",
- "url": "property-photo/876179013/167048381/8761790132bbc46fc8af7fd045e90677.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e351b9918/167048381/e351b9918dc131bccf894cc4a5662d99_max_476x317.jpeg",
- "url": "property-photo/e351b9918/167048381/e351b9918dc131bccf894cc4a5662d99.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ec8147eb4/167048381/ec8147eb44807d09be9cecb925ecdb81_max_476x317.jpeg",
- "url": "property-photo/ec8147eb4/167048381/ec8147eb44807d09be9cecb925ecdb81.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/52b0dbaa2/167048381/52b0dbaa2e9dd07c2f4f98e90e9921c7_max_476x317.jpeg",
- "url": "property-photo/52b0dbaa2/167048381/52b0dbaa2e9dd07c2f4f98e90e9921c7.jpeg",
- "caption": "The Avenue"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/331c05dc1/167048381/331c05dc116719056292e31f90e3bdc0_max_476x317.jpeg",
- "url": "property-photo/331c05dc1/167048381/331c05dc116719056292e31f90e3bdc0.jpeg",
- "caption": "The Avenue"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0371d5664/167048381/0371d5664d3ae745a9bef4a513bdd379_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0371d5664/167048381/0371d5664d3ae745a9bef4a513bdd379_max_296x197.jpeg"
- },
- "formattedBranchName": " by Durden & Hunt, Wanstead & East London",
- "addedOrReduced": "Added on 16/09/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "5 bedroom detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 166269284,
- "bedrooms": 5,
- "bathrooms": 3,
- "numberOfImages": 42,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "We are pleased to present arguably one of Wanstead's most highly sought-after roads The Avenue. This exceptional home offers the perfect combination of convenience, privacy, and expansive surroundings. Positioned just moments away from Wanstead's vibrant High Street, yet encompassed by a wide roa...",
- "displayAddress": "The Avenue, Wanstead, London, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.577853, "longitude": 0.029853 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0ff25b09/166269284/d0ff25b09644610328555cce50b749e5_max_476x317.jpeg",
- "url": "property-photo/d0ff25b09/166269284/d0ff25b09644610328555cce50b749e5.jpeg",
- "caption": "Picture No. 47"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3316e3dfd/166269284/3316e3dfdf3b11ce86c004d3c3ec1b30_max_476x317.jpeg",
- "url": "property-photo/3316e3dfd/166269284/3316e3dfdf3b11ce86c004d3c3ec1b30.jpeg",
- "caption": "Picture No. 60"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/06500b1c8/166269284/06500b1c8b9dbe64885edeb46367cc0e_max_476x317.jpeg",
- "url": "property-photo/06500b1c8/166269284/06500b1c8b9dbe64885edeb46367cc0e.jpeg",
- "caption": "Picture No. 58"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e57808b9b/166269284/e57808b9b54265fb61de7ea3a55b3a4f_max_476x317.jpeg",
- "url": "property-photo/e57808b9b/166269284/e57808b9b54265fb61de7ea3a55b3a4f.jpeg",
- "caption": "Picture No. 49"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/75bc0c051/166269284/75bc0c051dbaf560705272306a485bc0_max_476x317.jpeg",
- "url": "property-photo/75bc0c051/166269284/75bc0c051dbaf560705272306a485bc0.jpeg",
- "caption": "Picture No. 50"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7aba7ec0e/166269284/7aba7ec0e93556e61d9bb13bf6dec172_max_476x317.jpeg",
- "url": "property-photo/7aba7ec0e/166269284/7aba7ec0e93556e61d9bb13bf6dec172.jpeg",
- "caption": "Picture No. 51"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e813e3be6/166269284/e813e3be6d9150f9175a682a09cfeeff_max_476x317.jpeg",
- "url": "property-photo/e813e3be6/166269284/e813e3be6d9150f9175a682a09cfeeff.jpeg",
- "caption": "Picture No. 54"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3c0b79a46/166269284/3c0b79a465083b3521aab6178e11eacb_max_476x317.jpeg",
- "url": "property-photo/3c0b79a46/166269284/3c0b79a465083b3521aab6178e11eacb.jpeg",
- "caption": "Picture No. 64"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dd881e8a4/166269284/dd881e8a473b82b07faf53707ad78ead_max_476x317.jpeg",
- "url": "property-photo/dd881e8a4/166269284/dd881e8a473b82b07faf53707ad78ead.jpeg",
- "caption": "Picture No. 62"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/674194ca0/166269284/674194ca09186a5d5e786a31a0bb5be8_max_476x317.jpeg",
- "url": "property-photo/674194ca0/166269284/674194ca09186a5d5e786a31a0bb5be8.jpeg",
- "caption": "Picture No. 63"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ef10c5892/166269284/ef10c5892b04fc63c4983c84b1d498d2_max_476x317.jpeg",
- "url": "property-photo/ef10c5892/166269284/ef10c5892b04fc63c4983c84b1d498d2.jpeg",
- "caption": "Picture No. 65"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/32b083749/166269284/32b08374907da666947f6b0edad63cfb_max_476x317.jpeg",
- "url": "property-photo/32b083749/166269284/32b08374907da666947f6b0edad63cfb.jpeg",
- "caption": "Picture No. 59"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b5b31443a/166269284/b5b31443a63fdc3f1c6b39f57362eb2f_max_476x317.jpeg",
- "url": "property-photo/b5b31443a/166269284/b5b31443a63fdc3f1c6b39f57362eb2f.jpeg",
- "caption": "Picture No. 56"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e6c46ccc6/166269284/e6c46ccc6d9eeae69d3a7c84eed00694_max_476x317.jpeg",
- "url": "property-photo/e6c46ccc6/166269284/e6c46ccc6d9eeae69d3a7c84eed00694.jpeg",
- "caption": "Picture No. 57"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e237621fc/166269284/e237621fc7b4d0394a232ebe5fdeb757_max_476x317.jpeg",
- "url": "property-photo/e237621fc/166269284/e237621fc7b4d0394a232ebe5fdeb757.jpeg",
- "caption": "Picture No. 61"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f2ecdfc9c/166269284/f2ecdfc9c0b35f007c0365a6eb96578b_max_476x317.jpeg",
- "url": "property-photo/f2ecdfc9c/166269284/f2ecdfc9c0b35f007c0365a6eb96578b.jpeg",
- "caption": "Picture No. 66"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f0ef1e971/166269284/f0ef1e9715b59ca8dec730b6814327db_max_476x317.jpeg",
- "url": "property-photo/f0ef1e971/166269284/f0ef1e9715b59ca8dec730b6814327db.jpeg",
- "caption": "Picture No. 68"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/81ac9a414/166269284/81ac9a414ae209f3b5d95ff22e6e9200_max_476x317.jpeg",
- "url": "property-photo/81ac9a414/166269284/81ac9a414ae209f3b5d95ff22e6e9200.jpeg",
- "caption": "Picture No. 52"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c18895b9f/166269284/c18895b9f9415263b4a0764a4769596c_max_476x317.jpeg",
- "url": "property-photo/c18895b9f/166269284/c18895b9f9415263b4a0764a4769596c.jpeg",
- "caption": "Picture No. 53"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/38e1401c8/166269284/38e1401c8afd3ef0528aae3014d7bdac_max_476x317.jpeg",
- "url": "property-photo/38e1401c8/166269284/38e1401c8afd3ef0528aae3014d7bdac.jpeg",
- "caption": "Picture No. 55"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2df70869e/166269284/2df70869e028df52dd2b6816b458de0c_max_476x317.jpeg",
- "url": "property-photo/2df70869e/166269284/2df70869e028df52dd2b6816b458de0c.jpeg",
- "caption": "Picture No. 67"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/585c7abd1/166269284/585c7abd17bc18adccd8ecfb8edaf5b1_max_476x317.jpeg",
- "url": "property-photo/585c7abd1/166269284/585c7abd17bc18adccd8ecfb8edaf5b1.jpeg",
- "caption": "Picture No. 70"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a2abf8eb/166269284/1a2abf8eb254a8ef2ce7415da1f67983_max_476x317.jpeg",
- "url": "property-photo/1a2abf8eb/166269284/1a2abf8eb254a8ef2ce7415da1f67983.jpeg",
- "caption": "Picture No. 69"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb0558be0/166269284/cb0558be09f01d82cc7cec595b278226_max_476x317.jpeg",
- "url": "property-photo/cb0558be0/166269284/cb0558be09f01d82cc7cec595b278226.jpeg",
- "caption": "Picture No. 48"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/61490049f/166269284/61490049ffd2ca02f12d47125c2cefb6_max_476x317.jpeg",
- "url": "property-photo/61490049f/166269284/61490049ffd2ca02f12d47125c2cefb6.jpeg",
- "caption": "Picture No. 71"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5f08c87c8/166269284/5f08c87c833cc2f05c8dd0e57df76ff5_max_476x317.jpeg",
- "url": "property-photo/5f08c87c8/166269284/5f08c87c833cc2f05c8dd0e57df76ff5.jpeg",
- "caption": "Picture No. 72"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/15c19ab0c/166269284/15c19ab0c3f8af8da2e5e398d0fa5950_max_476x317.jpeg",
- "url": "property-photo/15c19ab0c/166269284/15c19ab0c3f8af8da2e5e398d0fa5950.jpeg",
- "caption": "Picture No. 77"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0d8f019f/166269284/d0d8f019f3b9867db580bb626414511b_max_476x317.jpeg",
- "url": "property-photo/d0d8f019f/166269284/d0d8f019f3b9867db580bb626414511b.jpeg",
- "caption": "Picture No. 78"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/02042d836/166269284/02042d83618b1e2b77827efabc692da3_max_476x317.jpeg",
- "url": "property-photo/02042d836/166269284/02042d83618b1e2b77827efabc692da3.jpeg",
- "caption": "Picture No. 73"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ee7f91f9f/166269284/ee7f91f9f6ea8c9c61d6213ff96e9631_max_476x317.jpeg",
- "url": "property-photo/ee7f91f9f/166269284/ee7f91f9f6ea8c9c61d6213ff96e9631.jpeg",
- "caption": "Picture No. 74"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c2a21238/166269284/6c2a212382ff4b9c36523e344176a48d_max_476x317.jpeg",
- "url": "property-photo/6c2a21238/166269284/6c2a212382ff4b9c36523e344176a48d.jpeg",
- "caption": "Picture No. 76"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/196c747db/166269284/196c747dbc11175449c1651a9a2d2b25_max_476x317.jpeg",
- "url": "property-photo/196c747db/166269284/196c747dbc11175449c1651a9a2d2b25.jpeg",
- "caption": "Picture No. 84"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ca94acd3/166269284/9ca94acd380b6e468643cba37ed76ee5_max_476x317.jpeg",
- "url": "property-photo/9ca94acd3/166269284/9ca94acd380b6e468643cba37ed76ee5.jpeg",
- "caption": "Picture No. 79"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/20ff1c7b1/166269284/20ff1c7b1304cba83128c0baf6d6ca5a_max_476x317.jpeg",
- "url": "property-photo/20ff1c7b1/166269284/20ff1c7b1304cba83128c0baf6d6ca5a.jpeg",
- "caption": "Picture No. 75"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bbceda5df/166269284/bbceda5df89b22516225059494988365_max_476x317.jpeg",
- "url": "property-photo/bbceda5df/166269284/bbceda5df89b22516225059494988365.jpeg",
- "caption": "Picture No. 80"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9de586bac/166269284/9de586bac0ab064c5b986da79fefff85_max_476x317.jpeg",
- "url": "property-photo/9de586bac/166269284/9de586bac0ab064c5b986da79fefff85.jpeg",
- "caption": "Picture No. 83"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/211a86b14/166269284/211a86b14fb377ccaf03c397e3d0c1df_max_476x317.jpeg",
- "url": "property-photo/211a86b14/166269284/211a86b14fb377ccaf03c397e3d0c1df.jpeg",
- "caption": "Picture No. 81"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e399a7b4f/166269284/e399a7b4f31687400df6078d5cef4845_max_476x317.jpeg",
- "url": "property-photo/e399a7b4f/166269284/e399a7b4f31687400df6078d5cef4845.jpeg",
- "caption": "Picture No. 82"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1bd4d5ddb/166269284/1bd4d5ddb501054ed9ad51e99226f3a5_max_476x317.jpeg",
- "url": "property-photo/1bd4d5ddb/166269284/1bd4d5ddb501054ed9ad51e99226f3a5.jpeg",
- "caption": "Picture No. 85"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/568197e23/166269284/568197e23b2f9a1be4ffca6869627c6e_max_476x317.jpeg",
- "url": "property-photo/568197e23/166269284/568197e23b2f9a1be4ffca6869627c6e.jpeg",
- "caption": "Picture No. 87"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/048bf754e/166269284/048bf754e0d0fde49004a902b8bd497a_max_476x317.jpeg",
- "url": "property-photo/048bf754e/166269284/048bf754e0d0fde49004a902b8bd497a.jpeg",
- "caption": "Picture No. 88"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c8f3f611/166269284/5c8f3f61135d92ef06365644b3ab0ce9_max_476x317.jpeg",
- "url": "property-photo/5c8f3f611/166269284/5c8f3f61135d92ef06365644b3ab0ce9.jpeg",
- "caption": "Picture No. 86"
- }
- ],
- "propertySubType": "Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-08-27T15:12:04Z"
- },
- "price": {
- "amount": 2400000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£2,400,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 266474,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_38020_0002.png",
- "contactTelephone": "020 8106 5748",
- "branchDisplayName": "Madison Fox, Woodford Green",
- "branchName": "Woodford Green",
- "brandTradingName": "Madison Fox",
- "branchLandingPageUrl": "/estate-agents/agent/Madison-Fox/Woodford-Green-266474.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-10-15T12:40:04Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_38020_0002.png",
- "primaryBrandColour": "#27605c"
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "2,778 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/166269284#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=166269284",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-08-27T15:07:01Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2025-11-28T01:18:16Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Beautiful Five bedroom House",
- "htmlDescription": "Beautiful Five bedroom House"
- },
- {
- "order": 2,
- "description": "Detached",
- "htmlDescription": "Detached"
- },
- {
- "order": 3,
- "description": "Carriage drive & Garage",
- "htmlDescription": "Carriage drive & Garage"
- },
- {
- "order": 4,
- "description": "Three bathrooms",
- "htmlDescription": "Three bathrooms"
- },
- {
- "order": 5,
- "description": "Large through lounge/ Diner",
- "htmlDescription": "Large through lounge/ Diner"
- },
- {
- "order": 6,
- "description": "Study/snug room",
- "htmlDescription": "Study/snug room"
- },
- {
- "order": 7,
- "description": "Ground floor cloak room",
- "htmlDescription": "Ground floor cloak room"
- },
- {
- "order": 8,
- "description": "Stunning open plan kitchen diner",
- "htmlDescription": "Stunning open plan kitchen diner"
- },
- {
- "order": 9,
- "description": "Utility room",
- "htmlDescription": "Utility room"
- },
- {
- "order": 10,
- "description": "Beautiful private garden",
- "htmlDescription": "Beautiful private garden"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0ff25b09/166269284/d0ff25b09644610328555cce50b749e5_max_476x317.jpeg",
- "url": "property-photo/d0ff25b09/166269284/d0ff25b09644610328555cce50b749e5.jpeg",
- "caption": "Picture No. 47"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3316e3dfd/166269284/3316e3dfdf3b11ce86c004d3c3ec1b30_max_476x317.jpeg",
- "url": "property-photo/3316e3dfd/166269284/3316e3dfdf3b11ce86c004d3c3ec1b30.jpeg",
- "caption": "Picture No. 60"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/06500b1c8/166269284/06500b1c8b9dbe64885edeb46367cc0e_max_476x317.jpeg",
- "url": "property-photo/06500b1c8/166269284/06500b1c8b9dbe64885edeb46367cc0e.jpeg",
- "caption": "Picture No. 58"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e57808b9b/166269284/e57808b9b54265fb61de7ea3a55b3a4f_max_476x317.jpeg",
- "url": "property-photo/e57808b9b/166269284/e57808b9b54265fb61de7ea3a55b3a4f.jpeg",
- "caption": "Picture No. 49"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/75bc0c051/166269284/75bc0c051dbaf560705272306a485bc0_max_476x317.jpeg",
- "url": "property-photo/75bc0c051/166269284/75bc0c051dbaf560705272306a485bc0.jpeg",
- "caption": "Picture No. 50"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7aba7ec0e/166269284/7aba7ec0e93556e61d9bb13bf6dec172_max_476x317.jpeg",
- "url": "property-photo/7aba7ec0e/166269284/7aba7ec0e93556e61d9bb13bf6dec172.jpeg",
- "caption": "Picture No. 51"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e813e3be6/166269284/e813e3be6d9150f9175a682a09cfeeff_max_476x317.jpeg",
- "url": "property-photo/e813e3be6/166269284/e813e3be6d9150f9175a682a09cfeeff.jpeg",
- "caption": "Picture No. 54"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3c0b79a46/166269284/3c0b79a465083b3521aab6178e11eacb_max_476x317.jpeg",
- "url": "property-photo/3c0b79a46/166269284/3c0b79a465083b3521aab6178e11eacb.jpeg",
- "caption": "Picture No. 64"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dd881e8a4/166269284/dd881e8a473b82b07faf53707ad78ead_max_476x317.jpeg",
- "url": "property-photo/dd881e8a4/166269284/dd881e8a473b82b07faf53707ad78ead.jpeg",
- "caption": "Picture No. 62"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/674194ca0/166269284/674194ca09186a5d5e786a31a0bb5be8_max_476x317.jpeg",
- "url": "property-photo/674194ca0/166269284/674194ca09186a5d5e786a31a0bb5be8.jpeg",
- "caption": "Picture No. 63"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ef10c5892/166269284/ef10c5892b04fc63c4983c84b1d498d2_max_476x317.jpeg",
- "url": "property-photo/ef10c5892/166269284/ef10c5892b04fc63c4983c84b1d498d2.jpeg",
- "caption": "Picture No. 65"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/32b083749/166269284/32b08374907da666947f6b0edad63cfb_max_476x317.jpeg",
- "url": "property-photo/32b083749/166269284/32b08374907da666947f6b0edad63cfb.jpeg",
- "caption": "Picture No. 59"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b5b31443a/166269284/b5b31443a63fdc3f1c6b39f57362eb2f_max_476x317.jpeg",
- "url": "property-photo/b5b31443a/166269284/b5b31443a63fdc3f1c6b39f57362eb2f.jpeg",
- "caption": "Picture No. 56"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e6c46ccc6/166269284/e6c46ccc6d9eeae69d3a7c84eed00694_max_476x317.jpeg",
- "url": "property-photo/e6c46ccc6/166269284/e6c46ccc6d9eeae69d3a7c84eed00694.jpeg",
- "caption": "Picture No. 57"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e237621fc/166269284/e237621fc7b4d0394a232ebe5fdeb757_max_476x317.jpeg",
- "url": "property-photo/e237621fc/166269284/e237621fc7b4d0394a232ebe5fdeb757.jpeg",
- "caption": "Picture No. 61"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f2ecdfc9c/166269284/f2ecdfc9c0b35f007c0365a6eb96578b_max_476x317.jpeg",
- "url": "property-photo/f2ecdfc9c/166269284/f2ecdfc9c0b35f007c0365a6eb96578b.jpeg",
- "caption": "Picture No. 66"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f0ef1e971/166269284/f0ef1e9715b59ca8dec730b6814327db_max_476x317.jpeg",
- "url": "property-photo/f0ef1e971/166269284/f0ef1e9715b59ca8dec730b6814327db.jpeg",
- "caption": "Picture No. 68"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/81ac9a414/166269284/81ac9a414ae209f3b5d95ff22e6e9200_max_476x317.jpeg",
- "url": "property-photo/81ac9a414/166269284/81ac9a414ae209f3b5d95ff22e6e9200.jpeg",
- "caption": "Picture No. 52"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c18895b9f/166269284/c18895b9f9415263b4a0764a4769596c_max_476x317.jpeg",
- "url": "property-photo/c18895b9f/166269284/c18895b9f9415263b4a0764a4769596c.jpeg",
- "caption": "Picture No. 53"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/38e1401c8/166269284/38e1401c8afd3ef0528aae3014d7bdac_max_476x317.jpeg",
- "url": "property-photo/38e1401c8/166269284/38e1401c8afd3ef0528aae3014d7bdac.jpeg",
- "caption": "Picture No. 55"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2df70869e/166269284/2df70869e028df52dd2b6816b458de0c_max_476x317.jpeg",
- "url": "property-photo/2df70869e/166269284/2df70869e028df52dd2b6816b458de0c.jpeg",
- "caption": "Picture No. 67"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/585c7abd1/166269284/585c7abd17bc18adccd8ecfb8edaf5b1_max_476x317.jpeg",
- "url": "property-photo/585c7abd1/166269284/585c7abd17bc18adccd8ecfb8edaf5b1.jpeg",
- "caption": "Picture No. 70"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a2abf8eb/166269284/1a2abf8eb254a8ef2ce7415da1f67983_max_476x317.jpeg",
- "url": "property-photo/1a2abf8eb/166269284/1a2abf8eb254a8ef2ce7415da1f67983.jpeg",
- "caption": "Picture No. 69"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb0558be0/166269284/cb0558be09f01d82cc7cec595b278226_max_476x317.jpeg",
- "url": "property-photo/cb0558be0/166269284/cb0558be09f01d82cc7cec595b278226.jpeg",
- "caption": "Picture No. 48"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/61490049f/166269284/61490049ffd2ca02f12d47125c2cefb6_max_476x317.jpeg",
- "url": "property-photo/61490049f/166269284/61490049ffd2ca02f12d47125c2cefb6.jpeg",
- "caption": "Picture No. 71"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5f08c87c8/166269284/5f08c87c833cc2f05c8dd0e57df76ff5_max_476x317.jpeg",
- "url": "property-photo/5f08c87c8/166269284/5f08c87c833cc2f05c8dd0e57df76ff5.jpeg",
- "caption": "Picture No. 72"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/15c19ab0c/166269284/15c19ab0c3f8af8da2e5e398d0fa5950_max_476x317.jpeg",
- "url": "property-photo/15c19ab0c/166269284/15c19ab0c3f8af8da2e5e398d0fa5950.jpeg",
- "caption": "Picture No. 77"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0d8f019f/166269284/d0d8f019f3b9867db580bb626414511b_max_476x317.jpeg",
- "url": "property-photo/d0d8f019f/166269284/d0d8f019f3b9867db580bb626414511b.jpeg",
- "caption": "Picture No. 78"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/02042d836/166269284/02042d83618b1e2b77827efabc692da3_max_476x317.jpeg",
- "url": "property-photo/02042d836/166269284/02042d83618b1e2b77827efabc692da3.jpeg",
- "caption": "Picture No. 73"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ee7f91f9f/166269284/ee7f91f9f6ea8c9c61d6213ff96e9631_max_476x317.jpeg",
- "url": "property-photo/ee7f91f9f/166269284/ee7f91f9f6ea8c9c61d6213ff96e9631.jpeg",
- "caption": "Picture No. 74"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c2a21238/166269284/6c2a212382ff4b9c36523e344176a48d_max_476x317.jpeg",
- "url": "property-photo/6c2a21238/166269284/6c2a212382ff4b9c36523e344176a48d.jpeg",
- "caption": "Picture No. 76"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/196c747db/166269284/196c747dbc11175449c1651a9a2d2b25_max_476x317.jpeg",
- "url": "property-photo/196c747db/166269284/196c747dbc11175449c1651a9a2d2b25.jpeg",
- "caption": "Picture No. 84"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ca94acd3/166269284/9ca94acd380b6e468643cba37ed76ee5_max_476x317.jpeg",
- "url": "property-photo/9ca94acd3/166269284/9ca94acd380b6e468643cba37ed76ee5.jpeg",
- "caption": "Picture No. 79"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/20ff1c7b1/166269284/20ff1c7b1304cba83128c0baf6d6ca5a_max_476x317.jpeg",
- "url": "property-photo/20ff1c7b1/166269284/20ff1c7b1304cba83128c0baf6d6ca5a.jpeg",
- "caption": "Picture No. 75"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bbceda5df/166269284/bbceda5df89b22516225059494988365_max_476x317.jpeg",
- "url": "property-photo/bbceda5df/166269284/bbceda5df89b22516225059494988365.jpeg",
- "caption": "Picture No. 80"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9de586bac/166269284/9de586bac0ab064c5b986da79fefff85_max_476x317.jpeg",
- "url": "property-photo/9de586bac/166269284/9de586bac0ab064c5b986da79fefff85.jpeg",
- "caption": "Picture No. 83"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/211a86b14/166269284/211a86b14fb377ccaf03c397e3d0c1df_max_476x317.jpeg",
- "url": "property-photo/211a86b14/166269284/211a86b14fb377ccaf03c397e3d0c1df.jpeg",
- "caption": "Picture No. 81"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e399a7b4f/166269284/e399a7b4f31687400df6078d5cef4845_max_476x317.jpeg",
- "url": "property-photo/e399a7b4f/166269284/e399a7b4f31687400df6078d5cef4845.jpeg",
- "caption": "Picture No. 82"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1bd4d5ddb/166269284/1bd4d5ddb501054ed9ad51e99226f3a5_max_476x317.jpeg",
- "url": "property-photo/1bd4d5ddb/166269284/1bd4d5ddb501054ed9ad51e99226f3a5.jpeg",
- "caption": "Picture No. 85"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/568197e23/166269284/568197e23b2f9a1be4ffca6869627c6e_max_476x317.jpeg",
- "url": "property-photo/568197e23/166269284/568197e23b2f9a1be4ffca6869627c6e.jpeg",
- "caption": "Picture No. 87"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/048bf754e/166269284/048bf754e0d0fde49004a902b8bd497a_max_476x317.jpeg",
- "url": "property-photo/048bf754e/166269284/048bf754e0d0fde49004a902b8bd497a.jpeg",
- "caption": "Picture No. 88"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c8f3f611/166269284/5c8f3f61135d92ef06365644b3ab0ce9_max_476x317.jpeg",
- "url": "property-photo/5c8f3f611/166269284/5c8f3f61135d92ef06365644b3ab0ce9.jpeg",
- "caption": "Picture No. 86"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0ff25b09/166269284/d0ff25b09644610328555cce50b749e5_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0ff25b09/166269284/d0ff25b09644610328555cce50b749e5_max_296x197.jpeg"
- },
- "formattedBranchName": " by Madison Fox, Woodford Green",
- "addedOrReduced": "Added on 27/08/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "5 bedroom detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172089959,
- "bedrooms": 4,
- "bathrooms": 3,
- "numberOfImages": 30,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 2,
- "summary": "Set in a quiet cul-de-sac in sought-after Wanstead, this refined detached residence features four double bedrooms, two elegant dressing rooms, three bathrooms, and a private swimming pool.",
- "displayAddress": "Hollybush Close, Snaresbrook",
- "countryCode": "GB",
- "location": { "latitude": 51.580234, "longitude": 0.020466 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dd10297c7/172089959/dd10297c7c18fc28f9372f57d5c1310f_max_476x317.jpeg",
- "url": "property-photo/dd10297c7/172089959/dd10297c7c18fc28f9372f57d5c1310f.jpeg",
- "caption": "Front (Exterior)"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3ae2bc5c0/172089959/3ae2bc5c018c69e7507eaee5b7f35177_max_476x317.jpeg",
- "url": "property-photo/3ae2bc5c0/172089959/3ae2bc5c018c69e7507eaee5b7f35177.jpeg",
- "caption": "Kitchen"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/561ce5b0a/172089959/561ce5b0a921018681be2e959a75213a_max_476x317.jpeg",
- "url": "property-photo/561ce5b0a/172089959/561ce5b0a921018681be2e959a75213a.jpeg",
- "caption": "Swimming Pool"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/061a5d5f2/172089959/061a5d5f28f2ec3997ad4dc7233ea34b_max_476x317.jpeg",
- "url": "property-photo/061a5d5f2/172089959/061a5d5f28f2ec3997ad4dc7233ea34b.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a0750e563/172089959/a0750e563b6b14fbb7c6527206d8c16a_max_476x317.jpeg",
- "url": "property-photo/a0750e563/172089959/a0750e563b6b14fbb7c6527206d8c16a.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b1ecbcaf5/172089959/b1ecbcaf564bc75a5dbbc09b15b0f4f2_max_476x317.jpeg",
- "url": "property-photo/b1ecbcaf5/172089959/b1ecbcaf564bc75a5dbbc09b15b0f4f2.jpeg",
- "caption": "Kitchen"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d8515493d/172089959/d8515493d2bcfdb73a0d1dd7bbf70873_max_476x317.jpeg",
- "url": "property-photo/d8515493d/172089959/d8515493d2bcfdb73a0d1dd7bbf70873.jpeg",
- "caption": "Kitchen"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f83b7ae77/172089959/f83b7ae779704bc38280fee03efea558_max_476x317.jpeg",
- "url": "property-photo/f83b7ae77/172089959/f83b7ae779704bc38280fee03efea558.jpeg",
- "caption": "Dining Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b8077a05a/172089959/b8077a05ad13ed0df8cd07b3941667d9_max_476x317.jpeg",
- "url": "property-photo/b8077a05a/172089959/b8077a05ad13ed0df8cd07b3941667d9.jpeg",
- "caption": "Utility Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/331e338fe/172089959/331e338fede2d7c74101f76bac928e8a_max_476x317.jpeg",
- "url": "property-photo/331e338fe/172089959/331e338fede2d7c74101f76bac928e8a.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bed66c72d/172089959/bed66c72db4dc976d98a387d73dcc1de_max_476x317.jpeg",
- "url": "property-photo/bed66c72d/172089959/bed66c72db4dc976d98a387d73dcc1de.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/367b04982/172089959/367b04982cad84fddd24bd8045cb2374_max_476x317.jpeg",
- "url": "property-photo/367b04982/172089959/367b04982cad84fddd24bd8045cb2374.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/934299928/172089959/934299928f7e1497abf744a0f41917b9_max_476x317.jpeg",
- "url": "property-photo/934299928/172089959/934299928f7e1497abf744a0f41917b9.jpeg",
- "caption": "Reception Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91ae5dabd/172089959/91ae5dabd108feaf4fd7a649f0a271da_max_476x317.jpeg",
- "url": "property-photo/91ae5dabd/172089959/91ae5dabd108feaf4fd7a649f0a271da.jpeg",
- "caption": "Study"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/49e464cf0/172089959/49e464cf0ed2e5da82cd1c8734077887_max_476x317.jpeg",
- "url": "property-photo/49e464cf0/172089959/49e464cf0ed2e5da82cd1c8734077887.jpeg",
- "caption": "Hallway"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e270cbe26/172089959/e270cbe268b3395f48d78cfba686c055_max_476x317.jpeg",
- "url": "property-photo/e270cbe26/172089959/e270cbe268b3395f48d78cfba686c055.jpeg",
- "caption": "WC"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bb55e0f4b/172089959/bb55e0f4b7689dfa6162f4fdd73f7867_max_476x317.jpeg",
- "url": "property-photo/bb55e0f4b/172089959/bb55e0f4b7689dfa6162f4fdd73f7867.jpeg",
- "caption": "Hallway"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b5dc12fa5/172089959/b5dc12fa5449a64ac5c2fc37870b72e8_max_476x317.jpeg",
- "url": "property-photo/b5dc12fa5/172089959/b5dc12fa5449a64ac5c2fc37870b72e8.jpeg",
- "caption": "Bathroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a9a416931/172089959/a9a41693150fe41d19fafa7999554188_max_476x317.jpeg",
- "url": "property-photo/a9a416931/172089959/a9a41693150fe41d19fafa7999554188.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/90c2e1379/172089959/90c2e1379d64195de953b93dd04d8871_max_476x317.jpeg",
- "url": "property-photo/90c2e1379/172089959/90c2e1379d64195de953b93dd04d8871.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3e901b403/172089959/3e901b403dbc12398fc5da8acfa8e913_max_476x317.jpeg",
- "url": "property-photo/3e901b403/172089959/3e901b403dbc12398fc5da8acfa8e913.jpeg",
- "caption": "Bathroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c13bf35e/172089959/6c13bf35e14f37bffbff6ac44c13909b_max_476x317.jpeg",
- "url": "property-photo/6c13bf35e/172089959/6c13bf35e14f37bffbff6ac44c13909b.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7943c939d/172089959/7943c939d04ae5257564f8b51b20ab47_max_476x317.jpeg",
- "url": "property-photo/7943c939d/172089959/7943c939d04ae5257564f8b51b20ab47.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d623804de/172089959/d623804dede0dacf207b496bc246085a_max_476x317.jpeg",
- "url": "property-photo/d623804de/172089959/d623804dede0dacf207b496bc246085a.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3ad1abb93/172089959/3ad1abb930146838a06277371ffe59c0_max_476x317.jpeg",
- "url": "property-photo/3ad1abb93/172089959/3ad1abb930146838a06277371ffe59c0.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cc5ea5384/172089959/cc5ea53848fea42502814b11bfeecf2c_max_476x317.jpeg",
- "url": "property-photo/cc5ea5384/172089959/cc5ea53848fea42502814b11bfeecf2c.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7c022cc26/172089959/7c022cc264366d39ba1d71738b453878_max_476x317.jpeg",
- "url": "property-photo/7c022cc26/172089959/7c022cc264366d39ba1d71738b453878.jpeg",
- "caption": "Bathroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c96ba64a3/172089959/c96ba64a3e6ac79845acfbf14de98418_max_476x317.jpeg",
- "url": "property-photo/c96ba64a3/172089959/c96ba64a3e6ac79845acfbf14de98418.jpeg",
- "caption": "Swimming Pool"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/374c999d3/172089959/374c999d363f0e1032db8d203ddb647d_max_476x317.jpeg",
- "url": "property-photo/374c999d3/172089959/374c999d363f0e1032db8d203ddb647d.jpeg",
- "caption": "Exterior"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2bb5de3c9/172089959/2bb5de3c99f56bce931d9d7bd274c334_max_476x317.jpeg",
- "url": "property-photo/2bb5de3c9/172089959/2bb5de3c99f56bce931d9d7bd274c334.jpeg",
- "caption": "Swimming Pool"
- }
- ],
- "propertySubType": "House",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T16:27:05Z"
- },
- "price": {
- "amount": 2100000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,100,000",
- "displayPriceQualifier": "Offers in Excess of"
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 70202,
- "brandPlusLogoURI": "/71k/70202/branch_rmchoice_logo_70202_0000.jpeg",
- "contactTelephone": "020 3879 9971",
- "branchDisplayName": "Petty Son & Prestwich Ltd, London",
- "branchName": "London",
- "brandTradingName": "Petty Son & Prestwich Ltd",
- "branchLandingPageUrl": "/estate-agents/agent/Petty-Son-and-Prestwich-Ltd/London-70202.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-10-30T17:30:19Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/71k/70202/branch_rmchoice_logo_70202_0000.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "2,819 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/172089959#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=172089959",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2026-02-11T16:21:27Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-12T15:05:25Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Large detached residence",
- "htmlDescription": "Large detached residence"
- },
- {
- "order": 2,
- "description": "Quiet cul-de-sac location",
- "htmlDescription": "Quiet cul-de-sac location"
- },
- {
- "order": 3,
- "description": "Four double bedrooms, two dressing rooms and three bathrooms",
- "htmlDescription": "Four double bedrooms, two dressing rooms and three bathrooms"
- },
- {
- "order": 4,
- "description": "Additional ground floor W.C and separate utility room",
- "htmlDescription": "Additional ground floor W.C and separate utility room"
- },
- {
- "order": 5,
- "description": "South Westerly garden with heated swimming pool",
- "htmlDescription": "South Westerly garden with heated swimming pool"
- },
- {
- "order": 6,
- "description": "Two large formal receptions",
- "htmlDescription": "Two large formal receptions"
- },
- {
- "order": 7,
- "description": "Dedicated home office",
- "htmlDescription": "Dedicated home office"
- },
- {
- "order": 8,
- "description": "Live in family-kitchen with recently installed island",
- "htmlDescription": "Live in family-kitchen with recently installed island"
- },
- {
- "order": 9,
- "description": "Well presented throughout",
- "htmlDescription": "Well presented throughout"
- },
- {
- "order": 10,
- "description": "0.3 Miles to Snaresbrook Station and Wanstead High Street",
- "htmlDescription": "0.3 Miles to Snaresbrook Station and Wanstead High Street"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dd10297c7/172089959/dd10297c7c18fc28f9372f57d5c1310f_max_476x317.jpeg",
- "url": "property-photo/dd10297c7/172089959/dd10297c7c18fc28f9372f57d5c1310f.jpeg",
- "caption": "Front (Exterior)"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3ae2bc5c0/172089959/3ae2bc5c018c69e7507eaee5b7f35177_max_476x317.jpeg",
- "url": "property-photo/3ae2bc5c0/172089959/3ae2bc5c018c69e7507eaee5b7f35177.jpeg",
- "caption": "Kitchen"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/561ce5b0a/172089959/561ce5b0a921018681be2e959a75213a_max_476x317.jpeg",
- "url": "property-photo/561ce5b0a/172089959/561ce5b0a921018681be2e959a75213a.jpeg",
- "caption": "Swimming Pool"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/061a5d5f2/172089959/061a5d5f28f2ec3997ad4dc7233ea34b_max_476x317.jpeg",
- "url": "property-photo/061a5d5f2/172089959/061a5d5f28f2ec3997ad4dc7233ea34b.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a0750e563/172089959/a0750e563b6b14fbb7c6527206d8c16a_max_476x317.jpeg",
- "url": "property-photo/a0750e563/172089959/a0750e563b6b14fbb7c6527206d8c16a.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b1ecbcaf5/172089959/b1ecbcaf564bc75a5dbbc09b15b0f4f2_max_476x317.jpeg",
- "url": "property-photo/b1ecbcaf5/172089959/b1ecbcaf564bc75a5dbbc09b15b0f4f2.jpeg",
- "caption": "Kitchen"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d8515493d/172089959/d8515493d2bcfdb73a0d1dd7bbf70873_max_476x317.jpeg",
- "url": "property-photo/d8515493d/172089959/d8515493d2bcfdb73a0d1dd7bbf70873.jpeg",
- "caption": "Kitchen"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f83b7ae77/172089959/f83b7ae779704bc38280fee03efea558_max_476x317.jpeg",
- "url": "property-photo/f83b7ae77/172089959/f83b7ae779704bc38280fee03efea558.jpeg",
- "caption": "Dining Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b8077a05a/172089959/b8077a05ad13ed0df8cd07b3941667d9_max_476x317.jpeg",
- "url": "property-photo/b8077a05a/172089959/b8077a05ad13ed0df8cd07b3941667d9.jpeg",
- "caption": "Utility Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/331e338fe/172089959/331e338fede2d7c74101f76bac928e8a_max_476x317.jpeg",
- "url": "property-photo/331e338fe/172089959/331e338fede2d7c74101f76bac928e8a.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bed66c72d/172089959/bed66c72db4dc976d98a387d73dcc1de_max_476x317.jpeg",
- "url": "property-photo/bed66c72d/172089959/bed66c72db4dc976d98a387d73dcc1de.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/367b04982/172089959/367b04982cad84fddd24bd8045cb2374_max_476x317.jpeg",
- "url": "property-photo/367b04982/172089959/367b04982cad84fddd24bd8045cb2374.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/934299928/172089959/934299928f7e1497abf744a0f41917b9_max_476x317.jpeg",
- "url": "property-photo/934299928/172089959/934299928f7e1497abf744a0f41917b9.jpeg",
- "caption": "Reception Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91ae5dabd/172089959/91ae5dabd108feaf4fd7a649f0a271da_max_476x317.jpeg",
- "url": "property-photo/91ae5dabd/172089959/91ae5dabd108feaf4fd7a649f0a271da.jpeg",
- "caption": "Study"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/49e464cf0/172089959/49e464cf0ed2e5da82cd1c8734077887_max_476x317.jpeg",
- "url": "property-photo/49e464cf0/172089959/49e464cf0ed2e5da82cd1c8734077887.jpeg",
- "caption": "Hallway"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e270cbe26/172089959/e270cbe268b3395f48d78cfba686c055_max_476x317.jpeg",
- "url": "property-photo/e270cbe26/172089959/e270cbe268b3395f48d78cfba686c055.jpeg",
- "caption": "WC"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bb55e0f4b/172089959/bb55e0f4b7689dfa6162f4fdd73f7867_max_476x317.jpeg",
- "url": "property-photo/bb55e0f4b/172089959/bb55e0f4b7689dfa6162f4fdd73f7867.jpeg",
- "caption": "Hallway"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b5dc12fa5/172089959/b5dc12fa5449a64ac5c2fc37870b72e8_max_476x317.jpeg",
- "url": "property-photo/b5dc12fa5/172089959/b5dc12fa5449a64ac5c2fc37870b72e8.jpeg",
- "caption": "Bathroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a9a416931/172089959/a9a41693150fe41d19fafa7999554188_max_476x317.jpeg",
- "url": "property-photo/a9a416931/172089959/a9a41693150fe41d19fafa7999554188.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/90c2e1379/172089959/90c2e1379d64195de953b93dd04d8871_max_476x317.jpeg",
- "url": "property-photo/90c2e1379/172089959/90c2e1379d64195de953b93dd04d8871.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3e901b403/172089959/3e901b403dbc12398fc5da8acfa8e913_max_476x317.jpeg",
- "url": "property-photo/3e901b403/172089959/3e901b403dbc12398fc5da8acfa8e913.jpeg",
- "caption": "Bathroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c13bf35e/172089959/6c13bf35e14f37bffbff6ac44c13909b_max_476x317.jpeg",
- "url": "property-photo/6c13bf35e/172089959/6c13bf35e14f37bffbff6ac44c13909b.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7943c939d/172089959/7943c939d04ae5257564f8b51b20ab47_max_476x317.jpeg",
- "url": "property-photo/7943c939d/172089959/7943c939d04ae5257564f8b51b20ab47.jpeg",
- "caption": "Living Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d623804de/172089959/d623804dede0dacf207b496bc246085a_max_476x317.jpeg",
- "url": "property-photo/d623804de/172089959/d623804dede0dacf207b496bc246085a.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3ad1abb93/172089959/3ad1abb930146838a06277371ffe59c0_max_476x317.jpeg",
- "url": "property-photo/3ad1abb93/172089959/3ad1abb930146838a06277371ffe59c0.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cc5ea5384/172089959/cc5ea53848fea42502814b11bfeecf2c_max_476x317.jpeg",
- "url": "property-photo/cc5ea5384/172089959/cc5ea53848fea42502814b11bfeecf2c.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7c022cc26/172089959/7c022cc264366d39ba1d71738b453878_max_476x317.jpeg",
- "url": "property-photo/7c022cc26/172089959/7c022cc264366d39ba1d71738b453878.jpeg",
- "caption": "Bathroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c96ba64a3/172089959/c96ba64a3e6ac79845acfbf14de98418_max_476x317.jpeg",
- "url": "property-photo/c96ba64a3/172089959/c96ba64a3e6ac79845acfbf14de98418.jpeg",
- "caption": "Swimming Pool"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/374c999d3/172089959/374c999d363f0e1032db8d203ddb647d_max_476x317.jpeg",
- "url": "property-photo/374c999d3/172089959/374c999d363f0e1032db8d203ddb647d.jpeg",
- "caption": "Exterior"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2bb5de3c9/172089959/2bb5de3c99f56bce931d9d7bd274c334_max_476x317.jpeg",
- "url": "property-photo/2bb5de3c9/172089959/2bb5de3c99f56bce931d9d7bd274c334.jpeg",
- "caption": "Swimming Pool"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dd10297c7/172089959/dd10297c7c18fc28f9372f57d5c1310f_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dd10297c7/172089959/dd10297c7c18fc28f9372f57d5c1310f_max_296x197.jpeg"
- },
- "formattedBranchName": " by Petty Son & Prestwich Ltd, London",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "4 bedroom house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 169211177,
- "bedrooms": 3,
- "bathrooms": 2,
- "numberOfImages": 22,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Nestled in the heart of central Wanstead, a mere 0.2 miles from the vibrant High Street, this elegant detached residence occupies an enviable position on Grove Park, which is unquestionably one of Wanstead’s most prestigious and sought-after addresses.",
- "displayAddress": "Grove Park, Wanstead",
- "countryCode": "GB",
- "location": { "latitude": 51.578678, "longitude": 0.029427 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c6fd46c9/169211177/5c6fd46c99823a72235a67c3ec3bb1ae_max_476x317.jpeg",
- "url": "property-photo/5c6fd46c9/169211177/5c6fd46c99823a72235a67c3ec3bb1ae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d149cca4/169211177/3d149cca446cfc2448b083004bee3e57_max_476x317.jpeg",
- "url": "property-photo/3d149cca4/169211177/3d149cca446cfc2448b083004bee3e57.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b8eae19a/169211177/5b8eae19a7caebf30d81b38858d3b872_max_476x317.jpeg",
- "url": "property-photo/5b8eae19a/169211177/5b8eae19a7caebf30d81b38858d3b872.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/321e1328a/169211177/321e1328aae8346cf436c5b96fff1317_max_476x317.jpeg",
- "url": "property-photo/321e1328a/169211177/321e1328aae8346cf436c5b96fff1317.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/94dd5566a/169211177/94dd5566a8ae76bfe0160baebbe6b7bc_max_476x317.jpeg",
- "url": "property-photo/94dd5566a/169211177/94dd5566a8ae76bfe0160baebbe6b7bc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/416a18912/169211177/416a18912e5447cb27bc27117574c43b_max_476x317.jpeg",
- "url": "property-photo/416a18912/169211177/416a18912e5447cb27bc27117574c43b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9dda5caa1/169211177/9dda5caa17ccdbceaba66c39ff178e7d_max_476x317.jpeg",
- "url": "property-photo/9dda5caa1/169211177/9dda5caa17ccdbceaba66c39ff178e7d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c88d81977/169211177/c88d81977b2bf5e18659d5682d031e54_max_476x317.jpeg",
- "url": "property-photo/c88d81977/169211177/c88d81977b2bf5e18659d5682d031e54.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/529a6f5d4/169211177/529a6f5d4a04bd1137e6725a10307789_max_476x317.jpeg",
- "url": "property-photo/529a6f5d4/169211177/529a6f5d4a04bd1137e6725a10307789.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2b2323f18/169211177/2b2323f1801cb08daaa06911bb1e839b_max_476x317.jpeg",
- "url": "property-photo/2b2323f18/169211177/2b2323f1801cb08daaa06911bb1e839b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5ed1b604e/169211177/5ed1b604e66f4a6859ddfad4426aa799_max_476x317.jpeg",
- "url": "property-photo/5ed1b604e/169211177/5ed1b604e66f4a6859ddfad4426aa799.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6aff926b3/169211177/6aff926b3c9cf16b63068d1abe79bb63_max_476x317.jpeg",
- "url": "property-photo/6aff926b3/169211177/6aff926b3c9cf16b63068d1abe79bb63.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b073cf5a2/169211177/b073cf5a290775008e3840f1837f89f7_max_476x317.jpeg",
- "url": "property-photo/b073cf5a2/169211177/b073cf5a290775008e3840f1837f89f7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/942947835/169211177/942947835a5d58b2d0428167e2142294_max_476x317.jpeg",
- "url": "property-photo/942947835/169211177/942947835a5d58b2d0428167e2142294.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a2919927a/169211177/a2919927aa7b94da2d45016a474c6df1_max_476x317.jpeg",
- "url": "property-photo/a2919927a/169211177/a2919927aa7b94da2d45016a474c6df1.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3c7c43999/169211177/3c7c43999b8394e437f514d68c79716c_max_476x317.jpeg",
- "url": "property-photo/3c7c43999/169211177/3c7c43999b8394e437f514d68c79716c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d27488be6/169211177/d27488be6910bfe568efffbcdbfed94f_max_476x317.jpeg",
- "url": "property-photo/d27488be6/169211177/d27488be6910bfe568efffbcdbfed94f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d40f51b8/169211177/3d40f51b89a8620fb2e7dd4c56e07e6b_max_476x317.jpeg",
- "url": "property-photo/3d40f51b8/169211177/3d40f51b89a8620fb2e7dd4c56e07e6b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2ccc9dafb/169211177/2ccc9dafb5a298eff6e863bf2fe90878_max_476x317.jpeg",
- "url": "property-photo/2ccc9dafb/169211177/2ccc9dafb5a298eff6e863bf2fe90878.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8333d24ce/169211177/8333d24ce109319f050e852b8ba32930_max_476x317.jpeg",
- "url": "property-photo/8333d24ce/169211177/8333d24ce109319f050e852b8ba32930.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/01298c574/169211177/01298c574323322fa5246c8f27a7987d_max_476x317.jpeg",
- "url": "property-photo/01298c574/169211177/01298c574323322fa5246c8f27a7987d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1de91b001/169211177/1de91b0012375f2721d73e603195e711_max_476x317.jpeg",
- "url": "property-photo/1de91b001/169211177/1de91b0012375f2721d73e603195e711.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "House",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-11-11T10:00:06Z"
- },
- "price": {
- "amount": 2050000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,050,000",
- "displayPriceQualifier": "Offers in Excess of"
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 70202,
- "brandPlusLogoURI": "/71k/70202/branch_rmchoice_logo_70202_0000.jpeg",
- "contactTelephone": "020 3879 9971",
- "branchDisplayName": "Petty Son & Prestwich Ltd, London",
- "branchName": "London",
- "brandTradingName": "Petty Son & Prestwich Ltd",
- "branchLandingPageUrl": "/estate-agents/agent/Petty-Son-and-Prestwich-Ltd/London-70202.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-10-30T17:30:19Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/71k/70202/branch_rmchoice_logo_70202_0000.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "2,752 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/169211177#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=169211177",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-11-11T09:55:03Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T15:43:42Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Three double bedroom detached house",
- "htmlDescription": "Three double bedroom detached house"
- },
- {
- "order": 2,
- "description": "One of Wanstead's most prestigious roads",
- "htmlDescription": "One of Wanstead's most prestigious roads"
- },
- {
- "order": 3,
- "description": "Central Wanstead location",
- "htmlDescription": "Central Wanstead location"
- },
- {
- "order": 4,
- "description": "Large garden",
- "htmlDescription": "Large garden"
- },
- {
- "order": 5,
- "description": "Exceptional extension potential (STPP)",
- "htmlDescription": "Exceptional extension potential (STPP)"
- },
- {
- "order": 6,
- "description": "0.4 miles to Wanstead Underground Station",
- "htmlDescription": "0.4 miles to Wanstead Underground Station"
- },
- {
- "order": 7,
- "description": "Chain free",
- "htmlDescription": "Chain free"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c6fd46c9/169211177/5c6fd46c99823a72235a67c3ec3bb1ae_max_476x317.jpeg",
- "url": "property-photo/5c6fd46c9/169211177/5c6fd46c99823a72235a67c3ec3bb1ae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d149cca4/169211177/3d149cca446cfc2448b083004bee3e57_max_476x317.jpeg",
- "url": "property-photo/3d149cca4/169211177/3d149cca446cfc2448b083004bee3e57.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b8eae19a/169211177/5b8eae19a7caebf30d81b38858d3b872_max_476x317.jpeg",
- "url": "property-photo/5b8eae19a/169211177/5b8eae19a7caebf30d81b38858d3b872.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/321e1328a/169211177/321e1328aae8346cf436c5b96fff1317_max_476x317.jpeg",
- "url": "property-photo/321e1328a/169211177/321e1328aae8346cf436c5b96fff1317.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/94dd5566a/169211177/94dd5566a8ae76bfe0160baebbe6b7bc_max_476x317.jpeg",
- "url": "property-photo/94dd5566a/169211177/94dd5566a8ae76bfe0160baebbe6b7bc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/416a18912/169211177/416a18912e5447cb27bc27117574c43b_max_476x317.jpeg",
- "url": "property-photo/416a18912/169211177/416a18912e5447cb27bc27117574c43b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9dda5caa1/169211177/9dda5caa17ccdbceaba66c39ff178e7d_max_476x317.jpeg",
- "url": "property-photo/9dda5caa1/169211177/9dda5caa17ccdbceaba66c39ff178e7d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c88d81977/169211177/c88d81977b2bf5e18659d5682d031e54_max_476x317.jpeg",
- "url": "property-photo/c88d81977/169211177/c88d81977b2bf5e18659d5682d031e54.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/529a6f5d4/169211177/529a6f5d4a04bd1137e6725a10307789_max_476x317.jpeg",
- "url": "property-photo/529a6f5d4/169211177/529a6f5d4a04bd1137e6725a10307789.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2b2323f18/169211177/2b2323f1801cb08daaa06911bb1e839b_max_476x317.jpeg",
- "url": "property-photo/2b2323f18/169211177/2b2323f1801cb08daaa06911bb1e839b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5ed1b604e/169211177/5ed1b604e66f4a6859ddfad4426aa799_max_476x317.jpeg",
- "url": "property-photo/5ed1b604e/169211177/5ed1b604e66f4a6859ddfad4426aa799.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6aff926b3/169211177/6aff926b3c9cf16b63068d1abe79bb63_max_476x317.jpeg",
- "url": "property-photo/6aff926b3/169211177/6aff926b3c9cf16b63068d1abe79bb63.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b073cf5a2/169211177/b073cf5a290775008e3840f1837f89f7_max_476x317.jpeg",
- "url": "property-photo/b073cf5a2/169211177/b073cf5a290775008e3840f1837f89f7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/942947835/169211177/942947835a5d58b2d0428167e2142294_max_476x317.jpeg",
- "url": "property-photo/942947835/169211177/942947835a5d58b2d0428167e2142294.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a2919927a/169211177/a2919927aa7b94da2d45016a474c6df1_max_476x317.jpeg",
- "url": "property-photo/a2919927a/169211177/a2919927aa7b94da2d45016a474c6df1.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3c7c43999/169211177/3c7c43999b8394e437f514d68c79716c_max_476x317.jpeg",
- "url": "property-photo/3c7c43999/169211177/3c7c43999b8394e437f514d68c79716c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d27488be6/169211177/d27488be6910bfe568efffbcdbfed94f_max_476x317.jpeg",
- "url": "property-photo/d27488be6/169211177/d27488be6910bfe568efffbcdbfed94f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d40f51b8/169211177/3d40f51b89a8620fb2e7dd4c56e07e6b_max_476x317.jpeg",
- "url": "property-photo/3d40f51b8/169211177/3d40f51b89a8620fb2e7dd4c56e07e6b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2ccc9dafb/169211177/2ccc9dafb5a298eff6e863bf2fe90878_max_476x317.jpeg",
- "url": "property-photo/2ccc9dafb/169211177/2ccc9dafb5a298eff6e863bf2fe90878.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8333d24ce/169211177/8333d24ce109319f050e852b8ba32930_max_476x317.jpeg",
- "url": "property-photo/8333d24ce/169211177/8333d24ce109319f050e852b8ba32930.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/01298c574/169211177/01298c574323322fa5246c8f27a7987d_max_476x317.jpeg",
- "url": "property-photo/01298c574/169211177/01298c574323322fa5246c8f27a7987d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1de91b001/169211177/1de91b0012375f2721d73e603195e711_max_476x317.jpeg",
- "url": "property-photo/1de91b001/169211177/1de91b0012375f2721d73e603195e711.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c6fd46c9/169211177/5c6fd46c99823a72235a67c3ec3bb1ae_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c6fd46c9/169211177/5c6fd46c99823a72235a67c3ec3bb1ae_max_296x197.jpeg"
- },
- "formattedBranchName": " by Petty Son & Prestwich Ltd, London",
- "addedOrReduced": "Added on 11/11/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "3 bedroom house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 166498460,
- "bedrooms": 4,
- "bathrooms": 1,
- "numberOfImages": 20,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Set on a generous plot in a desirable residential enclave, this four-bedroom freehold house is brimming with possibility. The rear garden stretches approximately forty-five metres—an extraordinary expanse that opens up endless opportunities for landscaping, extension, or outdoor living. Off-stree...",
- "displayAddress": "The Avenue, Wanstead",
- "countryCode": "GB",
- "location": { "latitude": 51.577621, "longitude": 0.028639 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/910049949/166498460/910049949e07523a9d35522e9ec371b4_max_476x317.jpeg",
- "url": "property-photo/910049949/166498460/910049949e07523a9d35522e9ec371b4.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ece8e69a1/166498460/ece8e69a140978a60dcb98f0cee39c4c_max_476x317.jpeg",
- "url": "property-photo/ece8e69a1/166498460/ece8e69a140978a60dcb98f0cee39c4c.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7286bb53a/166498460/7286bb53a69de51bddfe0afe1648d884_max_476x317.jpeg",
- "url": "property-photo/7286bb53a/166498460/7286bb53a69de51bddfe0afe1648d884.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b6cb95800/166498460/b6cb958009e3b58c957895cbd486ce0b_max_476x317.jpeg",
- "url": "property-photo/b6cb95800/166498460/b6cb958009e3b58c957895cbd486ce0b.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d6b2ae76a/166498460/d6b2ae76adad781b42720e0295d8b383_max_476x317.jpeg",
- "url": "property-photo/d6b2ae76a/166498460/d6b2ae76adad781b42720e0295d8b383.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d1f729c2e/166498460/d1f729c2e7a881276c7caa746f8bd975_max_476x317.jpeg",
- "url": "property-photo/d1f729c2e/166498460/d1f729c2e7a881276c7caa746f8bd975.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db1a129ea/166498460/db1a129eaa2f341ab37d4823f1c979e7_max_476x317.jpeg",
- "url": "property-photo/db1a129ea/166498460/db1a129eaa2f341ab37d4823f1c979e7.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54443155d/166498460/54443155dc6ebe555e5cc4f01f735108_max_476x317.jpeg",
- "url": "property-photo/54443155d/166498460/54443155dc6ebe555e5cc4f01f735108.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b6695a606/166498460/b6695a60633503dc3cf175e82839afd6_max_476x317.jpeg",
- "url": "property-photo/b6695a606/166498460/b6695a60633503dc3cf175e82839afd6.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3ff803686/166498460/3ff803686fb9a230c66a8f8bf71fda12_max_476x317.jpeg",
- "url": "property-photo/3ff803686/166498460/3ff803686fb9a230c66a8f8bf71fda12.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6e662b11a/166498460/6e662b11a9b735ed5aedf6288b38e985_max_476x317.jpeg",
- "url": "property-photo/6e662b11a/166498460/6e662b11a9b735ed5aedf6288b38e985.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c0400b6ba/166498460/c0400b6ba049ba1f56b7b4b72d215ab8_max_476x317.jpeg",
- "url": "property-photo/c0400b6ba/166498460/c0400b6ba049ba1f56b7b4b72d215ab8.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d7b138591/166498460/d7b1385912cdb2ac7cee1444d0cc5cff_max_476x317.jpeg",
- "url": "property-photo/d7b138591/166498460/d7b1385912cdb2ac7cee1444d0cc5cff.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/32f76323a/166498460/32f76323aaf610499e7ec934e5d71245_max_476x317.jpeg",
- "url": "property-photo/32f76323a/166498460/32f76323aaf610499e7ec934e5d71245.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0b1e629e6/166498460/0b1e629e6354b4290989d19b1a3ccfa8_max_476x317.jpeg",
- "url": "property-photo/0b1e629e6/166498460/0b1e629e6354b4290989d19b1a3ccfa8.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9864805d8/166498460/9864805d8d278b28c15622a4a2ececcd_max_476x317.jpeg",
- "url": "property-photo/9864805d8/166498460/9864805d8d278b28c15622a4a2ececcd.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8acb12ab1/166498460/8acb12ab1f4e99e160900c0c4007050f_max_476x317.jpeg",
- "url": "property-photo/8acb12ab1/166498460/8acb12ab1f4e99e160900c0c4007050f.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/da2e414a0/166498460/da2e414a09f1f12b1b1546f708023881_max_476x317.jpeg",
- "url": "property-photo/da2e414a0/166498460/da2e414a09f1f12b1b1546f708023881.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d366fff9b/166498460/d366fff9bbdbf081d44b86f5361c6d40_max_476x317.jpeg",
- "url": "property-photo/d366fff9b/166498460/d366fff9bbdbf081d44b86f5361c6d40.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fa52f4a4b/166498460/fa52f4a4b630f494ef4aef8de6b484ed_max_476x317.jpeg",
- "url": "property-photo/fa52f4a4b/166498460/fa52f4a4b630f494ef4aef8de6b484ed.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- }
- ],
- "propertySubType": "House",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-09-02T15:53:04Z"
- },
- "price": {
- "amount": 2000000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,000,000",
- "displayPriceQualifier": "Offers in Excess of"
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 171122,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_49357_0001.png",
- "contactTelephone": "020 3907 3713",
- "branchDisplayName": "The Stow Brothers, Wanstead & Leytonstone",
- "branchName": "Wanstead & Leytonstone",
- "brandTradingName": "The Stow Brothers",
- "branchLandingPageUrl": "/estate-agents/agent/The-Stow-Brothers/Wanstead-and-Leytonstone-171122.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-19T10:05:05Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_49357_0001.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "1,963 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/166498460#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=166498460",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-09-02T15:47:53Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2025-10-14T12:22:59Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Four Bedroom Freehold House",
- "htmlDescription": "Four Bedroom Freehold House"
- },
- {
- "order": 2,
- "description": "Prestigious Location",
- "htmlDescription": "Prestigious Location"
- },
- {
- "order": 3,
- "description": "Large Plot Perfect for Re-Development",
- "htmlDescription": "Large Plot Perfect for Re-Development"
- },
- {
- "order": 4,
- "description": "Huge Rear Garden",
- "htmlDescription": "Huge Rear Garden"
- },
- {
- "order": 5,
- "description": "Parking for Several Cars",
- "htmlDescription": "Parking for Several Cars"
- },
- {
- "order": 6,
- "description": "Offered Chain Free",
- "htmlDescription": "Offered Chain Free"
- },
- {
- "order": 7,
- "description": "Close to Tube Station & Wanstead High Street",
- "htmlDescription": "Close to Tube Station & Wanstead High Street"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/910049949/166498460/910049949e07523a9d35522e9ec371b4_max_476x317.jpeg",
- "url": "property-photo/910049949/166498460/910049949e07523a9d35522e9ec371b4.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ece8e69a1/166498460/ece8e69a140978a60dcb98f0cee39c4c_max_476x317.jpeg",
- "url": "property-photo/ece8e69a1/166498460/ece8e69a140978a60dcb98f0cee39c4c.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7286bb53a/166498460/7286bb53a69de51bddfe0afe1648d884_max_476x317.jpeg",
- "url": "property-photo/7286bb53a/166498460/7286bb53a69de51bddfe0afe1648d884.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b6cb95800/166498460/b6cb958009e3b58c957895cbd486ce0b_max_476x317.jpeg",
- "url": "property-photo/b6cb95800/166498460/b6cb958009e3b58c957895cbd486ce0b.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d6b2ae76a/166498460/d6b2ae76adad781b42720e0295d8b383_max_476x317.jpeg",
- "url": "property-photo/d6b2ae76a/166498460/d6b2ae76adad781b42720e0295d8b383.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d1f729c2e/166498460/d1f729c2e7a881276c7caa746f8bd975_max_476x317.jpeg",
- "url": "property-photo/d1f729c2e/166498460/d1f729c2e7a881276c7caa746f8bd975.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db1a129ea/166498460/db1a129eaa2f341ab37d4823f1c979e7_max_476x317.jpeg",
- "url": "property-photo/db1a129ea/166498460/db1a129eaa2f341ab37d4823f1c979e7.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54443155d/166498460/54443155dc6ebe555e5cc4f01f735108_max_476x317.jpeg",
- "url": "property-photo/54443155d/166498460/54443155dc6ebe555e5cc4f01f735108.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b6695a606/166498460/b6695a60633503dc3cf175e82839afd6_max_476x317.jpeg",
- "url": "property-photo/b6695a606/166498460/b6695a60633503dc3cf175e82839afd6.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3ff803686/166498460/3ff803686fb9a230c66a8f8bf71fda12_max_476x317.jpeg",
- "url": "property-photo/3ff803686/166498460/3ff803686fb9a230c66a8f8bf71fda12.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6e662b11a/166498460/6e662b11a9b735ed5aedf6288b38e985_max_476x317.jpeg",
- "url": "property-photo/6e662b11a/166498460/6e662b11a9b735ed5aedf6288b38e985.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c0400b6ba/166498460/c0400b6ba049ba1f56b7b4b72d215ab8_max_476x317.jpeg",
- "url": "property-photo/c0400b6ba/166498460/c0400b6ba049ba1f56b7b4b72d215ab8.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d7b138591/166498460/d7b1385912cdb2ac7cee1444d0cc5cff_max_476x317.jpeg",
- "url": "property-photo/d7b138591/166498460/d7b1385912cdb2ac7cee1444d0cc5cff.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/32f76323a/166498460/32f76323aaf610499e7ec934e5d71245_max_476x317.jpeg",
- "url": "property-photo/32f76323a/166498460/32f76323aaf610499e7ec934e5d71245.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0b1e629e6/166498460/0b1e629e6354b4290989d19b1a3ccfa8_max_476x317.jpeg",
- "url": "property-photo/0b1e629e6/166498460/0b1e629e6354b4290989d19b1a3ccfa8.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9864805d8/166498460/9864805d8d278b28c15622a4a2ececcd_max_476x317.jpeg",
- "url": "property-photo/9864805d8/166498460/9864805d8d278b28c15622a4a2ececcd.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8acb12ab1/166498460/8acb12ab1f4e99e160900c0c4007050f_max_476x317.jpeg",
- "url": "property-photo/8acb12ab1/166498460/8acb12ab1f4e99e160900c0c4007050f.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/da2e414a0/166498460/da2e414a09f1f12b1b1546f708023881_max_476x317.jpeg",
- "url": "property-photo/da2e414a0/166498460/da2e414a09f1f12b1b1546f708023881.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d366fff9b/166498460/d366fff9bbdbf081d44b86f5361c6d40_max_476x317.jpeg",
- "url": "property-photo/d366fff9b/166498460/d366fff9bbdbf081d44b86f5361c6d40.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fa52f4a4b/166498460/fa52f4a4b630f494ef4aef8de6b484ed_max_476x317.jpeg",
- "url": "property-photo/fa52f4a4b/166498460/fa52f4a4b630f494ef4aef8de6b484ed.jpeg",
- "caption": "Tudor Lodge, The Avenue, E11"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/910049949/166498460/910049949e07523a9d35522e9ec371b4_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/910049949/166498460/910049949e07523a9d35522e9ec371b4_max_296x197.jpeg"
- },
- "formattedBranchName": " by The Stow Brothers, Wanstead & Leytonstone",
- "addedOrReduced": "Added on 02/09/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "4 bedroom house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 162984056,
- "bedrooms": 6,
- "bathrooms": 4,
- "numberOfImages": 30,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "This spectacular, 6-bedroom, semi-detached period house is located in the heart of Wanstead and boasts tranquil, picturesque views out to the Wanstead Golf Course. Spanning over 3,000 sq ft of internal living space, this exceptional house is situated over three floors, the ground floor offerin...",
- "displayAddress": "Overton Drive, London E11",
- "countryCode": "GB",
- "location": { "latitude": 51.57033, "longitude": 0.026447 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dee53f6e6/162984056/dee53f6e66aa12517d800a3e7c310ab2_max_476x317.jpeg",
- "url": "property-photo/dee53f6e6/162984056/dee53f6e66aa12517d800a3e7c310ab2.jpeg",
- "caption": "Photo 30"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c7f0d4374/162984056/c7f0d4374e0fcf2b89137592c49f65ec_max_476x317.jpeg",
- "url": "property-photo/c7f0d4374/162984056/c7f0d4374e0fcf2b89137592c49f65ec.jpeg",
- "caption": "Photo 31"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c379cf279/162984056/c379cf279632b634419fcdd56601e736_max_476x317.jpeg",
- "url": "property-photo/c379cf279/162984056/c379cf279632b634419fcdd56601e736.jpeg",
- "caption": "Photo 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2b5389776/162984056/2b538977624839a16fbe17588fdf0928_max_476x317.jpeg",
- "url": "property-photo/2b5389776/162984056/2b538977624839a16fbe17588fdf0928.jpeg",
- "caption": "Photo 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7f28545b1/162984056/7f28545b175195ff4acf20c2ceaf64d2_max_476x317.jpeg",
- "url": "property-photo/7f28545b1/162984056/7f28545b175195ff4acf20c2ceaf64d2.jpeg",
- "caption": "Photo 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c44663d6/162984056/8c44663d686f22eaea62dfc180c87b57_max_476x317.jpeg",
- "url": "property-photo/8c44663d6/162984056/8c44663d686f22eaea62dfc180c87b57.jpeg",
- "caption": "Photo 16"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4af2a1537/162984056/4af2a153702f9dd5bda0908780957acd_max_476x317.jpeg",
- "url": "property-photo/4af2a1537/162984056/4af2a153702f9dd5bda0908780957acd.jpeg",
- "caption": "Photo 3"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f9e789ce/162984056/6f9e789cee3e978e9e714e18dec5ce65_max_476x317.jpeg",
- "url": "property-photo/6f9e789ce/162984056/6f9e789cee3e978e9e714e18dec5ce65.jpeg",
- "caption": "Photo 19"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b03f833aa/162984056/b03f833aabdf4fc2732eabc0a48a2be8_max_476x317.jpeg",
- "url": "property-photo/b03f833aa/162984056/b03f833aabdf4fc2732eabc0a48a2be8.jpeg",
- "caption": "Photo 4"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/835db2039/162984056/835db2039985868d58e7eb7ad1fad21f_max_476x317.jpeg",
- "url": "property-photo/835db2039/162984056/835db2039985868d58e7eb7ad1fad21f.jpeg",
- "caption": "Photo 17"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/49173e098/162984056/49173e098947f3d15e6d70a5bc31ebd8_max_476x317.jpeg",
- "url": "property-photo/49173e098/162984056/49173e098947f3d15e6d70a5bc31ebd8.jpeg",
- "caption": "Photo 24"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b1c55ae36/162984056/b1c55ae36c3c6754cb55f1f49f05f727_max_476x317.jpeg",
- "url": "property-photo/b1c55ae36/162984056/b1c55ae36c3c6754cb55f1f49f05f727.jpeg",
- "caption": "Photo 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e942045be/162984056/e942045be6bb58366a24584b1bfffdd1_max_476x317.jpeg",
- "url": "property-photo/e942045be/162984056/e942045be6bb58366a24584b1bfffdd1.jpeg",
- "caption": "Photo 9"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/daf990af7/162984056/daf990af7041ebf2668e0d3977abe077_max_476x317.jpeg",
- "url": "property-photo/daf990af7/162984056/daf990af7041ebf2668e0d3977abe077.jpeg",
- "caption": "Photo 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/488478280/162984056/48847828089ec23fd852d962d9b6b2a9_max_476x317.jpeg",
- "url": "property-photo/488478280/162984056/48847828089ec23fd852d962d9b6b2a9.jpeg",
- "caption": "Photo 23"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/46f724ac8/162984056/46f724ac800625839dc232e39634a223_max_476x317.jpeg",
- "url": "property-photo/46f724ac8/162984056/46f724ac800625839dc232e39634a223.jpeg",
- "caption": "Photo 26"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ceb99134e/162984056/ceb99134ed86e907ffa2f8d19f601da0_max_476x317.jpeg",
- "url": "property-photo/ceb99134e/162984056/ceb99134ed86e907ffa2f8d19f601da0.jpeg",
- "caption": "Photo 25"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/85a3d53f0/162984056/85a3d53f0b4cf5c9da5066d02b3b0890_max_476x317.jpeg",
- "url": "property-photo/85a3d53f0/162984056/85a3d53f0b4cf5c9da5066d02b3b0890.jpeg",
- "caption": "Photo 5"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/728adc458/162984056/728adc45831a8b2d10e1522496196077_max_476x317.jpeg",
- "url": "property-photo/728adc458/162984056/728adc45831a8b2d10e1522496196077.jpeg",
- "caption": "Photo 6"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5df752fe6/162984056/5df752fe6cdbe5f7d8080e253e6c7c0c_max_476x317.jpeg",
- "url": "property-photo/5df752fe6/162984056/5df752fe6cdbe5f7d8080e253e6c7c0c.jpeg",
- "caption": "Photo 8"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bd4957808/162984056/bd4957808fbddfd9ac24d952bb092a84_max_476x317.jpeg",
- "url": "property-photo/bd4957808/162984056/bd4957808fbddfd9ac24d952bb092a84.jpeg",
- "caption": "Photo 15"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b46021302/162984056/b46021302cce4bc0c4b506c42a935ef1_max_476x317.jpeg",
- "url": "property-photo/b46021302/162984056/b46021302cce4bc0c4b506c42a935ef1.jpeg",
- "caption": "Photo 20"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bbb3eaa78/162984056/bbb3eaa785a99d70cc5423628cccbc08_max_476x317.jpeg",
- "url": "property-photo/bbb3eaa78/162984056/bbb3eaa785a99d70cc5423628cccbc08.jpeg",
- "caption": "Photo 28"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c7fc6da31/162984056/c7fc6da316c92eecaeb3e563c62f7b3d_max_476x317.jpeg",
- "url": "property-photo/c7fc6da31/162984056/c7fc6da316c92eecaeb3e563c62f7b3d.jpeg",
- "caption": "Photo 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/97d0b2e93/162984056/97d0b2e93a69d5577f756a37b7425bfc_max_476x317.jpeg",
- "url": "property-photo/97d0b2e93/162984056/97d0b2e93a69d5577f756a37b7425bfc.jpeg",
- "caption": "Photo 18"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e14a9290c/162984056/e14a9290cdfe2e56fff4f6ac3df2a021_max_476x317.jpeg",
- "url": "property-photo/e14a9290c/162984056/e14a9290cdfe2e56fff4f6ac3df2a021.jpeg",
- "caption": "Photo 7"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3ab3cdf8d/162984056/3ab3cdf8d57362b888cee4f37d769bd9_max_476x317.jpeg",
- "url": "property-photo/3ab3cdf8d/162984056/3ab3cdf8d57362b888cee4f37d769bd9.jpeg",
- "caption": "Photo 27"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5ad04f664/162984056/5ad04f6649efd09a6401cbf02b24a41c_max_476x317.jpeg",
- "url": "property-photo/5ad04f664/162984056/5ad04f6649efd09a6401cbf02b24a41c.jpeg",
- "caption": "Photo 30"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/048bee57e/162984056/048bee57e21b40d94af1f325421c37c9_max_476x317.jpeg",
- "url": "property-photo/048bee57e/162984056/048bee57e21b40d94af1f325421c37c9.jpeg",
- "caption": "Photo 29"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c725f584/162984056/5c725f584f045f310627fb72c2c17089_max_476x317.jpeg",
- "url": "property-photo/5c725f584/162984056/5c725f584f045f310627fb72c2c17089.jpeg",
- "caption": "Photo 29"
- }
- ],
- "propertySubType": "Semi-Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2026-01-19T21:26:34Z"
- },
- "price": {
- "amount": 1700000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,700,000",
- "displayPriceQualifier": "Offers in Excess of"
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 103550,
- "brandPlusLogoURI": "/104k/103550/branch_rmchoice_logo_103550_0001.png",
- "contactTelephone": "020 3835 4829",
- "branchDisplayName": "Alexander David Property, London",
- "branchName": "London",
- "brandTradingName": "Alexander David Property",
- "branchLandingPageUrl": "/estate-agents/agent/Alexander-David-Property/London-103550.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-10-06T23:41:16Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/104k/103550/branch_rmchoice_logo_103550_0001.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/162984056#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=162984056",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-06-06T18:16:43Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-01-19T21:26:36Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Immaculate 6 Bedroom House",
- "htmlDescription": "Immaculate 6 Bedroom House"
- },
- {
- "order": 2,
- "description": "3000+ Square Feet",
- "htmlDescription": "3000+ Square Feet"
- },
- {
- "order": 3,
- "description": "4 Bathrooms (3 En suites)",
- "htmlDescription": "4 Bathrooms (3 En suites)"
- },
- {
- "order": 4,
- "description": "Grand Period Property",
- "htmlDescription": "Grand Period Property"
- },
- {
- "order": 5,
- "description": "Original Features Reinstated",
- "htmlDescription": "Original Features Reinstated"
- },
- {
- "order": 6,
- "description": "Overlooking Wanstead Golf Course",
- "htmlDescription": "Overlooking Wanstead Golf Course"
- },
- {
- "order": 7,
- "description": "Stunning Landscaped Rear Garden",
- "htmlDescription": "Stunning Landscaped Rear Garden"
- },
- {
- "order": 8,
- "description": "Off Street Parking for 3 Cars",
- "htmlDescription": "Off Street Parking for 3 Cars"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dee53f6e6/162984056/dee53f6e66aa12517d800a3e7c310ab2_max_476x317.jpeg",
- "url": "property-photo/dee53f6e6/162984056/dee53f6e66aa12517d800a3e7c310ab2.jpeg",
- "caption": "Photo 30"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c7f0d4374/162984056/c7f0d4374e0fcf2b89137592c49f65ec_max_476x317.jpeg",
- "url": "property-photo/c7f0d4374/162984056/c7f0d4374e0fcf2b89137592c49f65ec.jpeg",
- "caption": "Photo 31"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c379cf279/162984056/c379cf279632b634419fcdd56601e736_max_476x317.jpeg",
- "url": "property-photo/c379cf279/162984056/c379cf279632b634419fcdd56601e736.jpeg",
- "caption": "Photo 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2b5389776/162984056/2b538977624839a16fbe17588fdf0928_max_476x317.jpeg",
- "url": "property-photo/2b5389776/162984056/2b538977624839a16fbe17588fdf0928.jpeg",
- "caption": "Photo 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7f28545b1/162984056/7f28545b175195ff4acf20c2ceaf64d2_max_476x317.jpeg",
- "url": "property-photo/7f28545b1/162984056/7f28545b175195ff4acf20c2ceaf64d2.jpeg",
- "caption": "Photo 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c44663d6/162984056/8c44663d686f22eaea62dfc180c87b57_max_476x317.jpeg",
- "url": "property-photo/8c44663d6/162984056/8c44663d686f22eaea62dfc180c87b57.jpeg",
- "caption": "Photo 16"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4af2a1537/162984056/4af2a153702f9dd5bda0908780957acd_max_476x317.jpeg",
- "url": "property-photo/4af2a1537/162984056/4af2a153702f9dd5bda0908780957acd.jpeg",
- "caption": "Photo 3"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f9e789ce/162984056/6f9e789cee3e978e9e714e18dec5ce65_max_476x317.jpeg",
- "url": "property-photo/6f9e789ce/162984056/6f9e789cee3e978e9e714e18dec5ce65.jpeg",
- "caption": "Photo 19"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b03f833aa/162984056/b03f833aabdf4fc2732eabc0a48a2be8_max_476x317.jpeg",
- "url": "property-photo/b03f833aa/162984056/b03f833aabdf4fc2732eabc0a48a2be8.jpeg",
- "caption": "Photo 4"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/835db2039/162984056/835db2039985868d58e7eb7ad1fad21f_max_476x317.jpeg",
- "url": "property-photo/835db2039/162984056/835db2039985868d58e7eb7ad1fad21f.jpeg",
- "caption": "Photo 17"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/49173e098/162984056/49173e098947f3d15e6d70a5bc31ebd8_max_476x317.jpeg",
- "url": "property-photo/49173e098/162984056/49173e098947f3d15e6d70a5bc31ebd8.jpeg",
- "caption": "Photo 24"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b1c55ae36/162984056/b1c55ae36c3c6754cb55f1f49f05f727_max_476x317.jpeg",
- "url": "property-photo/b1c55ae36/162984056/b1c55ae36c3c6754cb55f1f49f05f727.jpeg",
- "caption": "Photo 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e942045be/162984056/e942045be6bb58366a24584b1bfffdd1_max_476x317.jpeg",
- "url": "property-photo/e942045be/162984056/e942045be6bb58366a24584b1bfffdd1.jpeg",
- "caption": "Photo 9"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/daf990af7/162984056/daf990af7041ebf2668e0d3977abe077_max_476x317.jpeg",
- "url": "property-photo/daf990af7/162984056/daf990af7041ebf2668e0d3977abe077.jpeg",
- "caption": "Photo 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/488478280/162984056/48847828089ec23fd852d962d9b6b2a9_max_476x317.jpeg",
- "url": "property-photo/488478280/162984056/48847828089ec23fd852d962d9b6b2a9.jpeg",
- "caption": "Photo 23"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/46f724ac8/162984056/46f724ac800625839dc232e39634a223_max_476x317.jpeg",
- "url": "property-photo/46f724ac8/162984056/46f724ac800625839dc232e39634a223.jpeg",
- "caption": "Photo 26"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ceb99134e/162984056/ceb99134ed86e907ffa2f8d19f601da0_max_476x317.jpeg",
- "url": "property-photo/ceb99134e/162984056/ceb99134ed86e907ffa2f8d19f601da0.jpeg",
- "caption": "Photo 25"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/85a3d53f0/162984056/85a3d53f0b4cf5c9da5066d02b3b0890_max_476x317.jpeg",
- "url": "property-photo/85a3d53f0/162984056/85a3d53f0b4cf5c9da5066d02b3b0890.jpeg",
- "caption": "Photo 5"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/728adc458/162984056/728adc45831a8b2d10e1522496196077_max_476x317.jpeg",
- "url": "property-photo/728adc458/162984056/728adc45831a8b2d10e1522496196077.jpeg",
- "caption": "Photo 6"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5df752fe6/162984056/5df752fe6cdbe5f7d8080e253e6c7c0c_max_476x317.jpeg",
- "url": "property-photo/5df752fe6/162984056/5df752fe6cdbe5f7d8080e253e6c7c0c.jpeg",
- "caption": "Photo 8"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bd4957808/162984056/bd4957808fbddfd9ac24d952bb092a84_max_476x317.jpeg",
- "url": "property-photo/bd4957808/162984056/bd4957808fbddfd9ac24d952bb092a84.jpeg",
- "caption": "Photo 15"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b46021302/162984056/b46021302cce4bc0c4b506c42a935ef1_max_476x317.jpeg",
- "url": "property-photo/b46021302/162984056/b46021302cce4bc0c4b506c42a935ef1.jpeg",
- "caption": "Photo 20"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bbb3eaa78/162984056/bbb3eaa785a99d70cc5423628cccbc08_max_476x317.jpeg",
- "url": "property-photo/bbb3eaa78/162984056/bbb3eaa785a99d70cc5423628cccbc08.jpeg",
- "caption": "Photo 28"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c7fc6da31/162984056/c7fc6da316c92eecaeb3e563c62f7b3d_max_476x317.jpeg",
- "url": "property-photo/c7fc6da31/162984056/c7fc6da316c92eecaeb3e563c62f7b3d.jpeg",
- "caption": "Photo 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/97d0b2e93/162984056/97d0b2e93a69d5577f756a37b7425bfc_max_476x317.jpeg",
- "url": "property-photo/97d0b2e93/162984056/97d0b2e93a69d5577f756a37b7425bfc.jpeg",
- "caption": "Photo 18"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e14a9290c/162984056/e14a9290cdfe2e56fff4f6ac3df2a021_max_476x317.jpeg",
- "url": "property-photo/e14a9290c/162984056/e14a9290cdfe2e56fff4f6ac3df2a021.jpeg",
- "caption": "Photo 7"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3ab3cdf8d/162984056/3ab3cdf8d57362b888cee4f37d769bd9_max_476x317.jpeg",
- "url": "property-photo/3ab3cdf8d/162984056/3ab3cdf8d57362b888cee4f37d769bd9.jpeg",
- "caption": "Photo 27"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5ad04f664/162984056/5ad04f6649efd09a6401cbf02b24a41c_max_476x317.jpeg",
- "url": "property-photo/5ad04f664/162984056/5ad04f6649efd09a6401cbf02b24a41c.jpeg",
- "caption": "Photo 30"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/048bee57e/162984056/048bee57e21b40d94af1f325421c37c9_max_476x317.jpeg",
- "url": "property-photo/048bee57e/162984056/048bee57e21b40d94af1f325421c37c9.jpeg",
- "caption": "Photo 29"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c725f584/162984056/5c725f584f045f310627fb72c2c17089_max_476x317.jpeg",
- "url": "property-photo/5c725f584/162984056/5c725f584f045f310627fb72c2c17089.jpeg",
- "caption": "Photo 29"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dee53f6e6/162984056/dee53f6e66aa12517d800a3e7c310ab2_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dee53f6e6/162984056/dee53f6e66aa12517d800a3e7c310ab2_max_296x197.jpeg"
- },
- "formattedBranchName": " by Alexander David Property, London",
- "addedOrReduced": "Reduced on 19/01/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "6 bedroom semi-detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 168625394,
- "bedrooms": 6,
- "bathrooms": 3,
- "numberOfImages": 29,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Desirable Location - Gated Off Road Parking - Garden With Versatile Outbuilding - Excellent Transport Links - Multiple Reception Rooms - Kitchen With Adjoining Conservatory - Six Bedrooms, One With En Suite - Contemporary Family Shower Room - Basement - Over 3,000 Sq Ft Of Living Space",
- "displayAddress": "Leicester Road, Wanstead, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.581104, "longitude": 0.030615 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/49cf74d78/168625394/49cf74d7852e3d681c2a7e1f269001a4_max_476x317.jpeg",
- "url": "property-photo/49cf74d78/168625394/49cf74d7852e3d681c2a7e1f269001a4.jpeg",
- "caption": "Leicester-74.2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc4f5d1c4/168625394/bc4f5d1c4e213f738e0ee55c4e9c198c_max_476x317.jpeg",
- "url": "property-photo/bc4f5d1c4/168625394/bc4f5d1c4e213f738e0ee55c4e9c198c.jpeg",
- "caption": "Leicester-40.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fac9de001/168625394/fac9de001fa50137b41d8ccabb220ff3_max_476x317.jpeg",
- "url": "property-photo/fac9de001/168625394/fac9de001fa50137b41d8ccabb220ff3.jpeg",
- "caption": "Leicester-41.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0fbba92ab/168625394/0fbba92abaf421e8348264a46fd144fb_max_476x317.jpeg",
- "url": "property-photo/0fbba92ab/168625394/0fbba92abaf421e8348264a46fd144fb.jpeg",
- "caption": "Leicester-43.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/edb62fc5f/168625394/edb62fc5fa25cec1875896e3aaf4063c_max_476x317.jpeg",
- "url": "property-photo/edb62fc5f/168625394/edb62fc5fa25cec1875896e3aaf4063c.jpeg",
- "caption": "Leicester-44.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a6c8cf668/168625394/a6c8cf6684cb913b7065638314537c21_max_476x317.jpeg",
- "url": "property-photo/a6c8cf668/168625394/a6c8cf6684cb913b7065638314537c21.jpeg",
- "caption": "Leicester-45.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e91a3ca84/168625394/e91a3ca846485ee93468f2426006a40e_max_476x317.jpeg",
- "url": "property-photo/e91a3ca84/168625394/e91a3ca846485ee93468f2426006a40e.jpeg",
- "caption": "Leicester-46.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0bb57a07c/168625394/0bb57a07c07a0ee97213d12808d31339_max_476x317.jpeg",
- "url": "property-photo/0bb57a07c/168625394/0bb57a07c07a0ee97213d12808d31339.jpeg",
- "caption": "Leicester-49.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0dbe847b7/168625394/0dbe847b709bffb7d1fd1a4415cc5370_max_476x317.jpeg",
- "url": "property-photo/0dbe847b7/168625394/0dbe847b709bffb7d1fd1a4415cc5370.jpeg",
- "caption": "Leicester-50.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7c83ad04/168625394/b7c83ad0490108f3d6e878913228f664_max_476x317.jpeg",
- "url": "property-photo/b7c83ad04/168625394/b7c83ad0490108f3d6e878913228f664.jpeg",
- "caption": "Leicester-51.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb025ad25/168625394/cb025ad25fa22e034f054e89e3381ab7_max_476x317.jpeg",
- "url": "property-photo/cb025ad25/168625394/cb025ad25fa22e034f054e89e3381ab7.jpeg",
- "caption": "Leicester-52.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f40ef5229/168625394/f40ef5229525feea4b084ca7a807aed6_max_476x317.jpeg",
- "url": "property-photo/f40ef5229/168625394/f40ef5229525feea4b084ca7a807aed6.jpeg",
- "caption": "Leicester-53.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/16d384b86/168625394/16d384b866f71bdd9442f7c8239379c3_max_476x317.jpeg",
- "url": "property-photo/16d384b86/168625394/16d384b866f71bdd9442f7c8239379c3.jpeg",
- "caption": "Leicester-54.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/60c11dd92/168625394/60c11dd921138e5b1225c90e620f5dc7_max_476x317.jpeg",
- "url": "property-photo/60c11dd92/168625394/60c11dd921138e5b1225c90e620f5dc7.jpeg",
- "caption": "Leicester-55.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5d371c451/168625394/5d371c451eaef2fd0c20bba694adf06a_max_476x317.jpeg",
- "url": "property-photo/5d371c451/168625394/5d371c451eaef2fd0c20bba694adf06a.jpeg",
- "caption": "Leicester-56.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2a14d4c87/168625394/2a14d4c8701dd64b77c8dc5c434010b6_max_476x317.jpeg",
- "url": "property-photo/2a14d4c87/168625394/2a14d4c8701dd64b77c8dc5c434010b6.jpeg",
- "caption": "Leicester-57.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/84145fba5/168625394/84145fba5cd5d5ff00752f600a3faacc_max_476x317.jpeg",
- "url": "property-photo/84145fba5/168625394/84145fba5cd5d5ff00752f600a3faacc.jpeg",
- "caption": "Leicester-58.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4ec35628c/168625394/4ec35628cade8254fc34bb63319597fe_max_476x317.jpeg",
- "url": "property-photo/4ec35628c/168625394/4ec35628cade8254fc34bb63319597fe.jpeg",
- "caption": "Leicester-61.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/089240274/168625394/0892402745bc6d19a0e89b59bd38ce26_max_476x317.jpeg",
- "url": "property-photo/089240274/168625394/0892402745bc6d19a0e89b59bd38ce26.jpeg",
- "caption": "Leicester-62.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e1d843a6e/168625394/e1d843a6e016cf6ddd738ca1f495d9c2_max_476x317.jpeg",
- "url": "property-photo/e1d843a6e/168625394/e1d843a6e016cf6ddd738ca1f495d9c2.jpeg",
- "caption": "Leicester-65.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/44769bee3/168625394/44769bee3538e38ec47f44e75c4d6088_max_476x317.jpeg",
- "url": "property-photo/44769bee3/168625394/44769bee3538e38ec47f44e75c4d6088.jpeg",
- "caption": "Leicester-66.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7850a4936/168625394/7850a493635865e9ccb0aff42d86be04_max_476x317.jpeg",
- "url": "property-photo/7850a4936/168625394/7850a493635865e9ccb0aff42d86be04.jpeg",
- "caption": "Leicester-69.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0ed60def3/168625394/0ed60def317b8433e85387c0e2c82626_max_476x317.jpeg",
- "url": "property-photo/0ed60def3/168625394/0ed60def317b8433e85387c0e2c82626.jpeg",
- "caption": "Leicester-70.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ce06ecb23/168625394/ce06ecb23f906791a55d9ab80f5baea3_max_476x317.jpeg",
- "url": "property-photo/ce06ecb23/168625394/ce06ecb23f906791a55d9ab80f5baea3.jpeg",
- "caption": "Leicester-71.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0611c13fc/168625394/0611c13fc0c24e878885d882bed19edd_max_476x317.jpeg",
- "url": "property-photo/0611c13fc/168625394/0611c13fc0c24e878885d882bed19edd.jpeg",
- "caption": "Leicester-72.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/00da5ac66/168625394/00da5ac66276db69e0ad74f38819e671_max_476x317.jpeg",
- "url": "property-photo/00da5ac66/168625394/00da5ac66276db69e0ad74f38819e671.jpeg",
- "caption": "Leicester"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4865ca190/168625394/4865ca190a065b9fff9e8fcb635d7b4b_max_476x317.jpeg",
- "url": "property-photo/4865ca190/168625394/4865ca190a065b9fff9e8fcb635d7b4b.jpeg",
- "caption": "Leicester-75.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/427a05a41/168625394/427a05a4134b912039a19c4b0a138766_max_476x317.jpeg",
- "url": "property-photo/427a05a41/168625394/427a05a4134b912039a19c4b0a138766.jpeg",
- "caption": "Leicester-76.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1aaaba261/168625394/1aaaba261a36c0cbdb08e5c18650ffb4_max_476x317.jpeg",
- "url": "property-photo/1aaaba261/168625394/1aaaba261a36c0cbdb08e5c18650ffb4.jpeg",
- "caption": "Leicester-77.1.jpg"
- }
- ],
- "propertySubType": "Semi-Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2025-11-07T10:40:59Z"
- },
- "price": {
- "amount": 1700000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,700,000",
- "displayPriceQualifier": "Offers Over"
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 273152,
- "brandPlusLogoURI": "/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "contactTelephone": "020 8138 0636",
- "branchDisplayName": "Durden & Hunt, Wanstead & East London",
- "branchName": "Wanstead & East London",
- "brandTradingName": "Durden & Hunt",
- "branchLandingPageUrl": "/estate-agents/agent/Durden-and-Hunt/Wanstead-and-East-London-273152.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-01T10:42:02Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "primaryBrandColour": "#000000"
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "3,265 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/168625394#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=168625394",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-10-27T08:36:36Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2025-11-07T10:41:01Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Desirable Location",
- "htmlDescription": "Desirable Location"
- },
- {
- "order": 2,
- "description": "Gated Off Road Parking",
- "htmlDescription": "Gated Off Road Parking"
- },
- {
- "order": 3,
- "description": "Garden With Versatile Outbuilding",
- "htmlDescription": "Garden With Versatile Outbuilding"
- },
- {
- "order": 4,
- "description": "Excellent Transport Links",
- "htmlDescription": "Excellent Transport Links"
- },
- {
- "order": 5,
- "description": "Multiple Reception Rooms",
- "htmlDescription": "Multiple Reception Rooms"
- },
- {
- "order": 6,
- "description": "Kitchen With Adjoining Conservatory",
- "htmlDescription": "Kitchen With Adjoining Conservatory"
- },
- {
- "order": 7,
- "description": "Six Bedrooms, One With En Suite",
- "htmlDescription": "Six Bedrooms, One With En Suite"
- },
- {
- "order": 8,
- "description": "Contemporary Family Shower Room",
- "htmlDescription": "Contemporary Family Shower Room"
- },
- {
- "order": 9,
- "description": "Basement",
- "htmlDescription": "Basement"
- },
- {
- "order": 10,
- "description": "Over 3,000 Sq Ft Of Living Space",
- "htmlDescription": "Over 3,000 Sq Ft Of Living Space"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/49cf74d78/168625394/49cf74d7852e3d681c2a7e1f269001a4_max_476x317.jpeg",
- "url": "property-photo/49cf74d78/168625394/49cf74d7852e3d681c2a7e1f269001a4.jpeg",
- "caption": "Leicester-74.2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc4f5d1c4/168625394/bc4f5d1c4e213f738e0ee55c4e9c198c_max_476x317.jpeg",
- "url": "property-photo/bc4f5d1c4/168625394/bc4f5d1c4e213f738e0ee55c4e9c198c.jpeg",
- "caption": "Leicester-40.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fac9de001/168625394/fac9de001fa50137b41d8ccabb220ff3_max_476x317.jpeg",
- "url": "property-photo/fac9de001/168625394/fac9de001fa50137b41d8ccabb220ff3.jpeg",
- "caption": "Leicester-41.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0fbba92ab/168625394/0fbba92abaf421e8348264a46fd144fb_max_476x317.jpeg",
- "url": "property-photo/0fbba92ab/168625394/0fbba92abaf421e8348264a46fd144fb.jpeg",
- "caption": "Leicester-43.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/edb62fc5f/168625394/edb62fc5fa25cec1875896e3aaf4063c_max_476x317.jpeg",
- "url": "property-photo/edb62fc5f/168625394/edb62fc5fa25cec1875896e3aaf4063c.jpeg",
- "caption": "Leicester-44.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a6c8cf668/168625394/a6c8cf6684cb913b7065638314537c21_max_476x317.jpeg",
- "url": "property-photo/a6c8cf668/168625394/a6c8cf6684cb913b7065638314537c21.jpeg",
- "caption": "Leicester-45.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e91a3ca84/168625394/e91a3ca846485ee93468f2426006a40e_max_476x317.jpeg",
- "url": "property-photo/e91a3ca84/168625394/e91a3ca846485ee93468f2426006a40e.jpeg",
- "caption": "Leicester-46.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0bb57a07c/168625394/0bb57a07c07a0ee97213d12808d31339_max_476x317.jpeg",
- "url": "property-photo/0bb57a07c/168625394/0bb57a07c07a0ee97213d12808d31339.jpeg",
- "caption": "Leicester-49.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0dbe847b7/168625394/0dbe847b709bffb7d1fd1a4415cc5370_max_476x317.jpeg",
- "url": "property-photo/0dbe847b7/168625394/0dbe847b709bffb7d1fd1a4415cc5370.jpeg",
- "caption": "Leicester-50.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7c83ad04/168625394/b7c83ad0490108f3d6e878913228f664_max_476x317.jpeg",
- "url": "property-photo/b7c83ad04/168625394/b7c83ad0490108f3d6e878913228f664.jpeg",
- "caption": "Leicester-51.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb025ad25/168625394/cb025ad25fa22e034f054e89e3381ab7_max_476x317.jpeg",
- "url": "property-photo/cb025ad25/168625394/cb025ad25fa22e034f054e89e3381ab7.jpeg",
- "caption": "Leicester-52.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f40ef5229/168625394/f40ef5229525feea4b084ca7a807aed6_max_476x317.jpeg",
- "url": "property-photo/f40ef5229/168625394/f40ef5229525feea4b084ca7a807aed6.jpeg",
- "caption": "Leicester-53.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/16d384b86/168625394/16d384b866f71bdd9442f7c8239379c3_max_476x317.jpeg",
- "url": "property-photo/16d384b86/168625394/16d384b866f71bdd9442f7c8239379c3.jpeg",
- "caption": "Leicester-54.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/60c11dd92/168625394/60c11dd921138e5b1225c90e620f5dc7_max_476x317.jpeg",
- "url": "property-photo/60c11dd92/168625394/60c11dd921138e5b1225c90e620f5dc7.jpeg",
- "caption": "Leicester-55.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5d371c451/168625394/5d371c451eaef2fd0c20bba694adf06a_max_476x317.jpeg",
- "url": "property-photo/5d371c451/168625394/5d371c451eaef2fd0c20bba694adf06a.jpeg",
- "caption": "Leicester-56.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2a14d4c87/168625394/2a14d4c8701dd64b77c8dc5c434010b6_max_476x317.jpeg",
- "url": "property-photo/2a14d4c87/168625394/2a14d4c8701dd64b77c8dc5c434010b6.jpeg",
- "caption": "Leicester-57.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/84145fba5/168625394/84145fba5cd5d5ff00752f600a3faacc_max_476x317.jpeg",
- "url": "property-photo/84145fba5/168625394/84145fba5cd5d5ff00752f600a3faacc.jpeg",
- "caption": "Leicester-58.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4ec35628c/168625394/4ec35628cade8254fc34bb63319597fe_max_476x317.jpeg",
- "url": "property-photo/4ec35628c/168625394/4ec35628cade8254fc34bb63319597fe.jpeg",
- "caption": "Leicester-61.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/089240274/168625394/0892402745bc6d19a0e89b59bd38ce26_max_476x317.jpeg",
- "url": "property-photo/089240274/168625394/0892402745bc6d19a0e89b59bd38ce26.jpeg",
- "caption": "Leicester-62.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e1d843a6e/168625394/e1d843a6e016cf6ddd738ca1f495d9c2_max_476x317.jpeg",
- "url": "property-photo/e1d843a6e/168625394/e1d843a6e016cf6ddd738ca1f495d9c2.jpeg",
- "caption": "Leicester-65.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/44769bee3/168625394/44769bee3538e38ec47f44e75c4d6088_max_476x317.jpeg",
- "url": "property-photo/44769bee3/168625394/44769bee3538e38ec47f44e75c4d6088.jpeg",
- "caption": "Leicester-66.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7850a4936/168625394/7850a493635865e9ccb0aff42d86be04_max_476x317.jpeg",
- "url": "property-photo/7850a4936/168625394/7850a493635865e9ccb0aff42d86be04.jpeg",
- "caption": "Leicester-69.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0ed60def3/168625394/0ed60def317b8433e85387c0e2c82626_max_476x317.jpeg",
- "url": "property-photo/0ed60def3/168625394/0ed60def317b8433e85387c0e2c82626.jpeg",
- "caption": "Leicester-70.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ce06ecb23/168625394/ce06ecb23f906791a55d9ab80f5baea3_max_476x317.jpeg",
- "url": "property-photo/ce06ecb23/168625394/ce06ecb23f906791a55d9ab80f5baea3.jpeg",
- "caption": "Leicester-71.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0611c13fc/168625394/0611c13fc0c24e878885d882bed19edd_max_476x317.jpeg",
- "url": "property-photo/0611c13fc/168625394/0611c13fc0c24e878885d882bed19edd.jpeg",
- "caption": "Leicester-72.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/00da5ac66/168625394/00da5ac66276db69e0ad74f38819e671_max_476x317.jpeg",
- "url": "property-photo/00da5ac66/168625394/00da5ac66276db69e0ad74f38819e671.jpeg",
- "caption": "Leicester"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4865ca190/168625394/4865ca190a065b9fff9e8fcb635d7b4b_max_476x317.jpeg",
- "url": "property-photo/4865ca190/168625394/4865ca190a065b9fff9e8fcb635d7b4b.jpeg",
- "caption": "Leicester-75.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/427a05a41/168625394/427a05a4134b912039a19c4b0a138766_max_476x317.jpeg",
- "url": "property-photo/427a05a41/168625394/427a05a4134b912039a19c4b0a138766.jpeg",
- "caption": "Leicester-76.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1aaaba261/168625394/1aaaba261a36c0cbdb08e5c18650ffb4_max_476x317.jpeg",
- "url": "property-photo/1aaaba261/168625394/1aaaba261a36c0cbdb08e5c18650ffb4.jpeg",
- "caption": "Leicester-77.1.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/49cf74d78/168625394/49cf74d7852e3d681c2a7e1f269001a4_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/49cf74d78/168625394/49cf74d7852e3d681c2a7e1f269001a4_max_296x197.jpeg"
- },
- "formattedBranchName": " by Durden & Hunt, Wanstead & East London",
- "addedOrReduced": "Reduced on 07/11/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "6 bedroom semi-detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 170642753,
- "bedrooms": 4,
- "bathrooms": 1,
- "numberOfImages": 33,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Forest Close, Wanstead - 2,018 sq ft | 4 Bedrooms | Detached | 46ft East-Facing Garden | Off-Street Parking for 3 Tucked away on a peaceful cul-de-sac just 0.2 miles from Snaresbrook Central Line Station and Wanstead High Street, this stunning detached 1930s family home combines timeless charact...",
- "displayAddress": "Forest Close",
- "countryCode": "GB",
- "location": { "latitude": 51.5796, "longitude": 0.01923 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3dce5fac3/170642753/3dce5fac31e24518d5be635ebb491e50_max_476x317.jpeg",
- "url": "property-photo/3dce5fac3/170642753/3dce5fac31e24518d5be635ebb491e50.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/47cf1320e/170642753/47cf1320edd363694d6c2bc1bd58d10d_max_476x317.jpeg",
- "url": "property-photo/47cf1320e/170642753/47cf1320edd363694d6c2bc1bd58d10d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/673a7a6a4/170642753/673a7a6a461bcd3b37804983b3f40db4_max_476x317.jpeg",
- "url": "property-photo/673a7a6a4/170642753/673a7a6a461bcd3b37804983b3f40db4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/94d21b574/170642753/94d21b57433f2c3fe69cc01990d909df_max_476x317.jpeg",
- "url": "property-photo/94d21b574/170642753/94d21b57433f2c3fe69cc01990d909df.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5683e2ae6/170642753/5683e2ae6384b63fbf3d57d84ed5edbd_max_476x317.jpeg",
- "url": "property-photo/5683e2ae6/170642753/5683e2ae6384b63fbf3d57d84ed5edbd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b86da4026/170642753/b86da4026149718c6caac36d1a9a9291_max_476x317.jpeg",
- "url": "property-photo/b86da4026/170642753/b86da4026149718c6caac36d1a9a9291.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/11b55c86c/170642753/11b55c86c439fbdc2ee8eb5a78d208d7_max_476x317.jpeg",
- "url": "property-photo/11b55c86c/170642753/11b55c86c439fbdc2ee8eb5a78d208d7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7a0374e47/170642753/7a0374e4728e18ed765529b374048f2d_max_476x317.jpeg",
- "url": "property-photo/7a0374e47/170642753/7a0374e4728e18ed765529b374048f2d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/212e4721f/170642753/212e4721fbf5b662df3ccd3d9e065243_max_476x317.jpeg",
- "url": "property-photo/212e4721f/170642753/212e4721fbf5b662df3ccd3d9e065243.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1b8a60622/170642753/1b8a606220dab1b69dd2673d6e6ad377_max_476x317.jpeg",
- "url": "property-photo/1b8a60622/170642753/1b8a606220dab1b69dd2673d6e6ad377.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1527a94d7/170642753/1527a94d793d1931eb3404b83ee2d210_max_476x317.jpeg",
- "url": "property-photo/1527a94d7/170642753/1527a94d793d1931eb3404b83ee2d210.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e8d44c2d6/170642753/e8d44c2d60f0442786ee38f284a12865_max_476x317.jpeg",
- "url": "property-photo/e8d44c2d6/170642753/e8d44c2d60f0442786ee38f284a12865.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4f0740232/170642753/4f0740232b8a0336cb09cf698484f0b2_max_476x317.jpeg",
- "url": "property-photo/4f0740232/170642753/4f0740232b8a0336cb09cf698484f0b2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a1cdbd6b4/170642753/a1cdbd6b4c5c829f8821d851ff409b48_max_476x317.jpeg",
- "url": "property-photo/a1cdbd6b4/170642753/a1cdbd6b4c5c829f8821d851ff409b48.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2515a0de8/170642753/2515a0de8dbc0b94782746900d4b6361_max_476x317.jpeg",
- "url": "property-photo/2515a0de8/170642753/2515a0de8dbc0b94782746900d4b6361.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f019db27/170642753/8f019db27bd462d540b81f0de2ee0166_max_476x317.jpeg",
- "url": "property-photo/8f019db27/170642753/8f019db27bd462d540b81f0de2ee0166.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db9c6e9ad/170642753/db9c6e9ad09f63d82f9cc7244452e9cb_max_476x317.jpeg",
- "url": "property-photo/db9c6e9ad/170642753/db9c6e9ad09f63d82f9cc7244452e9cb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e3011a313/170642753/e3011a3137f6d87cf91371b2fd3c6a26_max_476x317.jpeg",
- "url": "property-photo/e3011a313/170642753/e3011a3137f6d87cf91371b2fd3c6a26.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e4a80a8f9/170642753/e4a80a8f9b750c87dc8f5669ed8389cb_max_476x317.jpeg",
- "url": "property-photo/e4a80a8f9/170642753/e4a80a8f9b750c87dc8f5669ed8389cb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c03096a45/170642753/c03096a45a74d1eb9402ba6ec6b1a7c2_max_476x317.jpeg",
- "url": "property-photo/c03096a45/170642753/c03096a45a74d1eb9402ba6ec6b1a7c2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4dd575c85/170642753/4dd575c853e38a5241256c5beab68918_max_476x317.jpeg",
- "url": "property-photo/4dd575c85/170642753/4dd575c853e38a5241256c5beab68918.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1f7bfc894/170642753/1f7bfc894400c1e6a2a6a93f9fc5760e_max_476x317.jpeg",
- "url": "property-photo/1f7bfc894/170642753/1f7bfc894400c1e6a2a6a93f9fc5760e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/025d8b076/170642753/025d8b0769e582dea7f7110699cc2a27_max_476x317.jpeg",
- "url": "property-photo/025d8b076/170642753/025d8b0769e582dea7f7110699cc2a27.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54d6d14f0/170642753/54d6d14f05516a736d8f0d7a3dbdb340_max_476x317.jpeg",
- "url": "property-photo/54d6d14f0/170642753/54d6d14f05516a736d8f0d7a3dbdb340.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f57b6e130/170642753/f57b6e130a79ee0f4063e64343d07c5f_max_476x317.jpeg",
- "url": "property-photo/f57b6e130/170642753/f57b6e130a79ee0f4063e64343d07c5f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8ce111cad/170642753/8ce111cad1e3401c33fc07e54eadc5a6_max_476x317.jpeg",
- "url": "property-photo/8ce111cad/170642753/8ce111cad1e3401c33fc07e54eadc5a6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6eafbac34/170642753/6eafbac34f3eda7afac45964963dc842_max_476x317.jpeg",
- "url": "property-photo/6eafbac34/170642753/6eafbac34f3eda7afac45964963dc842.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/81925bd5d/170642753/81925bd5d187ad593efd3f15d685a0fc_max_476x317.jpeg",
- "url": "property-photo/81925bd5d/170642753/81925bd5d187ad593efd3f15d685a0fc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/67ec73dc4/170642753/67ec73dc48ae2dc415beb59248f0114d_max_476x317.jpeg",
- "url": "property-photo/67ec73dc4/170642753/67ec73dc48ae2dc415beb59248f0114d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d4da2845d/170642753/d4da2845de19e4cef63d4c2f082f38b7_max_476x317.jpeg",
- "url": "property-photo/d4da2845d/170642753/d4da2845de19e4cef63d4c2f082f38b7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/42010faa5/170642753/42010faa54dbcfd3880ec76c209eadfa_max_476x317.jpeg",
- "url": "property-photo/42010faa5/170642753/42010faa54dbcfd3880ec76c209eadfa.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/698870222/170642753/69887022287247a7ad958c156d96398e_max_476x317.jpeg",
- "url": "property-photo/698870222/170642753/69887022287247a7ad958c156d96398e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ea2b88c8d/170642753/ea2b88c8df715c3325229fe0038b1b70_max_476x317.jpeg",
- "url": "property-photo/ea2b88c8d/170642753/ea2b88c8df715c3325229fe0038b1b70.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-12-26T12:42:04Z"
- },
- "price": {
- "amount": 1650000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£1,650,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": true,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 45525,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_80819_0001.jpeg",
- "contactTelephone": "020 3910 6305",
- "branchDisplayName": "Martin & Co, Wanstead",
- "branchName": "Wanstead",
- "brandTradingName": "Martin & Co",
- "branchLandingPageUrl": "/estate-agents/agent/Martin-and-Co/Wanstead-45525.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-12T13:43:02Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_80819_0001.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": {
- "productLabelText": "Premium Listing",
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/170642753#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=170642753",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-12-26T12:36:45Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-13T03:37:43Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Detached",
- "htmlDescription": "Detached"
- },
- {
- "order": 2,
- "description": "Off Street Parking",
- "htmlDescription": "Off Street Parking"
- },
- {
- "order": 3,
- "description": "East facing Garden",
- "htmlDescription": "East facing Garden"
- },
- {
- "order": 4,
- "description": "Cul-de-sac location",
- "htmlDescription": "Cul-de-sac location "
- },
- {
- "order": 5,
- "description": "Close to high street and station",
- "htmlDescription": "Close to high street and station "
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3dce5fac3/170642753/3dce5fac31e24518d5be635ebb491e50_max_476x317.jpeg",
- "url": "property-photo/3dce5fac3/170642753/3dce5fac31e24518d5be635ebb491e50.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/47cf1320e/170642753/47cf1320edd363694d6c2bc1bd58d10d_max_476x317.jpeg",
- "url": "property-photo/47cf1320e/170642753/47cf1320edd363694d6c2bc1bd58d10d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/673a7a6a4/170642753/673a7a6a461bcd3b37804983b3f40db4_max_476x317.jpeg",
- "url": "property-photo/673a7a6a4/170642753/673a7a6a461bcd3b37804983b3f40db4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/94d21b574/170642753/94d21b57433f2c3fe69cc01990d909df_max_476x317.jpeg",
- "url": "property-photo/94d21b574/170642753/94d21b57433f2c3fe69cc01990d909df.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5683e2ae6/170642753/5683e2ae6384b63fbf3d57d84ed5edbd_max_476x317.jpeg",
- "url": "property-photo/5683e2ae6/170642753/5683e2ae6384b63fbf3d57d84ed5edbd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b86da4026/170642753/b86da4026149718c6caac36d1a9a9291_max_476x317.jpeg",
- "url": "property-photo/b86da4026/170642753/b86da4026149718c6caac36d1a9a9291.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/11b55c86c/170642753/11b55c86c439fbdc2ee8eb5a78d208d7_max_476x317.jpeg",
- "url": "property-photo/11b55c86c/170642753/11b55c86c439fbdc2ee8eb5a78d208d7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7a0374e47/170642753/7a0374e4728e18ed765529b374048f2d_max_476x317.jpeg",
- "url": "property-photo/7a0374e47/170642753/7a0374e4728e18ed765529b374048f2d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/212e4721f/170642753/212e4721fbf5b662df3ccd3d9e065243_max_476x317.jpeg",
- "url": "property-photo/212e4721f/170642753/212e4721fbf5b662df3ccd3d9e065243.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1b8a60622/170642753/1b8a606220dab1b69dd2673d6e6ad377_max_476x317.jpeg",
- "url": "property-photo/1b8a60622/170642753/1b8a606220dab1b69dd2673d6e6ad377.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1527a94d7/170642753/1527a94d793d1931eb3404b83ee2d210_max_476x317.jpeg",
- "url": "property-photo/1527a94d7/170642753/1527a94d793d1931eb3404b83ee2d210.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e8d44c2d6/170642753/e8d44c2d60f0442786ee38f284a12865_max_476x317.jpeg",
- "url": "property-photo/e8d44c2d6/170642753/e8d44c2d60f0442786ee38f284a12865.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4f0740232/170642753/4f0740232b8a0336cb09cf698484f0b2_max_476x317.jpeg",
- "url": "property-photo/4f0740232/170642753/4f0740232b8a0336cb09cf698484f0b2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a1cdbd6b4/170642753/a1cdbd6b4c5c829f8821d851ff409b48_max_476x317.jpeg",
- "url": "property-photo/a1cdbd6b4/170642753/a1cdbd6b4c5c829f8821d851ff409b48.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2515a0de8/170642753/2515a0de8dbc0b94782746900d4b6361_max_476x317.jpeg",
- "url": "property-photo/2515a0de8/170642753/2515a0de8dbc0b94782746900d4b6361.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f019db27/170642753/8f019db27bd462d540b81f0de2ee0166_max_476x317.jpeg",
- "url": "property-photo/8f019db27/170642753/8f019db27bd462d540b81f0de2ee0166.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db9c6e9ad/170642753/db9c6e9ad09f63d82f9cc7244452e9cb_max_476x317.jpeg",
- "url": "property-photo/db9c6e9ad/170642753/db9c6e9ad09f63d82f9cc7244452e9cb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e3011a313/170642753/e3011a3137f6d87cf91371b2fd3c6a26_max_476x317.jpeg",
- "url": "property-photo/e3011a313/170642753/e3011a3137f6d87cf91371b2fd3c6a26.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e4a80a8f9/170642753/e4a80a8f9b750c87dc8f5669ed8389cb_max_476x317.jpeg",
- "url": "property-photo/e4a80a8f9/170642753/e4a80a8f9b750c87dc8f5669ed8389cb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c03096a45/170642753/c03096a45a74d1eb9402ba6ec6b1a7c2_max_476x317.jpeg",
- "url": "property-photo/c03096a45/170642753/c03096a45a74d1eb9402ba6ec6b1a7c2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4dd575c85/170642753/4dd575c853e38a5241256c5beab68918_max_476x317.jpeg",
- "url": "property-photo/4dd575c85/170642753/4dd575c853e38a5241256c5beab68918.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1f7bfc894/170642753/1f7bfc894400c1e6a2a6a93f9fc5760e_max_476x317.jpeg",
- "url": "property-photo/1f7bfc894/170642753/1f7bfc894400c1e6a2a6a93f9fc5760e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/025d8b076/170642753/025d8b0769e582dea7f7110699cc2a27_max_476x317.jpeg",
- "url": "property-photo/025d8b076/170642753/025d8b0769e582dea7f7110699cc2a27.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54d6d14f0/170642753/54d6d14f05516a736d8f0d7a3dbdb340_max_476x317.jpeg",
- "url": "property-photo/54d6d14f0/170642753/54d6d14f05516a736d8f0d7a3dbdb340.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f57b6e130/170642753/f57b6e130a79ee0f4063e64343d07c5f_max_476x317.jpeg",
- "url": "property-photo/f57b6e130/170642753/f57b6e130a79ee0f4063e64343d07c5f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8ce111cad/170642753/8ce111cad1e3401c33fc07e54eadc5a6_max_476x317.jpeg",
- "url": "property-photo/8ce111cad/170642753/8ce111cad1e3401c33fc07e54eadc5a6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6eafbac34/170642753/6eafbac34f3eda7afac45964963dc842_max_476x317.jpeg",
- "url": "property-photo/6eafbac34/170642753/6eafbac34f3eda7afac45964963dc842.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/81925bd5d/170642753/81925bd5d187ad593efd3f15d685a0fc_max_476x317.jpeg",
- "url": "property-photo/81925bd5d/170642753/81925bd5d187ad593efd3f15d685a0fc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/67ec73dc4/170642753/67ec73dc48ae2dc415beb59248f0114d_max_476x317.jpeg",
- "url": "property-photo/67ec73dc4/170642753/67ec73dc48ae2dc415beb59248f0114d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d4da2845d/170642753/d4da2845de19e4cef63d4c2f082f38b7_max_476x317.jpeg",
- "url": "property-photo/d4da2845d/170642753/d4da2845de19e4cef63d4c2f082f38b7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/42010faa5/170642753/42010faa54dbcfd3880ec76c209eadfa_max_476x317.jpeg",
- "url": "property-photo/42010faa5/170642753/42010faa54dbcfd3880ec76c209eadfa.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/698870222/170642753/69887022287247a7ad958c156d96398e_max_476x317.jpeg",
- "url": "property-photo/698870222/170642753/69887022287247a7ad958c156d96398e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ea2b88c8d/170642753/ea2b88c8df715c3325229fe0038b1b70_max_476x317.jpeg",
- "url": "property-photo/ea2b88c8d/170642753/ea2b88c8df715c3325229fe0038b1b70.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3dce5fac3/170642753/3dce5fac31e24518d5be635ebb491e50_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3dce5fac3/170642753/3dce5fac31e24518d5be635ebb491e50_max_296x197.jpeg"
- },
- "formattedBranchName": " by Martin & Co, Wanstead",
- "addedOrReduced": "Added on 26/12/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "4 bedroom detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 169357616,
- "bedrooms": 5,
- "bathrooms": 3,
- "numberOfImages": 35,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Guide price £1,600,000 - £1,625,000 | Chain free | Five double bedroom semi detached house | Contemporary open plan kitchen/diner | Skilfully extended & renovated | Two family bathrooms | Downstairs utility room & WC | 100ft + private rear garden | Off street parking for multiple vehicles & Side ...",
- "displayAddress": "Hollybush Hill, Snaresbrook",
- "countryCode": "GB",
- "location": { "latitude": 51.577117, "longitude": 0.01755 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3267ab5b9/169357616/3267ab5b91dc004ee1a358883a7c1f90_max_476x317.jpeg",
- "url": "property-photo/3267ab5b9/169357616/3267ab5b91dc004ee1a358883a7c1f90.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5a39b1722/169357616/5a39b1722d349327bba5a2e7ffec46c6_max_476x317.jpeg",
- "url": "property-photo/5a39b1722/169357616/5a39b1722d349327bba5a2e7ffec46c6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb72e7a13/169357616/cb72e7a1347bcf8b9ad59d8c441dbb53_max_476x317.jpeg",
- "url": "property-photo/cb72e7a13/169357616/cb72e7a1347bcf8b9ad59d8c441dbb53.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0ae7cf12/169357616/d0ae7cf1284ceb017fc9ce2d1f48be4f_max_476x317.jpeg",
- "url": "property-photo/d0ae7cf12/169357616/d0ae7cf1284ceb017fc9ce2d1f48be4f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ef8e37cce/169357616/ef8e37cce6bf6f9e0ddfb9e1c1905d6e_max_476x317.jpeg",
- "url": "property-photo/ef8e37cce/169357616/ef8e37cce6bf6f9e0ddfb9e1c1905d6e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dbafee582/169357616/dbafee582fe7cd2090c08652d9e51a48_max_476x317.jpeg",
- "url": "property-photo/dbafee582/169357616/dbafee582fe7cd2090c08652d9e51a48.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1fafc097d/169357616/1fafc097d6f978c5709fd307eba4a382_max_476x317.jpeg",
- "url": "property-photo/1fafc097d/169357616/1fafc097d6f978c5709fd307eba4a382.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/da021a017/169357616/da021a017cebf9a6cb17c456546e734f_max_476x317.jpeg",
- "url": "property-photo/da021a017/169357616/da021a017cebf9a6cb17c456546e734f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/84bd3ac03/169357616/84bd3ac03d3746b86168683f1629fd5e_max_476x317.jpeg",
- "url": "property-photo/84bd3ac03/169357616/84bd3ac03d3746b86168683f1629fd5e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/74ec07638/169357616/74ec076384458ff1e292f9e16329c959_max_476x317.jpeg",
- "url": "property-photo/74ec07638/169357616/74ec076384458ff1e292f9e16329c959.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d4b50900a/169357616/d4b50900a806774fe007a46dc411d7c8_max_476x317.jpeg",
- "url": "property-photo/d4b50900a/169357616/d4b50900a806774fe007a46dc411d7c8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c0c6ec2d/169357616/8c0c6ec2da8085ce63d79b90cb165dbc_max_476x317.jpeg",
- "url": "property-photo/8c0c6ec2d/169357616/8c0c6ec2da8085ce63d79b90cb165dbc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/203c22bb5/169357616/203c22bb51e187c54be061fdfd47aa31_max_476x317.jpeg",
- "url": "property-photo/203c22bb5/169357616/203c22bb51e187c54be061fdfd47aa31.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a83b4473/169357616/1a83b4473e3614f99d1fa787178d7bf4_max_476x317.jpeg",
- "url": "property-photo/1a83b4473/169357616/1a83b4473e3614f99d1fa787178d7bf4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/71d1d0141/169357616/71d1d01411444760f37d71915ba43d8a_max_476x317.jpeg",
- "url": "property-photo/71d1d0141/169357616/71d1d01411444760f37d71915ba43d8a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bd1ef1a61/169357616/bd1ef1a613852fb3259b83cd50ef3465_max_476x317.jpeg",
- "url": "property-photo/bd1ef1a61/169357616/bd1ef1a613852fb3259b83cd50ef3465.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d8205a42a/169357616/d8205a42a93259dd6c1ff3e6bb9639b7_max_476x317.jpeg",
- "url": "property-photo/d8205a42a/169357616/d8205a42a93259dd6c1ff3e6bb9639b7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f56e90763/169357616/f56e90763e77f9c87f81b88b1b61657f_max_476x317.jpeg",
- "url": "property-photo/f56e90763/169357616/f56e90763e77f9c87f81b88b1b61657f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c1ca626a1/169357616/c1ca626a1f504315ca0fc9c10b56e5c3_max_476x317.jpeg",
- "url": "property-photo/c1ca626a1/169357616/c1ca626a1f504315ca0fc9c10b56e5c3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1ff37d5e5/169357616/1ff37d5e5f4b1fbacd0537e68f34dc5c_max_476x317.jpeg",
- "url": "property-photo/1ff37d5e5/169357616/1ff37d5e5f4b1fbacd0537e68f34dc5c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/545a1503c/169357616/545a1503c72ce97feeddab831ea40cb4_max_476x317.jpeg",
- "url": "property-photo/545a1503c/169357616/545a1503c72ce97feeddab831ea40cb4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e947d3613/169357616/e947d361373c1aea977ad9fa70c44e22_max_476x317.jpeg",
- "url": "property-photo/e947d3613/169357616/e947d361373c1aea977ad9fa70c44e22.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2f4ef8c22/169357616/2f4ef8c2297f5a6d8a6c352b44ee8519_max_476x317.jpeg",
- "url": "property-photo/2f4ef8c22/169357616/2f4ef8c2297f5a6d8a6c352b44ee8519.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ba43d4113/169357616/ba43d4113a62db84d94d09c254d9ac12_max_476x317.jpeg",
- "url": "property-photo/ba43d4113/169357616/ba43d4113a62db84d94d09c254d9ac12.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/62224c836/169357616/62224c8362b9e3083f842fd75eada0b4_max_476x317.jpeg",
- "url": "property-photo/62224c836/169357616/62224c8362b9e3083f842fd75eada0b4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e9af38988/169357616/e9af38988e7f9c46eba04fed6b2fd3a2_max_476x317.jpeg",
- "url": "property-photo/e9af38988/169357616/e9af38988e7f9c46eba04fed6b2fd3a2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9e8ea747b/169357616/9e8ea747b121efd338c2a9dd3014f4b0_max_476x317.jpeg",
- "url": "property-photo/9e8ea747b/169357616/9e8ea747b121efd338c2a9dd3014f4b0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cc44f8874/169357616/cc44f88749c1b91e9f0c3081d8409593_max_476x317.jpeg",
- "url": "property-photo/cc44f8874/169357616/cc44f88749c1b91e9f0c3081d8409593.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb5f158e8/169357616/cb5f158e81f208e3f5cbb30af2872f20_max_476x317.jpeg",
- "url": "property-photo/cb5f158e8/169357616/cb5f158e81f208e3f5cbb30af2872f20.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7c920549/169357616/b7c9205496254df0f02e0abb5a5ea50b_max_476x317.jpeg",
- "url": "property-photo/b7c920549/169357616/b7c9205496254df0f02e0abb5a5ea50b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/276f9ef14/169357616/276f9ef147481964bd274ad877ca1ab6_max_476x317.jpeg",
- "url": "property-photo/276f9ef14/169357616/276f9ef147481964bd274ad877ca1ab6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/99d3dfbb6/169357616/99d3dfbb688228bf95d202eee6f398b3_max_476x317.jpeg",
- "url": "property-photo/99d3dfbb6/169357616/99d3dfbb688228bf95d202eee6f398b3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d83475da9/169357616/d83475da9242a15417fd3af87a41a6cb_max_476x317.jpeg",
- "url": "property-photo/d83475da9/169357616/d83475da9242a15417fd3af87a41a6cb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fdf3ab622/169357616/fdf3ab62225bcd232f30fc463066aedf_max_476x317.jpeg",
- "url": "property-photo/fdf3ab622/169357616/fdf3ab62225bcd232f30fc463066aedf.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c8c68274/169357616/6c8c68274e572932b9ec925efc70addc_max_476x317.jpeg",
- "url": "property-photo/6c8c68274/169357616/6c8c68274e572932b9ec925efc70addc.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Semi-Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2026-01-28T14:15:46Z"
- },
- "price": {
- "amount": 1600000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,600,000",
- "displayPriceQualifier": "Guide Price"
- }
- ]
- },
- "premiumListing": true,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 69505,
- "brandPlusLogoURI": "/company/clogo_3502_0001.jpeg",
- "contactTelephone": "020 3907 3687",
- "branchDisplayName": "Churchill Estates, Wanstead",
- "branchName": "Wanstead",
- "brandTradingName": "Churchill Estates",
- "branchLandingPageUrl": "/estate-agents/agent/Churchill-Estates/Wanstead-69505.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": false,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-10-09T15:35:28Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_3502_0001.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": {
- "productLabelText": "No Chain",
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "2,208 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/169357616#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=169357616",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-11-14T16:19:07Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-05T02:34:17Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Guide price £1,600,000 - £1,625,000",
- "htmlDescription": "Guide price £1,600,000 - £1,625,000"
- },
- {
- "order": 2,
- "description": "Chain free",
- "htmlDescription": "Chain free"
- },
- {
- "order": 3,
- "description": "Five double bedroom semi detached house",
- "htmlDescription": "Five double bedroom semi detached house"
- },
- {
- "order": 4,
- "description": "Contemporary open plan kitchen/diner",
- "htmlDescription": "Contemporary open plan kitchen/diner"
- },
- {
- "order": 5,
- "description": "Skilfully extended & renovated",
- "htmlDescription": "Skilfully extended & renovated"
- },
- {
- "order": 6,
- "description": "Two family bathrooms",
- "htmlDescription": "Two family bathrooms"
- },
- {
- "order": 7,
- "description": "Downstairs utility room & WC",
- "htmlDescription": "Downstairs utility room & WC"
- },
- {
- "order": 8,
- "description": "100ft + private rear garden",
- "htmlDescription": "100ft + private rear garden"
- },
- {
- "order": 9,
- "description": "Off street parking for multiple vehicles & side access",
- "htmlDescription": "Off street parking for multiple vehicles & side access"
- },
- {
- "order": 10,
- "description": "Close proximity to Wanstead High Street & Snaresbrook Central Line station (0.4 miles)",
- "htmlDescription": "Close proximity to Wanstead High Street & Snaresbrook Central Line station (0.4 miles)"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3267ab5b9/169357616/3267ab5b91dc004ee1a358883a7c1f90_max_476x317.jpeg",
- "url": "property-photo/3267ab5b9/169357616/3267ab5b91dc004ee1a358883a7c1f90.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5a39b1722/169357616/5a39b1722d349327bba5a2e7ffec46c6_max_476x317.jpeg",
- "url": "property-photo/5a39b1722/169357616/5a39b1722d349327bba5a2e7ffec46c6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb72e7a13/169357616/cb72e7a1347bcf8b9ad59d8c441dbb53_max_476x317.jpeg",
- "url": "property-photo/cb72e7a13/169357616/cb72e7a1347bcf8b9ad59d8c441dbb53.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0ae7cf12/169357616/d0ae7cf1284ceb017fc9ce2d1f48be4f_max_476x317.jpeg",
- "url": "property-photo/d0ae7cf12/169357616/d0ae7cf1284ceb017fc9ce2d1f48be4f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ef8e37cce/169357616/ef8e37cce6bf6f9e0ddfb9e1c1905d6e_max_476x317.jpeg",
- "url": "property-photo/ef8e37cce/169357616/ef8e37cce6bf6f9e0ddfb9e1c1905d6e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dbafee582/169357616/dbafee582fe7cd2090c08652d9e51a48_max_476x317.jpeg",
- "url": "property-photo/dbafee582/169357616/dbafee582fe7cd2090c08652d9e51a48.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1fafc097d/169357616/1fafc097d6f978c5709fd307eba4a382_max_476x317.jpeg",
- "url": "property-photo/1fafc097d/169357616/1fafc097d6f978c5709fd307eba4a382.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/da021a017/169357616/da021a017cebf9a6cb17c456546e734f_max_476x317.jpeg",
- "url": "property-photo/da021a017/169357616/da021a017cebf9a6cb17c456546e734f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/84bd3ac03/169357616/84bd3ac03d3746b86168683f1629fd5e_max_476x317.jpeg",
- "url": "property-photo/84bd3ac03/169357616/84bd3ac03d3746b86168683f1629fd5e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/74ec07638/169357616/74ec076384458ff1e292f9e16329c959_max_476x317.jpeg",
- "url": "property-photo/74ec07638/169357616/74ec076384458ff1e292f9e16329c959.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d4b50900a/169357616/d4b50900a806774fe007a46dc411d7c8_max_476x317.jpeg",
- "url": "property-photo/d4b50900a/169357616/d4b50900a806774fe007a46dc411d7c8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c0c6ec2d/169357616/8c0c6ec2da8085ce63d79b90cb165dbc_max_476x317.jpeg",
- "url": "property-photo/8c0c6ec2d/169357616/8c0c6ec2da8085ce63d79b90cb165dbc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/203c22bb5/169357616/203c22bb51e187c54be061fdfd47aa31_max_476x317.jpeg",
- "url": "property-photo/203c22bb5/169357616/203c22bb51e187c54be061fdfd47aa31.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a83b4473/169357616/1a83b4473e3614f99d1fa787178d7bf4_max_476x317.jpeg",
- "url": "property-photo/1a83b4473/169357616/1a83b4473e3614f99d1fa787178d7bf4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/71d1d0141/169357616/71d1d01411444760f37d71915ba43d8a_max_476x317.jpeg",
- "url": "property-photo/71d1d0141/169357616/71d1d01411444760f37d71915ba43d8a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bd1ef1a61/169357616/bd1ef1a613852fb3259b83cd50ef3465_max_476x317.jpeg",
- "url": "property-photo/bd1ef1a61/169357616/bd1ef1a613852fb3259b83cd50ef3465.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d8205a42a/169357616/d8205a42a93259dd6c1ff3e6bb9639b7_max_476x317.jpeg",
- "url": "property-photo/d8205a42a/169357616/d8205a42a93259dd6c1ff3e6bb9639b7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f56e90763/169357616/f56e90763e77f9c87f81b88b1b61657f_max_476x317.jpeg",
- "url": "property-photo/f56e90763/169357616/f56e90763e77f9c87f81b88b1b61657f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c1ca626a1/169357616/c1ca626a1f504315ca0fc9c10b56e5c3_max_476x317.jpeg",
- "url": "property-photo/c1ca626a1/169357616/c1ca626a1f504315ca0fc9c10b56e5c3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1ff37d5e5/169357616/1ff37d5e5f4b1fbacd0537e68f34dc5c_max_476x317.jpeg",
- "url": "property-photo/1ff37d5e5/169357616/1ff37d5e5f4b1fbacd0537e68f34dc5c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/545a1503c/169357616/545a1503c72ce97feeddab831ea40cb4_max_476x317.jpeg",
- "url": "property-photo/545a1503c/169357616/545a1503c72ce97feeddab831ea40cb4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e947d3613/169357616/e947d361373c1aea977ad9fa70c44e22_max_476x317.jpeg",
- "url": "property-photo/e947d3613/169357616/e947d361373c1aea977ad9fa70c44e22.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2f4ef8c22/169357616/2f4ef8c2297f5a6d8a6c352b44ee8519_max_476x317.jpeg",
- "url": "property-photo/2f4ef8c22/169357616/2f4ef8c2297f5a6d8a6c352b44ee8519.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ba43d4113/169357616/ba43d4113a62db84d94d09c254d9ac12_max_476x317.jpeg",
- "url": "property-photo/ba43d4113/169357616/ba43d4113a62db84d94d09c254d9ac12.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/62224c836/169357616/62224c8362b9e3083f842fd75eada0b4_max_476x317.jpeg",
- "url": "property-photo/62224c836/169357616/62224c8362b9e3083f842fd75eada0b4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e9af38988/169357616/e9af38988e7f9c46eba04fed6b2fd3a2_max_476x317.jpeg",
- "url": "property-photo/e9af38988/169357616/e9af38988e7f9c46eba04fed6b2fd3a2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9e8ea747b/169357616/9e8ea747b121efd338c2a9dd3014f4b0_max_476x317.jpeg",
- "url": "property-photo/9e8ea747b/169357616/9e8ea747b121efd338c2a9dd3014f4b0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cc44f8874/169357616/cc44f88749c1b91e9f0c3081d8409593_max_476x317.jpeg",
- "url": "property-photo/cc44f8874/169357616/cc44f88749c1b91e9f0c3081d8409593.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb5f158e8/169357616/cb5f158e81f208e3f5cbb30af2872f20_max_476x317.jpeg",
- "url": "property-photo/cb5f158e8/169357616/cb5f158e81f208e3f5cbb30af2872f20.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7c920549/169357616/b7c9205496254df0f02e0abb5a5ea50b_max_476x317.jpeg",
- "url": "property-photo/b7c920549/169357616/b7c9205496254df0f02e0abb5a5ea50b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/276f9ef14/169357616/276f9ef147481964bd274ad877ca1ab6_max_476x317.jpeg",
- "url": "property-photo/276f9ef14/169357616/276f9ef147481964bd274ad877ca1ab6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/99d3dfbb6/169357616/99d3dfbb688228bf95d202eee6f398b3_max_476x317.jpeg",
- "url": "property-photo/99d3dfbb6/169357616/99d3dfbb688228bf95d202eee6f398b3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d83475da9/169357616/d83475da9242a15417fd3af87a41a6cb_max_476x317.jpeg",
- "url": "property-photo/d83475da9/169357616/d83475da9242a15417fd3af87a41a6cb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fdf3ab622/169357616/fdf3ab62225bcd232f30fc463066aedf_max_476x317.jpeg",
- "url": "property-photo/fdf3ab622/169357616/fdf3ab62225bcd232f30fc463066aedf.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c8c68274/169357616/6c8c68274e572932b9ec925efc70addc_max_476x317.jpeg",
- "url": "property-photo/6c8c68274/169357616/6c8c68274e572932b9ec925efc70addc.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3267ab5b9/169357616/3267ab5b91dc004ee1a358883a7c1f90_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3267ab5b9/169357616/3267ab5b91dc004ee1a358883a7c1f90_max_296x197.jpeg"
- },
- "formattedBranchName": " by Churchill Estates, Wanstead",
- "addedOrReduced": "Added on 14/11/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "5 bedroom semi-detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172089626,
- "bedrooms": 4,
- "bathrooms": 2,
- "numberOfImages": 18,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Located in Wanstead Village, overlooking Christchurch Green - Access to both Wanstead & Snaresbrook Underground Stations - Extended Loft & Rear - Period Features throughout - Two Reception Rooms - Open Plan Bespoke Kitchen & Dining Room - Downstairs WC & Utility Room - Primary Bedroom with En Su...",
- "displayAddress": "Spratt Hall Road, Wanstead, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.575889, "longitude": 0.024617 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a13ce9247/172089626/a13ce9247300c106f086cf97d9377e60_max_476x317.jpeg",
- "url": "property-photo/a13ce9247/172089626/a13ce9247300c106f086cf97d9377e60.jpeg",
- "caption": "spratt.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a535f1cad/172089626/a535f1cad870257ea02b23330fd789c2_max_476x317.jpeg",
- "url": "property-photo/a535f1cad/172089626/a535f1cad870257ea02b23330fd789c2.jpeg",
- "caption": "Spratt-44.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dc01a239b/172089626/dc01a239b0a988dd2bcc28d5bb3ba281_max_476x317.jpeg",
- "url": "property-photo/dc01a239b/172089626/dc01a239b0a988dd2bcc28d5bb3ba281.jpeg",
- "caption": "Spratt-47.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ec26591f/172089626/9ec26591f0376f0ea078d6fc8c958d69_max_476x317.jpeg",
- "url": "property-photo/9ec26591f/172089626/9ec26591f0376f0ea078d6fc8c958d69.jpeg",
- "caption": "Spratt-49.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e350355b2/172089626/e350355b23eb74cb96711bfb852a1395_max_476x317.jpeg",
- "url": "property-photo/e350355b2/172089626/e350355b23eb74cb96711bfb852a1395.jpeg",
- "caption": "Spratt-51.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e4ef188fd/172089626/e4ef188fda0da939767faf3c736c6f96_max_476x317.jpeg",
- "url": "property-photo/e4ef188fd/172089626/e4ef188fda0da939767faf3c736c6f96.jpeg",
- "caption": "Spratt-53.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/39f7ecd4f/172089626/39f7ecd4f0883c7eb02b343d089240a4_max_476x317.jpeg",
- "url": "property-photo/39f7ecd4f/172089626/39f7ecd4f0883c7eb02b343d089240a4.jpeg",
- "caption": "Spratt-54.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c661d73ad/172089626/c661d73addca781b070bd41942c6de32_max_476x317.jpeg",
- "url": "property-photo/c661d73ad/172089626/c661d73addca781b070bd41942c6de32.jpeg",
- "caption": "Spratt-55.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/48bac37bb/172089626/48bac37bb5d54122d75ed4fb455a87f8_max_476x317.jpeg",
- "url": "property-photo/48bac37bb/172089626/48bac37bb5d54122d75ed4fb455a87f8.jpeg",
- "caption": "Spratt-64.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0e912bb4b/172089626/0e912bb4b326b543d94b38e11fdfc66c_max_476x317.jpeg",
- "url": "property-photo/0e912bb4b/172089626/0e912bb4b326b543d94b38e11fdfc66c.jpeg",
- "caption": "Spratt-65.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/451be2e9c/172089626/451be2e9c977d7aa154c18a85aca3812_max_476x317.jpeg",
- "url": "property-photo/451be2e9c/172089626/451be2e9c977d7aa154c18a85aca3812.jpeg",
- "caption": "Spratt-67.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d9f77e5f/172089626/3d9f77e5f669abc82dfcc1bee57c324e_max_476x317.jpeg",
- "url": "property-photo/3d9f77e5f/172089626/3d9f77e5f669abc82dfcc1bee57c324e.jpeg",
- "caption": "Spratt-69.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ac27b52c5/172089626/ac27b52c547e3535a3a319c1c8640ee0_max_476x317.jpeg",
- "url": "property-photo/ac27b52c5/172089626/ac27b52c547e3535a3a319c1c8640ee0.jpeg",
- "caption": "Spratt-71.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/daa4e5ab9/172089626/daa4e5ab95c503a2b6a267df431508b3_max_476x317.jpeg",
- "url": "property-photo/daa4e5ab9/172089626/daa4e5ab95c503a2b6a267df431508b3.jpeg",
- "caption": "Spratt-76.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bf2399f3d/172089626/bf2399f3d02b7f02bfe11e2d168c529f_max_476x317.jpeg",
- "url": "property-photo/bf2399f3d/172089626/bf2399f3d02b7f02bfe11e2d168c529f.jpeg",
- "caption": "Spratt-77.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b799c49b7/172089626/b799c49b736f776f2bf28ed4f5e6ceac_max_476x317.jpeg",
- "url": "property-photo/b799c49b7/172089626/b799c49b736f776f2bf28ed4f5e6ceac.jpeg",
- "caption": "Spratt-80.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0387aaaeb/172089626/0387aaaeb2240201ea9ee9eb01692a5f_max_476x317.jpeg",
- "url": "property-photo/0387aaaeb/172089626/0387aaaeb2240201ea9ee9eb01692a5f.jpeg",
- "caption": "spratt-84.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a514332ca/172089626/a514332cadb33bf24715e400b467c4f5_max_476x317.jpeg",
- "url": "property-photo/a514332ca/172089626/a514332cadb33bf24715e400b467c4f5.jpeg",
- "caption": "spratt-85.1.jpg"
- }
- ],
- "propertySubType": "Terraced",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T16:21:49Z"
- },
- "price": {
- "amount": 1600000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£1,600,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 273152,
- "brandPlusLogoURI": "/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "contactTelephone": "020 8138 0636",
- "branchDisplayName": "Durden & Hunt, Wanstead & East London",
- "branchName": "Wanstead & East London",
- "brandTradingName": "Durden & Hunt",
- "branchLandingPageUrl": "/estate-agents/agent/Durden-and-Hunt/Wanstead-and-East-London-273152.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-01T10:42:02Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "primaryBrandColour": "#000000"
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "2,043 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/172089626#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=172089626",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2026-02-11T16:16:20Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T16:21:49Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Located in Wanstead Village, overlooking Christchurch Green",
- "htmlDescription": "Located in Wanstead Village, overlooking Christchurch Green"
- },
- {
- "order": 2,
- "description": "Access to both Wanstead & Snaresbrook Underground Stations",
- "htmlDescription": "Access to both Wanstead & Snaresbrook Underground Stations"
- },
- {
- "order": 3,
- "description": "Extended Loft & Rear",
- "htmlDescription": "Extended Loft & Rear"
- },
- {
- "order": 4,
- "description": "Period Features Throughout",
- "htmlDescription": "Period Features Throughout"
- },
- {
- "order": 5,
- "description": "Two Reception Rooms",
- "htmlDescription": "Two Reception Rooms"
- },
- {
- "order": 6,
- "description": "Open Plan Bespoke Kitchen & Dining Room",
- "htmlDescription": "Open Plan Bespoke Kitchen & Dining Room"
- },
- {
- "order": 7,
- "description": "Downstairs WC & Utility Room",
- "htmlDescription": "Downstairs WC & Utility Room"
- },
- {
- "order": 8,
- "description": "Primary Bedroom With En Suite",
- "htmlDescription": "Primary Bedroom With En Suite"
- },
- {
- "order": 9,
- "description": "Three Additional Bedrooms",
- "htmlDescription": "Three Additional Bedrooms"
- },
- {
- "order": 10,
- "description": "City Style Landscaped Garden",
- "htmlDescription": "City Style Landscaped Garden"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a13ce9247/172089626/a13ce9247300c106f086cf97d9377e60_max_476x317.jpeg",
- "url": "property-photo/a13ce9247/172089626/a13ce9247300c106f086cf97d9377e60.jpeg",
- "caption": "spratt.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a535f1cad/172089626/a535f1cad870257ea02b23330fd789c2_max_476x317.jpeg",
- "url": "property-photo/a535f1cad/172089626/a535f1cad870257ea02b23330fd789c2.jpeg",
- "caption": "Spratt-44.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dc01a239b/172089626/dc01a239b0a988dd2bcc28d5bb3ba281_max_476x317.jpeg",
- "url": "property-photo/dc01a239b/172089626/dc01a239b0a988dd2bcc28d5bb3ba281.jpeg",
- "caption": "Spratt-47.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ec26591f/172089626/9ec26591f0376f0ea078d6fc8c958d69_max_476x317.jpeg",
- "url": "property-photo/9ec26591f/172089626/9ec26591f0376f0ea078d6fc8c958d69.jpeg",
- "caption": "Spratt-49.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e350355b2/172089626/e350355b23eb74cb96711bfb852a1395_max_476x317.jpeg",
- "url": "property-photo/e350355b2/172089626/e350355b23eb74cb96711bfb852a1395.jpeg",
- "caption": "Spratt-51.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e4ef188fd/172089626/e4ef188fda0da939767faf3c736c6f96_max_476x317.jpeg",
- "url": "property-photo/e4ef188fd/172089626/e4ef188fda0da939767faf3c736c6f96.jpeg",
- "caption": "Spratt-53.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/39f7ecd4f/172089626/39f7ecd4f0883c7eb02b343d089240a4_max_476x317.jpeg",
- "url": "property-photo/39f7ecd4f/172089626/39f7ecd4f0883c7eb02b343d089240a4.jpeg",
- "caption": "Spratt-54.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c661d73ad/172089626/c661d73addca781b070bd41942c6de32_max_476x317.jpeg",
- "url": "property-photo/c661d73ad/172089626/c661d73addca781b070bd41942c6de32.jpeg",
- "caption": "Spratt-55.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/48bac37bb/172089626/48bac37bb5d54122d75ed4fb455a87f8_max_476x317.jpeg",
- "url": "property-photo/48bac37bb/172089626/48bac37bb5d54122d75ed4fb455a87f8.jpeg",
- "caption": "Spratt-64.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0e912bb4b/172089626/0e912bb4b326b543d94b38e11fdfc66c_max_476x317.jpeg",
- "url": "property-photo/0e912bb4b/172089626/0e912bb4b326b543d94b38e11fdfc66c.jpeg",
- "caption": "Spratt-65.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/451be2e9c/172089626/451be2e9c977d7aa154c18a85aca3812_max_476x317.jpeg",
- "url": "property-photo/451be2e9c/172089626/451be2e9c977d7aa154c18a85aca3812.jpeg",
- "caption": "Spratt-67.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d9f77e5f/172089626/3d9f77e5f669abc82dfcc1bee57c324e_max_476x317.jpeg",
- "url": "property-photo/3d9f77e5f/172089626/3d9f77e5f669abc82dfcc1bee57c324e.jpeg",
- "caption": "Spratt-69.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ac27b52c5/172089626/ac27b52c547e3535a3a319c1c8640ee0_max_476x317.jpeg",
- "url": "property-photo/ac27b52c5/172089626/ac27b52c547e3535a3a319c1c8640ee0.jpeg",
- "caption": "Spratt-71.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/daa4e5ab9/172089626/daa4e5ab95c503a2b6a267df431508b3_max_476x317.jpeg",
- "url": "property-photo/daa4e5ab9/172089626/daa4e5ab95c503a2b6a267df431508b3.jpeg",
- "caption": "Spratt-76.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bf2399f3d/172089626/bf2399f3d02b7f02bfe11e2d168c529f_max_476x317.jpeg",
- "url": "property-photo/bf2399f3d/172089626/bf2399f3d02b7f02bfe11e2d168c529f.jpeg",
- "caption": "Spratt-77.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b799c49b7/172089626/b799c49b736f776f2bf28ed4f5e6ceac_max_476x317.jpeg",
- "url": "property-photo/b799c49b7/172089626/b799c49b736f776f2bf28ed4f5e6ceac.jpeg",
- "caption": "Spratt-80.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0387aaaeb/172089626/0387aaaeb2240201ea9ee9eb01692a5f_max_476x317.jpeg",
- "url": "property-photo/0387aaaeb/172089626/0387aaaeb2240201ea9ee9eb01692a5f.jpeg",
- "caption": "spratt-84.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a514332ca/172089626/a514332cadb33bf24715e400b467c4f5_max_476x317.jpeg",
- "url": "property-photo/a514332ca/172089626/a514332cadb33bf24715e400b467c4f5.jpeg",
- "caption": "spratt-85.1.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a13ce9247/172089626/a13ce9247300c106f086cf97d9377e60_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a13ce9247/172089626/a13ce9247300c106f086cf97d9377e60_max_296x197.jpeg"
- },
- "formattedBranchName": " by Durden & Hunt, Wanstead & East London",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "4 bedroom terraced house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 171258350,
- "bedrooms": 4,
- "bathrooms": 3,
- "numberOfImages": 20,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Petty Son & Prestwich are thrilled to present this four-bedroom detached family home, brimming with charm and modern elegance. Featuring stunning parquet flooring, a spacious driveway, garage, balcony, and a beautifully maintained garden, this property is a true gem.",
- "displayAddress": "Forest Close, Snaresbrook",
- "countryCode": "GB",
- "location": { "latitude": 51.579883, "longitude": 0.019209 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/938c17056/171258350/938c1705662be85dda189f9a9adc3c47_max_476x317.jpeg",
- "url": "property-photo/938c17056/171258350/938c1705662be85dda189f9a9adc3c47.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5938f639f/171258350/5938f639f441ae289430813885b89295_max_476x317.jpeg",
- "url": "property-photo/5938f639f/171258350/5938f639f441ae289430813885b89295.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c6490f635/171258350/c6490f635ee429e168fe517c3c1fdcda_max_476x317.jpeg",
- "url": "property-photo/c6490f635/171258350/c6490f635ee429e168fe517c3c1fdcda.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a0a3e357f/171258350/a0a3e357f18dc772dfdffc7ded44e447_max_476x317.jpeg",
- "url": "property-photo/a0a3e357f/171258350/a0a3e357f18dc772dfdffc7ded44e447.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/86025b9da/171258350/86025b9daa2ca2289f89d03e4261ea4e_max_476x317.jpeg",
- "url": "property-photo/86025b9da/171258350/86025b9daa2ca2289f89d03e4261ea4e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/978732c02/171258350/978732c0228c59365765bf01c712d248_max_476x317.jpeg",
- "url": "property-photo/978732c02/171258350/978732c0228c59365765bf01c712d248.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e14d9e32b/171258350/e14d9e32b4e2e27c3c6d3eccbe24a156_max_476x317.jpeg",
- "url": "property-photo/e14d9e32b/171258350/e14d9e32b4e2e27c3c6d3eccbe24a156.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e49a10851/171258350/e49a10851bf867589e278a79fe3f1679_max_476x317.jpeg",
- "url": "property-photo/e49a10851/171258350/e49a10851bf867589e278a79fe3f1679.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/935712909/171258350/93571290917f02afe4c17e8f38aff26c_max_476x317.jpeg",
- "url": "property-photo/935712909/171258350/93571290917f02afe4c17e8f38aff26c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/082f248ef/171258350/082f248ef329b9fc44335b6c13f0c95a_max_476x317.jpeg",
- "url": "property-photo/082f248ef/171258350/082f248ef329b9fc44335b6c13f0c95a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6151d8d63/171258350/6151d8d630ffa69d0bfc2fd6382e171d_max_476x317.jpeg",
- "url": "property-photo/6151d8d63/171258350/6151d8d630ffa69d0bfc2fd6382e171d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e969f754f/171258350/e969f754ff7438ded4de2f62e2f15ada_max_476x317.jpeg",
- "url": "property-photo/e969f754f/171258350/e969f754ff7438ded4de2f62e2f15ada.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f77f268b/171258350/8f77f268b897bd36fb72cd68701269c4_max_476x317.jpeg",
- "url": "property-photo/8f77f268b/171258350/8f77f268b897bd36fb72cd68701269c4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/53029c2bb/171258350/53029c2bb31036652ad46533bbd836f2_max_476x317.jpeg",
- "url": "property-photo/53029c2bb/171258350/53029c2bb31036652ad46533bbd836f2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c36fc0bf/171258350/5c36fc0bfb23a5722653ae7deffd0a65_max_476x317.jpeg",
- "url": "property-photo/5c36fc0bf/171258350/5c36fc0bfb23a5722653ae7deffd0a65.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e3d4f3126/171258350/e3d4f312623649ef2a24a113837c7fc2_max_476x317.jpeg",
- "url": "property-photo/e3d4f3126/171258350/e3d4f312623649ef2a24a113837c7fc2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4d2e4cbec/171258350/4d2e4cbecc0db889c1a3363e57f37ca2_max_476x317.jpeg",
- "url": "property-photo/4d2e4cbec/171258350/4d2e4cbecc0db889c1a3363e57f37ca2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2b78ea8d2/171258350/2b78ea8d271ba5d2063900d2e8cc719e_max_476x317.jpeg",
- "url": "property-photo/2b78ea8d2/171258350/2b78ea8d271ba5d2063900d2e8cc719e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/da2debd6f/171258350/da2debd6f1dcf0fe7831a3fa000c914a_max_476x317.jpeg",
- "url": "property-photo/da2debd6f/171258350/da2debd6f1dcf0fe7831a3fa000c914a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6275bc8ff/171258350/6275bc8ff5f7e9acba0c1ff9cbb7f640_max_476x317.jpeg",
- "url": "property-photo/6275bc8ff/171258350/6275bc8ff5f7e9acba0c1ff9cbb7f640.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-01-21T14:54:04Z"
- },
- "price": {
- "amount": 1575000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,575,000",
- "displayPriceQualifier": "Offers in Excess of"
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 70202,
- "brandPlusLogoURI": "/71k/70202/branch_rmchoice_logo_70202_0000.jpeg",
- "contactTelephone": "020 3879 9971",
- "branchDisplayName": "Petty Son & Prestwich Ltd, London",
- "branchName": "London",
- "brandTradingName": "Petty Son & Prestwich Ltd",
- "branchLandingPageUrl": "/estate-agents/agent/Petty-Son-and-Prestwich-Ltd/London-70202.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-10-30T17:30:19Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/71k/70202/branch_rmchoice_logo_70202_0000.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "2,033 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/171258350#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=171258350",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2026-01-21T14:48:56Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-12T16:22:33Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Detached family home",
- "htmlDescription": "Detached family home"
- },
- {
- "order": 2,
- "description": "Four bedrooms",
- "htmlDescription": "Four bedrooms"
- },
- {
- "order": 3,
- "description": "Three reception rooms",
- "htmlDescription": "Three reception rooms"
- },
- {
- "order": 4,
- "description": "Spacious entrance hall",
- "htmlDescription": "Spacious entrance hall"
- },
- {
- "order": 5,
- "description": "Garage and off street parking",
- "htmlDescription": "Garage and off street parking"
- },
- { "order": 6, "description": "Balcony", "htmlDescription": "Balcony" },
- {
- "order": 7,
- "description": "Downstairs W.C",
- "htmlDescription": "Downstairs W.C"
- },
- {
- "order": 8,
- "description": "Large family bathroom & en-suite shower room",
- "htmlDescription": "Large family bathroom & en-suite shower room"
- },
- {
- "order": 9,
- "description": "0.2 Miles to Snaresbrook Central Line Station & High Street",
- "htmlDescription": "0.2 Miles to Snaresbrook Central Line Station & High Street"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/938c17056/171258350/938c1705662be85dda189f9a9adc3c47_max_476x317.jpeg",
- "url": "property-photo/938c17056/171258350/938c1705662be85dda189f9a9adc3c47.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5938f639f/171258350/5938f639f441ae289430813885b89295_max_476x317.jpeg",
- "url": "property-photo/5938f639f/171258350/5938f639f441ae289430813885b89295.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c6490f635/171258350/c6490f635ee429e168fe517c3c1fdcda_max_476x317.jpeg",
- "url": "property-photo/c6490f635/171258350/c6490f635ee429e168fe517c3c1fdcda.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a0a3e357f/171258350/a0a3e357f18dc772dfdffc7ded44e447_max_476x317.jpeg",
- "url": "property-photo/a0a3e357f/171258350/a0a3e357f18dc772dfdffc7ded44e447.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/86025b9da/171258350/86025b9daa2ca2289f89d03e4261ea4e_max_476x317.jpeg",
- "url": "property-photo/86025b9da/171258350/86025b9daa2ca2289f89d03e4261ea4e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/978732c02/171258350/978732c0228c59365765bf01c712d248_max_476x317.jpeg",
- "url": "property-photo/978732c02/171258350/978732c0228c59365765bf01c712d248.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e14d9e32b/171258350/e14d9e32b4e2e27c3c6d3eccbe24a156_max_476x317.jpeg",
- "url": "property-photo/e14d9e32b/171258350/e14d9e32b4e2e27c3c6d3eccbe24a156.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e49a10851/171258350/e49a10851bf867589e278a79fe3f1679_max_476x317.jpeg",
- "url": "property-photo/e49a10851/171258350/e49a10851bf867589e278a79fe3f1679.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/935712909/171258350/93571290917f02afe4c17e8f38aff26c_max_476x317.jpeg",
- "url": "property-photo/935712909/171258350/93571290917f02afe4c17e8f38aff26c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/082f248ef/171258350/082f248ef329b9fc44335b6c13f0c95a_max_476x317.jpeg",
- "url": "property-photo/082f248ef/171258350/082f248ef329b9fc44335b6c13f0c95a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6151d8d63/171258350/6151d8d630ffa69d0bfc2fd6382e171d_max_476x317.jpeg",
- "url": "property-photo/6151d8d63/171258350/6151d8d630ffa69d0bfc2fd6382e171d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e969f754f/171258350/e969f754ff7438ded4de2f62e2f15ada_max_476x317.jpeg",
- "url": "property-photo/e969f754f/171258350/e969f754ff7438ded4de2f62e2f15ada.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f77f268b/171258350/8f77f268b897bd36fb72cd68701269c4_max_476x317.jpeg",
- "url": "property-photo/8f77f268b/171258350/8f77f268b897bd36fb72cd68701269c4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/53029c2bb/171258350/53029c2bb31036652ad46533bbd836f2_max_476x317.jpeg",
- "url": "property-photo/53029c2bb/171258350/53029c2bb31036652ad46533bbd836f2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c36fc0bf/171258350/5c36fc0bfb23a5722653ae7deffd0a65_max_476x317.jpeg",
- "url": "property-photo/5c36fc0bf/171258350/5c36fc0bfb23a5722653ae7deffd0a65.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e3d4f3126/171258350/e3d4f312623649ef2a24a113837c7fc2_max_476x317.jpeg",
- "url": "property-photo/e3d4f3126/171258350/e3d4f312623649ef2a24a113837c7fc2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4d2e4cbec/171258350/4d2e4cbecc0db889c1a3363e57f37ca2_max_476x317.jpeg",
- "url": "property-photo/4d2e4cbec/171258350/4d2e4cbecc0db889c1a3363e57f37ca2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2b78ea8d2/171258350/2b78ea8d271ba5d2063900d2e8cc719e_max_476x317.jpeg",
- "url": "property-photo/2b78ea8d2/171258350/2b78ea8d271ba5d2063900d2e8cc719e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/da2debd6f/171258350/da2debd6f1dcf0fe7831a3fa000c914a_max_476x317.jpeg",
- "url": "property-photo/da2debd6f/171258350/da2debd6f1dcf0fe7831a3fa000c914a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6275bc8ff/171258350/6275bc8ff5f7e9acba0c1ff9cbb7f640_max_476x317.jpeg",
- "url": "property-photo/6275bc8ff/171258350/6275bc8ff5f7e9acba0c1ff9cbb7f640.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/938c17056/171258350/938c1705662be85dda189f9a9adc3c47_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/938c17056/171258350/938c1705662be85dda189f9a9adc3c47_max_296x197.jpeg"
- },
- "formattedBranchName": " by Petty Son & Prestwich Ltd, London",
- "addedOrReduced": "Added on 21/01/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "4 bedroom detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 167920679,
- "bedrooms": 5,
- "bathrooms": 3,
- "numberOfImages": 17,
- "numberOfFloorplans": 2,
- "numberOfVirtualTours": 0,
- "summary": "OVER 3000 SQUARE FEET | CHAIN FREE | 1920'S PERIOD | OFF STREET PARKING | GARAGE | 94 FOOT GARDEN | PERIOD FEATURES",
- "displayAddress": "Blake Hall Road, Wanstead",
- "countryCode": "GB",
- "location": { "latitude": 51.5699, "longitude": 0.02385 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/29f1ea1bb/167920679/29f1ea1bbc3d5a14b929f856048d3012_max_476x317.jpeg",
- "url": "property-photo/29f1ea1bb/167920679/29f1ea1bbc3d5a14b929f856048d3012.jpeg",
- "caption": "ExtL 3"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/13ae49d3c/167920679/13ae49d3c9ecb36be0871da237904904_max_476x317.jpeg",
- "url": "property-photo/13ae49d3c/167920679/13ae49d3c9ecb36be0871da237904904.jpeg",
- "caption": "Garden 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91f59b11d/167920679/91f59b11da8bbaf1251bd2912d140e4f_max_476x317.jpeg",
- "url": "property-photo/91f59b11d/167920679/91f59b11da8bbaf1251bd2912d140e4f.jpeg",
- "caption": "Garden 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3c974f130/167920679/3c974f130632f71db3c107c5bce04c49_max_476x317.jpeg",
- "url": "property-photo/3c974f130/167920679/3c974f130632f71db3c107c5bce04c49.jpeg",
- "caption": "Reception 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/196cf60a7/167920679/196cf60a79dd8fb6a41e0ad5bf8c3b0d_max_476x317.jpeg",
- "url": "property-photo/196cf60a7/167920679/196cf60a79dd8fb6a41e0ad5bf8c3b0d.jpeg",
- "caption": "Kitchen 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9918853ba/167920679/9918853ba39fe572ec09cbdcbf37685f_max_476x317.jpeg",
- "url": "property-photo/9918853ba/167920679/9918853ba39fe572ec09cbdcbf37685f.jpeg",
- "caption": "Bathroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5303488b8/167920679/5303488b82f479cf724fb0c66e889fe0_max_476x317.jpeg",
- "url": "property-photo/5303488b8/167920679/5303488b82f479cf724fb0c66e889fe0.jpeg",
- "caption": "Kitchen 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c58800a03/167920679/c58800a03863fed32ac7ab0df5f5a170_max_476x317.jpeg",
- "url": "property-photo/c58800a03/167920679/c58800a03863fed32ac7ab0df5f5a170.jpeg",
- "caption": "Bathroom top"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fef8d52ff/167920679/fef8d52ffece78fd619398e5b7d597dc_max_476x317.jpeg",
- "url": "property-photo/fef8d52ff/167920679/fef8d52ffece78fd619398e5b7d597dc.jpeg",
- "caption": "Bedroom 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/90961cc92/167920679/90961cc927c5701de77a66124075294e_max_476x317.jpeg",
- "url": "property-photo/90961cc92/167920679/90961cc927c5701de77a66124075294e.jpeg",
- "caption": "Bedroom 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c42284770/167920679/c4228477027e79956a99d005a8c207e4_max_476x317.jpeg",
- "url": "property-photo/c42284770/167920679/c4228477027e79956a99d005a8c207e4.jpeg",
- "caption": "Bedroom 3"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2630ea5e5/167920679/2630ea5e5333bcbe886daaca3d703249_max_476x317.jpeg",
- "url": "property-photo/2630ea5e5/167920679/2630ea5e5333bcbe886daaca3d703249.jpeg",
- "caption": "Bedroom 4"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/105fcfbf5/167920679/105fcfbf52f1a97434ca4298fbd26c4b_max_476x317.jpeg",
- "url": "property-photo/105fcfbf5/167920679/105fcfbf52f1a97434ca4298fbd26c4b.jpeg",
- "caption": "Dining Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d9a18adf5/167920679/d9a18adf57574f87b5a8e80ddcb6938f_max_476x317.jpeg",
- "url": "property-photo/d9a18adf5/167920679/d9a18adf57574f87b5a8e80ddcb6938f.jpeg",
- "caption": "Reception 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/049b86e79/167920679/049b86e79da78cf9ce9647415e950b2c_max_476x317.jpeg",
- "url": "property-photo/049b86e79/167920679/049b86e79da78cf9ce9647415e950b2c.jpeg",
- "caption": "Reception 3"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c69eed59d/167920679/c69eed59dd791e411d79da627445504a_max_476x317.jpeg",
- "url": "property-photo/c69eed59d/167920679/c69eed59dd791e411d79da627445504a.jpeg",
- "caption": "Shower"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fda459ed2/167920679/fda459ed224f8472490b5cc829f8a81a_max_476x317.jpeg",
- "url": "property-photo/fda459ed2/167920679/fda459ed224f8472490b5cc829f8a81a.jpeg",
- "caption": "Utility"
- }
- ],
- "propertySubType": "Semi-Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2025-12-26T12:42:35Z"
- },
- "price": {
- "amount": 1550000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,550,000",
- "displayPriceQualifier": "Offers in Region of"
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 45525,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_80819_0001.jpeg",
- "contactTelephone": "020 3910 6305",
- "branchDisplayName": "Martin & Co, Wanstead",
- "branchName": "Wanstead",
- "brandTradingName": "Martin & Co",
- "branchLandingPageUrl": "/estate-agents/agent/Martin-and-Co/Wanstead-45525.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-12T13:43:02Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_80819_0001.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/167920679#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=167920679",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-10-09T12:23:46Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T12:07:42Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "CHAIN FREE",
- "htmlDescription": "CHAIN FREE"
- },
- {
- "order": 2,
- "description": "OFF STREET PARKING",
- "htmlDescription": "OFF STREET PARKING"
- },
- { "order": 3, "description": "GARAGE", "htmlDescription": "GARAGE" }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/29f1ea1bb/167920679/29f1ea1bbc3d5a14b929f856048d3012_max_476x317.jpeg",
- "url": "property-photo/29f1ea1bb/167920679/29f1ea1bbc3d5a14b929f856048d3012.jpeg",
- "caption": "ExtL 3"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/13ae49d3c/167920679/13ae49d3c9ecb36be0871da237904904_max_476x317.jpeg",
- "url": "property-photo/13ae49d3c/167920679/13ae49d3c9ecb36be0871da237904904.jpeg",
- "caption": "Garden 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91f59b11d/167920679/91f59b11da8bbaf1251bd2912d140e4f_max_476x317.jpeg",
- "url": "property-photo/91f59b11d/167920679/91f59b11da8bbaf1251bd2912d140e4f.jpeg",
- "caption": "Garden 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3c974f130/167920679/3c974f130632f71db3c107c5bce04c49_max_476x317.jpeg",
- "url": "property-photo/3c974f130/167920679/3c974f130632f71db3c107c5bce04c49.jpeg",
- "caption": "Reception 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/196cf60a7/167920679/196cf60a79dd8fb6a41e0ad5bf8c3b0d_max_476x317.jpeg",
- "url": "property-photo/196cf60a7/167920679/196cf60a79dd8fb6a41e0ad5bf8c3b0d.jpeg",
- "caption": "Kitchen 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9918853ba/167920679/9918853ba39fe572ec09cbdcbf37685f_max_476x317.jpeg",
- "url": "property-photo/9918853ba/167920679/9918853ba39fe572ec09cbdcbf37685f.jpeg",
- "caption": "Bathroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5303488b8/167920679/5303488b82f479cf724fb0c66e889fe0_max_476x317.jpeg",
- "url": "property-photo/5303488b8/167920679/5303488b82f479cf724fb0c66e889fe0.jpeg",
- "caption": "Kitchen 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c58800a03/167920679/c58800a03863fed32ac7ab0df5f5a170_max_476x317.jpeg",
- "url": "property-photo/c58800a03/167920679/c58800a03863fed32ac7ab0df5f5a170.jpeg",
- "caption": "Bathroom top"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fef8d52ff/167920679/fef8d52ffece78fd619398e5b7d597dc_max_476x317.jpeg",
- "url": "property-photo/fef8d52ff/167920679/fef8d52ffece78fd619398e5b7d597dc.jpeg",
- "caption": "Bedroom 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/90961cc92/167920679/90961cc927c5701de77a66124075294e_max_476x317.jpeg",
- "url": "property-photo/90961cc92/167920679/90961cc927c5701de77a66124075294e.jpeg",
- "caption": "Bedroom 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c42284770/167920679/c4228477027e79956a99d005a8c207e4_max_476x317.jpeg",
- "url": "property-photo/c42284770/167920679/c4228477027e79956a99d005a8c207e4.jpeg",
- "caption": "Bedroom 3"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2630ea5e5/167920679/2630ea5e5333bcbe886daaca3d703249_max_476x317.jpeg",
- "url": "property-photo/2630ea5e5/167920679/2630ea5e5333bcbe886daaca3d703249.jpeg",
- "caption": "Bedroom 4"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/105fcfbf5/167920679/105fcfbf52f1a97434ca4298fbd26c4b_max_476x317.jpeg",
- "url": "property-photo/105fcfbf5/167920679/105fcfbf52f1a97434ca4298fbd26c4b.jpeg",
- "caption": "Dining Room"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d9a18adf5/167920679/d9a18adf57574f87b5a8e80ddcb6938f_max_476x317.jpeg",
- "url": "property-photo/d9a18adf5/167920679/d9a18adf57574f87b5a8e80ddcb6938f.jpeg",
- "caption": "Reception 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/049b86e79/167920679/049b86e79da78cf9ce9647415e950b2c_max_476x317.jpeg",
- "url": "property-photo/049b86e79/167920679/049b86e79da78cf9ce9647415e950b2c.jpeg",
- "caption": "Reception 3"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c69eed59d/167920679/c69eed59dd791e411d79da627445504a_max_476x317.jpeg",
- "url": "property-photo/c69eed59d/167920679/c69eed59dd791e411d79da627445504a.jpeg",
- "caption": "Shower"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fda459ed2/167920679/fda459ed224f8472490b5cc829f8a81a_max_476x317.jpeg",
- "url": "property-photo/fda459ed2/167920679/fda459ed224f8472490b5cc829f8a81a.jpeg",
- "caption": "Utility"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/29f1ea1bb/167920679/29f1ea1bbc3d5a14b929f856048d3012_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/29f1ea1bb/167920679/29f1ea1bbc3d5a14b929f856048d3012_max_296x197.jpeg"
- },
- "formattedBranchName": " by Martin & Co, Wanstead",
- "addedOrReduced": "Reduced on 26/12/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "5 bedroom semi-detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 166536284,
- "bedrooms": 6,
- "bathrooms": 0,
- "numberOfImages": 34,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "CHAIN FREE | 6/7 BEDROOM SEMI DETACHED | LARGE DRIVEWAY | GARAGE | 3 RECEPTION ROOMS | UTILITY ROOM | 4 BATHROOMS | CINEMA ROOM | OVER 3000 SQ FEET | 0.4 MILES TO SNARESBROOK STATION & WANSTEAD HIGH ST",
- "displayAddress": "Hollybush Hill, Wanstead",
- "countryCode": "GB",
- "location": { "latitude": 51.57782, "longitude": 0.01814 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/80bd71249/166536284/80bd7124925ab76b78bc146b9a5a536f_max_476x317.jpeg",
- "url": "property-photo/80bd71249/166536284/80bd7124925ab76b78bc146b9a5a536f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b6812b495/166536284/b6812b495b4711026e51dea3fc77f3a8_max_476x317.jpeg",
- "url": "property-photo/b6812b495/166536284/b6812b495b4711026e51dea3fc77f3a8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5269d80c4/166536284/5269d80c46e004e7613429eb1333f5c9_max_476x317.jpeg",
- "url": "property-photo/5269d80c4/166536284/5269d80c46e004e7613429eb1333f5c9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e9b8ad1bd/166536284/e9b8ad1bd70cf8a8276a3819261664e0_max_476x317.jpeg",
- "url": "property-photo/e9b8ad1bd/166536284/e9b8ad1bd70cf8a8276a3819261664e0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/489ada0ca/166536284/489ada0ca3462f9c62f2366c423c014f_max_476x317.jpeg",
- "url": "property-photo/489ada0ca/166536284/489ada0ca3462f9c62f2366c423c014f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e72a8fd38/166536284/e72a8fd386e9c0b53ca880db9bfdf6f2_max_476x317.jpeg",
- "url": "property-photo/e72a8fd38/166536284/e72a8fd386e9c0b53ca880db9bfdf6f2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f1fde6ca5/166536284/f1fde6ca51dfa8f596c77d6b653ed452_max_476x317.jpeg",
- "url": "property-photo/f1fde6ca5/166536284/f1fde6ca51dfa8f596c77d6b653ed452.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/06b606b5c/166536284/06b606b5c3e8ba313293a36eca0c872d_max_476x317.jpeg",
- "url": "property-photo/06b606b5c/166536284/06b606b5c3e8ba313293a36eca0c872d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/71d4d65f6/166536284/71d4d65f6505d54a8a5f18de402ad92b_max_476x317.jpeg",
- "url": "property-photo/71d4d65f6/166536284/71d4d65f6505d54a8a5f18de402ad92b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/da6edc28a/166536284/da6edc28a6416e4a8456c9a974ebc264_max_476x317.jpeg",
- "url": "property-photo/da6edc28a/166536284/da6edc28a6416e4a8456c9a974ebc264.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bdebd3289/166536284/bdebd3289394ff2a6b088eedecff5897_max_476x317.jpeg",
- "url": "property-photo/bdebd3289/166536284/bdebd3289394ff2a6b088eedecff5897.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/45c18f15c/166536284/45c18f15c06644a1362fdeeb456a0884_max_476x317.jpeg",
- "url": "property-photo/45c18f15c/166536284/45c18f15c06644a1362fdeeb456a0884.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7e7ab3ae/166536284/b7e7ab3ae12adc7cbd35558fe5a766a2_max_476x317.jpeg",
- "url": "property-photo/b7e7ab3ae/166536284/b7e7ab3ae12adc7cbd35558fe5a766a2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/55e5fb70b/166536284/55e5fb70be773cadf1fe615b88a2ced9_max_476x317.jpeg",
- "url": "property-photo/55e5fb70b/166536284/55e5fb70be773cadf1fe615b88a2ced9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c37dd2ca/166536284/6c37dd2ca3d149e5bed9a87a7a666fc4_max_476x317.jpeg",
- "url": "property-photo/6c37dd2ca/166536284/6c37dd2ca3d149e5bed9a87a7a666fc4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/802f382eb/166536284/802f382ebc4d750a755fecf52fc303c4_max_476x317.jpeg",
- "url": "property-photo/802f382eb/166536284/802f382ebc4d750a755fecf52fc303c4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d157931d6/166536284/d157931d6262a96dfb54adb3e26895c3_max_476x317.jpeg",
- "url": "property-photo/d157931d6/166536284/d157931d6262a96dfb54adb3e26895c3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/71daa8098/166536284/71daa8098c31f30c3930e3a86a3e9acc_max_476x317.jpeg",
- "url": "property-photo/71daa8098/166536284/71daa8098c31f30c3930e3a86a3e9acc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b86ce29ea/166536284/b86ce29ea54bb32429d36688c6e09e42_max_476x317.jpeg",
- "url": "property-photo/b86ce29ea/166536284/b86ce29ea54bb32429d36688c6e09e42.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/420821382/166536284/420821382c0b3f6215c0b6cb61512ca8_max_476x317.jpeg",
- "url": "property-photo/420821382/166536284/420821382c0b3f6215c0b6cb61512ca8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/86447d756/166536284/86447d756bcb16cc26dd137f7764f416_max_476x317.jpeg",
- "url": "property-photo/86447d756/166536284/86447d756bcb16cc26dd137f7764f416.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/85d66f001/166536284/85d66f001f18e6c244de45c8b11b998a_max_476x317.jpeg",
- "url": "property-photo/85d66f001/166536284/85d66f001f18e6c244de45c8b11b998a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b8412824c/166536284/b8412824c9c352b0adbbe8df96661add_max_476x317.jpeg",
- "url": "property-photo/b8412824c/166536284/b8412824c9c352b0adbbe8df96661add.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/608e584f5/166536284/608e584f507c0384d8b5616b89268147_max_476x317.jpeg",
- "url": "property-photo/608e584f5/166536284/608e584f507c0384d8b5616b89268147.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f61e9b9c/166536284/6f61e9b9c6ecf414ae05810d392c1653_max_476x317.jpeg",
- "url": "property-photo/6f61e9b9c/166536284/6f61e9b9c6ecf414ae05810d392c1653.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ff86def5c/166536284/ff86def5cd837993183bd0cdff944d22_max_476x317.jpeg",
- "url": "property-photo/ff86def5c/166536284/ff86def5cd837993183bd0cdff944d22.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ec575b027/166536284/ec575b027d7cf038fd900795820080a8_max_476x317.jpeg",
- "url": "property-photo/ec575b027/166536284/ec575b027d7cf038fd900795820080a8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8fa1c5fb1/166536284/8fa1c5fb184ced8c4213471b6d9f4709_max_476x317.jpeg",
- "url": "property-photo/8fa1c5fb1/166536284/8fa1c5fb184ced8c4213471b6d9f4709.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/43216f328/166536284/43216f32836d4c5fd86c3430cd051475_max_476x317.jpeg",
- "url": "property-photo/43216f328/166536284/43216f32836d4c5fd86c3430cd051475.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6d8741e3e/166536284/6d8741e3e13973ff07bec9c1a84480cd_max_476x317.jpeg",
- "url": "property-photo/6d8741e3e/166536284/6d8741e3e13973ff07bec9c1a84480cd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fa0a0396e/166536284/fa0a0396e3f7db9d6710003bac716bef_max_476x317.jpeg",
- "url": "property-photo/fa0a0396e/166536284/fa0a0396e3f7db9d6710003bac716bef.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cf5172a49/166536284/cf5172a4983c62819304a04d253f83e4_max_476x317.jpeg",
- "url": "property-photo/cf5172a49/166536284/cf5172a4983c62819304a04d253f83e4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/21acc891e/166536284/21acc891ee8a1d7ccc69cc04f3b2c07a_max_476x317.jpeg",
- "url": "property-photo/21acc891e/166536284/21acc891ee8a1d7ccc69cc04f3b2c07a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8334b361d/166536284/8334b361d167f32ff14b6f7059900029_max_476x317.jpeg",
- "url": "property-photo/8334b361d/166536284/8334b361d167f32ff14b6f7059900029.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Semi-Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2026-02-04T12:08:27Z"
- },
- "price": {
- "amount": 1500000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,500,000",
- "displayPriceQualifier": "Offers in Excess of"
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 45525,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_80819_0001.jpeg",
- "contactTelephone": "020 3910 6305",
- "branchDisplayName": "Martin & Co, Wanstead",
- "branchName": "Wanstead",
- "brandTradingName": "Martin & Co",
- "branchLandingPageUrl": "/estate-agents/agent/Martin-and-Co/Wanstead-45525.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-12T13:43:02Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_80819_0001.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/166536284#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=166536284",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-09-03T13:30:05Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-12T03:39:15Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "CHAIN FREE",
- "htmlDescription": "CHAIN FREE"
- },
- {
- "order": 2,
- "description": "3 RECEPTION ROOMS",
- "htmlDescription": "3 RECEPTION ROOMS"
- },
- {
- "order": 3,
- "description": "6/7 BEDROOMS & 4 BATHROOMS",
- "htmlDescription": "6/7 BEDROOMS & 4 BATHROOMS"
- },
- {
- "order": 4,
- "description": "OVER 3000 SQUARE FOOT",
- "htmlDescription": "OVER 3000 SQUARE FOOT"
- },
- {
- "order": 5,
- "description": "KITCHEN PLUS UTILITY ROOM",
- "htmlDescription": "KITCHEN PLUS UTILITY ROOM"
- },
- {
- "order": 6,
- "description": "DRIVEWAY & GARAGE",
- "htmlDescription": "DRIVEWAY & GARAGE"
- },
- {
- "order": 7,
- "description": "0.4 MILES TO SNARESBROOK STATION & WANSTEAD HIGH ST",
- "htmlDescription": "0.4 MILES TO SNARESBROOK STATION & WANSTEAD HIGH ST"
- },
- {
- "order": 8,
- "description": "EPC - D - COUNCIL TAX - G",
- "htmlDescription": "EPC - D - COUNCIL TAX - G"
- },
- {
- "order": 9,
- "description": "LARGE REAR GARDEN",
- "htmlDescription": "LARGE REAR GARDEN"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/80bd71249/166536284/80bd7124925ab76b78bc146b9a5a536f_max_476x317.jpeg",
- "url": "property-photo/80bd71249/166536284/80bd7124925ab76b78bc146b9a5a536f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b6812b495/166536284/b6812b495b4711026e51dea3fc77f3a8_max_476x317.jpeg",
- "url": "property-photo/b6812b495/166536284/b6812b495b4711026e51dea3fc77f3a8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5269d80c4/166536284/5269d80c46e004e7613429eb1333f5c9_max_476x317.jpeg",
- "url": "property-photo/5269d80c4/166536284/5269d80c46e004e7613429eb1333f5c9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e9b8ad1bd/166536284/e9b8ad1bd70cf8a8276a3819261664e0_max_476x317.jpeg",
- "url": "property-photo/e9b8ad1bd/166536284/e9b8ad1bd70cf8a8276a3819261664e0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/489ada0ca/166536284/489ada0ca3462f9c62f2366c423c014f_max_476x317.jpeg",
- "url": "property-photo/489ada0ca/166536284/489ada0ca3462f9c62f2366c423c014f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e72a8fd38/166536284/e72a8fd386e9c0b53ca880db9bfdf6f2_max_476x317.jpeg",
- "url": "property-photo/e72a8fd38/166536284/e72a8fd386e9c0b53ca880db9bfdf6f2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f1fde6ca5/166536284/f1fde6ca51dfa8f596c77d6b653ed452_max_476x317.jpeg",
- "url": "property-photo/f1fde6ca5/166536284/f1fde6ca51dfa8f596c77d6b653ed452.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/06b606b5c/166536284/06b606b5c3e8ba313293a36eca0c872d_max_476x317.jpeg",
- "url": "property-photo/06b606b5c/166536284/06b606b5c3e8ba313293a36eca0c872d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/71d4d65f6/166536284/71d4d65f6505d54a8a5f18de402ad92b_max_476x317.jpeg",
- "url": "property-photo/71d4d65f6/166536284/71d4d65f6505d54a8a5f18de402ad92b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/da6edc28a/166536284/da6edc28a6416e4a8456c9a974ebc264_max_476x317.jpeg",
- "url": "property-photo/da6edc28a/166536284/da6edc28a6416e4a8456c9a974ebc264.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bdebd3289/166536284/bdebd3289394ff2a6b088eedecff5897_max_476x317.jpeg",
- "url": "property-photo/bdebd3289/166536284/bdebd3289394ff2a6b088eedecff5897.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/45c18f15c/166536284/45c18f15c06644a1362fdeeb456a0884_max_476x317.jpeg",
- "url": "property-photo/45c18f15c/166536284/45c18f15c06644a1362fdeeb456a0884.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7e7ab3ae/166536284/b7e7ab3ae12adc7cbd35558fe5a766a2_max_476x317.jpeg",
- "url": "property-photo/b7e7ab3ae/166536284/b7e7ab3ae12adc7cbd35558fe5a766a2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/55e5fb70b/166536284/55e5fb70be773cadf1fe615b88a2ced9_max_476x317.jpeg",
- "url": "property-photo/55e5fb70b/166536284/55e5fb70be773cadf1fe615b88a2ced9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c37dd2ca/166536284/6c37dd2ca3d149e5bed9a87a7a666fc4_max_476x317.jpeg",
- "url": "property-photo/6c37dd2ca/166536284/6c37dd2ca3d149e5bed9a87a7a666fc4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/802f382eb/166536284/802f382ebc4d750a755fecf52fc303c4_max_476x317.jpeg",
- "url": "property-photo/802f382eb/166536284/802f382ebc4d750a755fecf52fc303c4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d157931d6/166536284/d157931d6262a96dfb54adb3e26895c3_max_476x317.jpeg",
- "url": "property-photo/d157931d6/166536284/d157931d6262a96dfb54adb3e26895c3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/71daa8098/166536284/71daa8098c31f30c3930e3a86a3e9acc_max_476x317.jpeg",
- "url": "property-photo/71daa8098/166536284/71daa8098c31f30c3930e3a86a3e9acc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b86ce29ea/166536284/b86ce29ea54bb32429d36688c6e09e42_max_476x317.jpeg",
- "url": "property-photo/b86ce29ea/166536284/b86ce29ea54bb32429d36688c6e09e42.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/420821382/166536284/420821382c0b3f6215c0b6cb61512ca8_max_476x317.jpeg",
- "url": "property-photo/420821382/166536284/420821382c0b3f6215c0b6cb61512ca8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/86447d756/166536284/86447d756bcb16cc26dd137f7764f416_max_476x317.jpeg",
- "url": "property-photo/86447d756/166536284/86447d756bcb16cc26dd137f7764f416.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/85d66f001/166536284/85d66f001f18e6c244de45c8b11b998a_max_476x317.jpeg",
- "url": "property-photo/85d66f001/166536284/85d66f001f18e6c244de45c8b11b998a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b8412824c/166536284/b8412824c9c352b0adbbe8df96661add_max_476x317.jpeg",
- "url": "property-photo/b8412824c/166536284/b8412824c9c352b0adbbe8df96661add.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/608e584f5/166536284/608e584f507c0384d8b5616b89268147_max_476x317.jpeg",
- "url": "property-photo/608e584f5/166536284/608e584f507c0384d8b5616b89268147.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f61e9b9c/166536284/6f61e9b9c6ecf414ae05810d392c1653_max_476x317.jpeg",
- "url": "property-photo/6f61e9b9c/166536284/6f61e9b9c6ecf414ae05810d392c1653.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ff86def5c/166536284/ff86def5cd837993183bd0cdff944d22_max_476x317.jpeg",
- "url": "property-photo/ff86def5c/166536284/ff86def5cd837993183bd0cdff944d22.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ec575b027/166536284/ec575b027d7cf038fd900795820080a8_max_476x317.jpeg",
- "url": "property-photo/ec575b027/166536284/ec575b027d7cf038fd900795820080a8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8fa1c5fb1/166536284/8fa1c5fb184ced8c4213471b6d9f4709_max_476x317.jpeg",
- "url": "property-photo/8fa1c5fb1/166536284/8fa1c5fb184ced8c4213471b6d9f4709.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/43216f328/166536284/43216f32836d4c5fd86c3430cd051475_max_476x317.jpeg",
- "url": "property-photo/43216f328/166536284/43216f32836d4c5fd86c3430cd051475.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6d8741e3e/166536284/6d8741e3e13973ff07bec9c1a84480cd_max_476x317.jpeg",
- "url": "property-photo/6d8741e3e/166536284/6d8741e3e13973ff07bec9c1a84480cd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fa0a0396e/166536284/fa0a0396e3f7db9d6710003bac716bef_max_476x317.jpeg",
- "url": "property-photo/fa0a0396e/166536284/fa0a0396e3f7db9d6710003bac716bef.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cf5172a49/166536284/cf5172a4983c62819304a04d253f83e4_max_476x317.jpeg",
- "url": "property-photo/cf5172a49/166536284/cf5172a4983c62819304a04d253f83e4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/21acc891e/166536284/21acc891ee8a1d7ccc69cc04f3b2c07a_max_476x317.jpeg",
- "url": "property-photo/21acc891e/166536284/21acc891ee8a1d7ccc69cc04f3b2c07a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8334b361d/166536284/8334b361d167f32ff14b6f7059900029_max_476x317.jpeg",
- "url": "property-photo/8334b361d/166536284/8334b361d167f32ff14b6f7059900029.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/80bd71249/166536284/80bd7124925ab76b78bc146b9a5a536f_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/80bd71249/166536284/80bd7124925ab76b78bc146b9a5a536f_max_296x197.jpeg"
- },
- "formattedBranchName": " by Martin & Co, Wanstead",
- "addedOrReduced": "Reduced on 04/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "6 bedroom semi-detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 171954710,
- "bedrooms": 5,
- "bathrooms": 2,
- "numberOfImages": 21,
- "numberOfFloorplans": 4,
- "numberOfVirtualTours": 0,
- "summary": "We are pleased to offer this well maintained semi-detached 5 Bedroom house located in Wanstead Village. This property is just a short distance from Wanstead High Street and Wanstead Central Line Tube Station. An internal viewing is highly advised.",
- "displayAddress": "Seagry Road, London, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.57154, "longitude": 0.02738 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5cf87b21e/171954710/5cf87b21e44c6e3e748794458125c425_max_476x317.jpeg",
- "url": "property-photo/5cf87b21e/171954710/5cf87b21e44c6e3e748794458125c425.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7ab233945/171954710/7ab233945f755a4fa1ed255bafe1ffb5_max_476x317.jpeg",
- "url": "property-photo/7ab233945/171954710/7ab233945f755a4fa1ed255bafe1ffb5.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/876337c97/171954710/876337c972de4fd31560e7028a4c7ff2_max_476x317.jpeg",
- "url": "property-photo/876337c97/171954710/876337c972de4fd31560e7028a4c7ff2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d378e1473/171954710/d378e1473d91354d671c1800a7db3df9_max_476x317.jpeg",
- "url": "property-photo/d378e1473/171954710/d378e1473d91354d671c1800a7db3df9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/12dca3cc7/171954710/12dca3cc729e6e2b80003d77eee03f6f_max_476x317.jpeg",
- "url": "property-photo/12dca3cc7/171954710/12dca3cc729e6e2b80003d77eee03f6f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/13b49a931/171954710/13b49a931ba710577b455b1af91242ed_max_476x317.jpeg",
- "url": "property-photo/13b49a931/171954710/13b49a931ba710577b455b1af91242ed.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/456c3323e/171954710/456c3323ecef8f4442eccc95c39cb759_max_476x317.jpeg",
- "url": "property-photo/456c3323e/171954710/456c3323ecef8f4442eccc95c39cb759.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b67d439bd/171954710/b67d439bd3406e478e34e22ecb14c3fd_max_476x317.jpeg",
- "url": "property-photo/b67d439bd/171954710/b67d439bd3406e478e34e22ecb14c3fd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/992bb3950/171954710/992bb39505b02793d094cfa8bc3ec964_max_476x317.jpeg",
- "url": "property-photo/992bb3950/171954710/992bb39505b02793d094cfa8bc3ec964.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/587271e88/171954710/587271e8871eb7d2c99325158f72c619_max_476x317.jpeg",
- "url": "property-photo/587271e88/171954710/587271e8871eb7d2c99325158f72c619.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ac992c130/171954710/ac992c1308e8f6ea12144a83d7f393c3_max_476x317.jpeg",
- "url": "property-photo/ac992c130/171954710/ac992c1308e8f6ea12144a83d7f393c3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9536ee20f/171954710/9536ee20fc6fc921d2b2c89e071f1a40_max_476x317.jpeg",
- "url": "property-photo/9536ee20f/171954710/9536ee20fc6fc921d2b2c89e071f1a40.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f818d2c3d/171954710/f818d2c3d31f554b444267e1254e89b2_max_476x317.jpeg",
- "url": "property-photo/f818d2c3d/171954710/f818d2c3d31f554b444267e1254e89b2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/22727188e/171954710/22727188ebeae22d27cd88add1439f5e_max_476x317.jpeg",
- "url": "property-photo/22727188e/171954710/22727188ebeae22d27cd88add1439f5e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4b9a6835b/171954710/4b9a6835b4e38897bb4b542eb27f6018_max_476x317.jpeg",
- "url": "property-photo/4b9a6835b/171954710/4b9a6835b4e38897bb4b542eb27f6018.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1df528dd2/171954710/1df528dd209396068ed84d2784f001be_max_476x317.jpeg",
- "url": "property-photo/1df528dd2/171954710/1df528dd209396068ed84d2784f001be.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/65b2f9106/171954710/65b2f91060e78eb74a555f5268e1fd81_max_476x317.jpeg",
- "url": "property-photo/65b2f9106/171954710/65b2f91060e78eb74a555f5268e1fd81.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6d7cfe0b2/171954710/6d7cfe0b2c4f3ee6d83432812e40fa18_max_476x317.jpeg",
- "url": "property-photo/6d7cfe0b2/171954710/6d7cfe0b2c4f3ee6d83432812e40fa18.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a68ca9cbc/171954710/a68ca9cbc79998bb763e55268d0144e0_max_476x317.jpeg",
- "url": "property-photo/a68ca9cbc/171954710/a68ca9cbc79998bb763e55268d0144e0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/35b8aa757/171954710/35b8aa757d2ee17eea6f5d43c2bb6953_max_476x317.jpeg",
- "url": "property-photo/35b8aa757/171954710/35b8aa757d2ee17eea6f5d43c2bb6953.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/acd2c9207/171954710/acd2c9207ff81882441fbe9a391c202e_max_476x317.jpeg",
- "url": "property-photo/acd2c9207/171954710/acd2c9207ff81882441fbe9a391c202e.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Semi-Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2025-10-02T12:04:49Z"
- },
- "price": {
- "amount": 1425000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£1,425,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 30897,
- "brandPlusLogoURI": "/company/clogo_8127_0003.jpg",
- "contactTelephone": "020 4572 8123",
- "branchDisplayName": "Circa Residential Property, South Woodford",
- "branchName": "South Woodford",
- "brandTradingName": "Circa Residential Property",
- "branchLandingPageUrl": "/estate-agents/agent/Circa-Residential-Property/South-Woodford-30897.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-11-19T09:42:22Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_8127_0003.jpg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "1,905 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/171954710#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=171954710",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2026-02-06T15:50:17Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-06T15:56:04Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Extremely Well Presented Semi-Detached House",
- "htmlDescription": "Extremely Well Presented Semi-Detached House"
- },
- {
- "order": 2,
- "description": "Loft Conversion w/ Double Glazed Doors to Juilet Balcony + En-Suite Shower",
- "htmlDescription": "Loft Conversion w/ Double Glazed Doors to Juilet Balcony + En-Suite Shower "
- },
- {
- "order": 3,
- "description": "Two Bright Spacious Reception Rooms",
- "htmlDescription": "Two Bright Spacious Reception Rooms"
- },
- {
- "order": 4,
- "description": "Contemproary Fitted Kitchen Including Integrated Appliances",
- "htmlDescription": "Contemproary Fitted Kitchen Including Integrated Appliances"
- },
- {
- "order": 5,
- "description": "Ground Floor W/C",
- "htmlDescription": "Ground Floor W/C"
- },
- {
- "order": 6,
- "description": "Modern First Floor Tiled Bathroom with Separate Shower Cubical",
- "htmlDescription": "Modern First Floor Tiled Bathroom with Separate Shower Cubical"
- },
- {
- "order": 7,
- "description": "Laminated Wood Flooring + Carpets Throughout",
- "htmlDescription": "Laminated Wood Flooring + Carpets Throughout"
- },
- {
- "order": 8,
- "description": "2 Car Driveway",
- "htmlDescription": "2 Car Driveway"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5cf87b21e/171954710/5cf87b21e44c6e3e748794458125c425_max_476x317.jpeg",
- "url": "property-photo/5cf87b21e/171954710/5cf87b21e44c6e3e748794458125c425.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7ab233945/171954710/7ab233945f755a4fa1ed255bafe1ffb5_max_476x317.jpeg",
- "url": "property-photo/7ab233945/171954710/7ab233945f755a4fa1ed255bafe1ffb5.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/876337c97/171954710/876337c972de4fd31560e7028a4c7ff2_max_476x317.jpeg",
- "url": "property-photo/876337c97/171954710/876337c972de4fd31560e7028a4c7ff2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d378e1473/171954710/d378e1473d91354d671c1800a7db3df9_max_476x317.jpeg",
- "url": "property-photo/d378e1473/171954710/d378e1473d91354d671c1800a7db3df9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/12dca3cc7/171954710/12dca3cc729e6e2b80003d77eee03f6f_max_476x317.jpeg",
- "url": "property-photo/12dca3cc7/171954710/12dca3cc729e6e2b80003d77eee03f6f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/13b49a931/171954710/13b49a931ba710577b455b1af91242ed_max_476x317.jpeg",
- "url": "property-photo/13b49a931/171954710/13b49a931ba710577b455b1af91242ed.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/456c3323e/171954710/456c3323ecef8f4442eccc95c39cb759_max_476x317.jpeg",
- "url": "property-photo/456c3323e/171954710/456c3323ecef8f4442eccc95c39cb759.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b67d439bd/171954710/b67d439bd3406e478e34e22ecb14c3fd_max_476x317.jpeg",
- "url": "property-photo/b67d439bd/171954710/b67d439bd3406e478e34e22ecb14c3fd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/992bb3950/171954710/992bb39505b02793d094cfa8bc3ec964_max_476x317.jpeg",
- "url": "property-photo/992bb3950/171954710/992bb39505b02793d094cfa8bc3ec964.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/587271e88/171954710/587271e8871eb7d2c99325158f72c619_max_476x317.jpeg",
- "url": "property-photo/587271e88/171954710/587271e8871eb7d2c99325158f72c619.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ac992c130/171954710/ac992c1308e8f6ea12144a83d7f393c3_max_476x317.jpeg",
- "url": "property-photo/ac992c130/171954710/ac992c1308e8f6ea12144a83d7f393c3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9536ee20f/171954710/9536ee20fc6fc921d2b2c89e071f1a40_max_476x317.jpeg",
- "url": "property-photo/9536ee20f/171954710/9536ee20fc6fc921d2b2c89e071f1a40.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f818d2c3d/171954710/f818d2c3d31f554b444267e1254e89b2_max_476x317.jpeg",
- "url": "property-photo/f818d2c3d/171954710/f818d2c3d31f554b444267e1254e89b2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/22727188e/171954710/22727188ebeae22d27cd88add1439f5e_max_476x317.jpeg",
- "url": "property-photo/22727188e/171954710/22727188ebeae22d27cd88add1439f5e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4b9a6835b/171954710/4b9a6835b4e38897bb4b542eb27f6018_max_476x317.jpeg",
- "url": "property-photo/4b9a6835b/171954710/4b9a6835b4e38897bb4b542eb27f6018.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1df528dd2/171954710/1df528dd209396068ed84d2784f001be_max_476x317.jpeg",
- "url": "property-photo/1df528dd2/171954710/1df528dd209396068ed84d2784f001be.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/65b2f9106/171954710/65b2f91060e78eb74a555f5268e1fd81_max_476x317.jpeg",
- "url": "property-photo/65b2f9106/171954710/65b2f91060e78eb74a555f5268e1fd81.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6d7cfe0b2/171954710/6d7cfe0b2c4f3ee6d83432812e40fa18_max_476x317.jpeg",
- "url": "property-photo/6d7cfe0b2/171954710/6d7cfe0b2c4f3ee6d83432812e40fa18.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a68ca9cbc/171954710/a68ca9cbc79998bb763e55268d0144e0_max_476x317.jpeg",
- "url": "property-photo/a68ca9cbc/171954710/a68ca9cbc79998bb763e55268d0144e0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/35b8aa757/171954710/35b8aa757d2ee17eea6f5d43c2bb6953_max_476x317.jpeg",
- "url": "property-photo/35b8aa757/171954710/35b8aa757d2ee17eea6f5d43c2bb6953.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/acd2c9207/171954710/acd2c9207ff81882441fbe9a391c202e_max_476x317.jpeg",
- "url": "property-photo/acd2c9207/171954710/acd2c9207ff81882441fbe9a391c202e.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5cf87b21e/171954710/5cf87b21e44c6e3e748794458125c425_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5cf87b21e/171954710/5cf87b21e44c6e3e748794458125c425_max_296x197.jpeg"
- },
- "formattedBranchName": " by Circa Residential Property, South Woodford",
- "addedOrReduced": "Reduced on 02/10/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "5 bedroom semi-detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 171755978,
- "bedrooms": 5,
- "bathrooms": 4,
- "numberOfImages": 24,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Chain Free - Desirable Location - Excellent Transport Links - Garden With Versatile Outbuilding - Utility Room & Downstairs Shower Room - Multiple Reception Rooms - Character Features - Open Plan Kitchen & Living Room - Five Bedrooms, Three With En Suite Access - Over 2,300 SQ FT of Living Space ...",
- "displayAddress": "Cambridge Road, Wanstead, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.573795, "longitude": 0.019432 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2bee2e4ee/171755978/2bee2e4ee2a0c27742a9f73ec15a07ec_max_476x317.jpeg",
- "url": "property-photo/2bee2e4ee/171755978/2bee2e4ee2a0c27742a9f73ec15a07ec.jpeg",
- "caption": "Cambridge-70.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/aaa886485/171755978/aaa8864853741b72f716052bd7e50c6d_max_476x317.jpeg",
- "url": "property-photo/aaa886485/171755978/aaa8864853741b72f716052bd7e50c6d.jpeg",
- "caption": "Cambridge-47.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/39ac5344b/171755978/39ac5344b19c75e1b206fc917b586321_max_476x317.jpeg",
- "url": "property-photo/39ac5344b/171755978/39ac5344b19c75e1b206fc917b586321.jpeg",
- "caption": "Cambridge-50.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/12e4f2304/171755978/12e4f230400edeb6f5000accd5ad34d2_max_476x317.jpeg",
- "url": "property-photo/12e4f2304/171755978/12e4f230400edeb6f5000accd5ad34d2.jpeg",
- "caption": "Cambridge-51.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db9436a9a/171755978/db9436a9ae5765fab382f01b8442d661_max_476x317.jpeg",
- "url": "property-photo/db9436a9a/171755978/db9436a9ae5765fab382f01b8442d661.jpeg",
- "caption": "Cambridge-54.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e1926ddb1/171755978/e1926ddb14ad4671f266fa47f59eea3c_max_476x317.jpeg",
- "url": "property-photo/e1926ddb1/171755978/e1926ddb14ad4671f266fa47f59eea3c.jpeg",
- "caption": "Cambridge-56.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d2eef4ca5/171755978/d2eef4ca5836d8a1a5613741a3c63daf_max_476x317.jpeg",
- "url": "property-photo/d2eef4ca5/171755978/d2eef4ca5836d8a1a5613741a3c63daf.jpeg",
- "caption": "Cambridge-59.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/65ada7125/171755978/65ada712548f916a9c9cf7aa93ddd792_max_476x317.jpeg",
- "url": "property-photo/65ada7125/171755978/65ada712548f916a9c9cf7aa93ddd792.jpeg",
- "caption": "Cambridge-60.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f2d91c37d/171755978/f2d91c37d0fae6364f1a3e360ab043b1_max_476x317.jpeg",
- "url": "property-photo/f2d91c37d/171755978/f2d91c37d0fae6364f1a3e360ab043b1.jpeg",
- "caption": "Cambridge-61.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db9482461/171755978/db9482461909a23d6a5c9d1f6b731eed_max_476x317.jpeg",
- "url": "property-photo/db9482461/171755978/db9482461909a23d6a5c9d1f6b731eed.jpeg",
- "caption": "Cambridge-62.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/708bf0def/171755978/708bf0defda66fb64bdc982f3575a549_max_476x317.jpeg",
- "url": "property-photo/708bf0def/171755978/708bf0defda66fb64bdc982f3575a549.jpeg",
- "caption": "Cambridge-28.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/836d22c7d/171755978/836d22c7d341b8b620fb236b28efb975_max_476x317.jpeg",
- "url": "property-photo/836d22c7d/171755978/836d22c7d341b8b620fb236b28efb975.jpeg",
- "caption": "Cambridge-30.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c1aaa99b/171755978/5c1aaa99b25632e3e648962d0659b5d3_max_476x317.jpeg",
- "url": "property-photo/5c1aaa99b/171755978/5c1aaa99b25632e3e648962d0659b5d3.jpeg",
- "caption": "Cambridge-32.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fed93f4a6/171755978/fed93f4a65a8cb078853148d5650b3ae_max_476x317.jpeg",
- "url": "property-photo/fed93f4a6/171755978/fed93f4a65a8cb078853148d5650b3ae.jpeg",
- "caption": "Cambridge-33.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d8afc5b7/171755978/3d8afc5b706f881d59033196a1874d3d_max_476x317.jpeg",
- "url": "property-photo/3d8afc5b7/171755978/3d8afc5b706f881d59033196a1874d3d.jpeg",
- "caption": "Cambridge-38.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/739ea3019/171755978/739ea3019fb6b5b97090f8091051d9c4_max_476x317.jpeg",
- "url": "property-photo/739ea3019/171755978/739ea3019fb6b5b97090f8091051d9c4.jpeg",
- "caption": "Cambridge-40.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5d7349076/171755978/5d7349076b74c0043ca1782c988b6ed7_max_476x317.jpeg",
- "url": "property-photo/5d7349076/171755978/5d7349076b74c0043ca1782c988b6ed7.jpeg",
- "caption": "Cambridge-41.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e21feffd9/171755978/e21feffd9fb1f97b855c726ec3ea4ec7_max_476x317.jpeg",
- "url": "property-photo/e21feffd9/171755978/e21feffd9fb1f97b855c726ec3ea4ec7.jpeg",
- "caption": "Cambridge-42.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d9c8ff70f/171755978/d9c8ff70f8685267c3d6288f4fe39c39_max_476x317.jpeg",
- "url": "property-photo/d9c8ff70f/171755978/d9c8ff70f8685267c3d6288f4fe39c39.jpeg",
- "caption": "Cambridge-43.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f97195184/171755978/f97195184b187bc9783441e8aeb7e05e_max_476x317.jpeg",
- "url": "property-photo/f97195184/171755978/f97195184b187bc9783441e8aeb7e05e.jpeg",
- "caption": "Cambridge-45.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a7535a05f/171755978/a7535a05f0e08c56d8bf2de08117e02f_max_476x317.jpeg",
- "url": "property-photo/a7535a05f/171755978/a7535a05f0e08c56d8bf2de08117e02f.jpeg",
- "caption": "Cambridge-46.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/82dccc045/171755978/82dccc04583a64ac4ee3b972c5a6acf0_max_476x317.jpeg",
- "url": "property-photo/82dccc045/171755978/82dccc04583a64ac4ee3b972c5a6acf0.jpeg",
- "caption": "Cambridge-67.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/03c34a4c7/171755978/03c34a4c76bd1a2099e0ed3dce92596c_max_476x317.jpeg",
- "url": "property-photo/03c34a4c7/171755978/03c34a4c76bd1a2099e0ed3dce92596c.jpeg",
- "caption": "Cambridge-68.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3e14a1329/171755978/3e14a132995458aa8af6f487748d28bb_max_476x317.jpeg",
- "url": "property-photo/3e14a1329/171755978/3e14a132995458aa8af6f487748d28bb.jpeg",
- "caption": "Cambridge-71.1.jpg"
- }
- ],
- "propertySubType": "Terraced",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-02T17:25:07Z"
- },
- "price": {
- "amount": 1350000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£1,350,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": true,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 273152,
- "brandPlusLogoURI": "/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "contactTelephone": "020 8138 0636",
- "branchDisplayName": "Durden & Hunt, Wanstead & East London",
- "branchName": "Wanstead & East London",
- "brandTradingName": "Durden & Hunt",
- "branchLandingPageUrl": "/estate-agents/agent/Durden-and-Hunt/Wanstead-and-East-London-273152.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-01T10:42:02Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "primaryBrandColour": "#000000"
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": {
- "productLabelText": "Period Property",
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "2,356 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/171755978#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=171755978",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2026-02-02T17:20:03Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T10:12:28Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Chain Free",
- "htmlDescription": "Chain Free"
- },
- {
- "order": 2,
- "description": "Excellent Transport Links",
- "htmlDescription": "Excellent Transport Links"
- },
- {
- "order": 3,
- "description": "Garden With Versatile Outbuilding",
- "htmlDescription": "Garden With Versatile Outbuilding"
- },
- {
- "order": 4,
- "description": "Utility Room & Downstairs Shower Room",
- "htmlDescription": "Utility Room & Downstairs Shower Room"
- },
- {
- "order": 5,
- "description": "Multiple Reception Rooms",
- "htmlDescription": "Multiple Reception Rooms"
- },
- {
- "order": 6,
- "description": "Character Features",
- "htmlDescription": "Character Features"
- },
- {
- "order": 7,
- "description": "Open Plan Kitchen & Living Room",
- "htmlDescription": "Open Plan Kitchen & Living Room"
- },
- {
- "order": 8,
- "description": "Five Bedrooms, Three With En Suite Access",
- "htmlDescription": "Five Bedrooms, Three With En Suite Access"
- },
- {
- "order": 9,
- "description": "Over 2,300 SQ FT of Living Space",
- "htmlDescription": "Over 2,300 SQ FT of Living Space"
- },
- {
- "order": 10,
- "description": "Triple Glazing",
- "htmlDescription": "Triple Glazing"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2bee2e4ee/171755978/2bee2e4ee2a0c27742a9f73ec15a07ec_max_476x317.jpeg",
- "url": "property-photo/2bee2e4ee/171755978/2bee2e4ee2a0c27742a9f73ec15a07ec.jpeg",
- "caption": "Cambridge-70.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/aaa886485/171755978/aaa8864853741b72f716052bd7e50c6d_max_476x317.jpeg",
- "url": "property-photo/aaa886485/171755978/aaa8864853741b72f716052bd7e50c6d.jpeg",
- "caption": "Cambridge-47.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/39ac5344b/171755978/39ac5344b19c75e1b206fc917b586321_max_476x317.jpeg",
- "url": "property-photo/39ac5344b/171755978/39ac5344b19c75e1b206fc917b586321.jpeg",
- "caption": "Cambridge-50.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/12e4f2304/171755978/12e4f230400edeb6f5000accd5ad34d2_max_476x317.jpeg",
- "url": "property-photo/12e4f2304/171755978/12e4f230400edeb6f5000accd5ad34d2.jpeg",
- "caption": "Cambridge-51.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db9436a9a/171755978/db9436a9ae5765fab382f01b8442d661_max_476x317.jpeg",
- "url": "property-photo/db9436a9a/171755978/db9436a9ae5765fab382f01b8442d661.jpeg",
- "caption": "Cambridge-54.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e1926ddb1/171755978/e1926ddb14ad4671f266fa47f59eea3c_max_476x317.jpeg",
- "url": "property-photo/e1926ddb1/171755978/e1926ddb14ad4671f266fa47f59eea3c.jpeg",
- "caption": "Cambridge-56.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d2eef4ca5/171755978/d2eef4ca5836d8a1a5613741a3c63daf_max_476x317.jpeg",
- "url": "property-photo/d2eef4ca5/171755978/d2eef4ca5836d8a1a5613741a3c63daf.jpeg",
- "caption": "Cambridge-59.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/65ada7125/171755978/65ada712548f916a9c9cf7aa93ddd792_max_476x317.jpeg",
- "url": "property-photo/65ada7125/171755978/65ada712548f916a9c9cf7aa93ddd792.jpeg",
- "caption": "Cambridge-60.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f2d91c37d/171755978/f2d91c37d0fae6364f1a3e360ab043b1_max_476x317.jpeg",
- "url": "property-photo/f2d91c37d/171755978/f2d91c37d0fae6364f1a3e360ab043b1.jpeg",
- "caption": "Cambridge-61.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db9482461/171755978/db9482461909a23d6a5c9d1f6b731eed_max_476x317.jpeg",
- "url": "property-photo/db9482461/171755978/db9482461909a23d6a5c9d1f6b731eed.jpeg",
- "caption": "Cambridge-62.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/708bf0def/171755978/708bf0defda66fb64bdc982f3575a549_max_476x317.jpeg",
- "url": "property-photo/708bf0def/171755978/708bf0defda66fb64bdc982f3575a549.jpeg",
- "caption": "Cambridge-28.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/836d22c7d/171755978/836d22c7d341b8b620fb236b28efb975_max_476x317.jpeg",
- "url": "property-photo/836d22c7d/171755978/836d22c7d341b8b620fb236b28efb975.jpeg",
- "caption": "Cambridge-30.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c1aaa99b/171755978/5c1aaa99b25632e3e648962d0659b5d3_max_476x317.jpeg",
- "url": "property-photo/5c1aaa99b/171755978/5c1aaa99b25632e3e648962d0659b5d3.jpeg",
- "caption": "Cambridge-32.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fed93f4a6/171755978/fed93f4a65a8cb078853148d5650b3ae_max_476x317.jpeg",
- "url": "property-photo/fed93f4a6/171755978/fed93f4a65a8cb078853148d5650b3ae.jpeg",
- "caption": "Cambridge-33.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d8afc5b7/171755978/3d8afc5b706f881d59033196a1874d3d_max_476x317.jpeg",
- "url": "property-photo/3d8afc5b7/171755978/3d8afc5b706f881d59033196a1874d3d.jpeg",
- "caption": "Cambridge-38.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/739ea3019/171755978/739ea3019fb6b5b97090f8091051d9c4_max_476x317.jpeg",
- "url": "property-photo/739ea3019/171755978/739ea3019fb6b5b97090f8091051d9c4.jpeg",
- "caption": "Cambridge-40.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5d7349076/171755978/5d7349076b74c0043ca1782c988b6ed7_max_476x317.jpeg",
- "url": "property-photo/5d7349076/171755978/5d7349076b74c0043ca1782c988b6ed7.jpeg",
- "caption": "Cambridge-41.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e21feffd9/171755978/e21feffd9fb1f97b855c726ec3ea4ec7_max_476x317.jpeg",
- "url": "property-photo/e21feffd9/171755978/e21feffd9fb1f97b855c726ec3ea4ec7.jpeg",
- "caption": "Cambridge-42.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d9c8ff70f/171755978/d9c8ff70f8685267c3d6288f4fe39c39_max_476x317.jpeg",
- "url": "property-photo/d9c8ff70f/171755978/d9c8ff70f8685267c3d6288f4fe39c39.jpeg",
- "caption": "Cambridge-43.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f97195184/171755978/f97195184b187bc9783441e8aeb7e05e_max_476x317.jpeg",
- "url": "property-photo/f97195184/171755978/f97195184b187bc9783441e8aeb7e05e.jpeg",
- "caption": "Cambridge-45.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a7535a05f/171755978/a7535a05f0e08c56d8bf2de08117e02f_max_476x317.jpeg",
- "url": "property-photo/a7535a05f/171755978/a7535a05f0e08c56d8bf2de08117e02f.jpeg",
- "caption": "Cambridge-46.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/82dccc045/171755978/82dccc04583a64ac4ee3b972c5a6acf0_max_476x317.jpeg",
- "url": "property-photo/82dccc045/171755978/82dccc04583a64ac4ee3b972c5a6acf0.jpeg",
- "caption": "Cambridge-67.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/03c34a4c7/171755978/03c34a4c76bd1a2099e0ed3dce92596c_max_476x317.jpeg",
- "url": "property-photo/03c34a4c7/171755978/03c34a4c76bd1a2099e0ed3dce92596c.jpeg",
- "caption": "Cambridge-68.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3e14a1329/171755978/3e14a132995458aa8af6f487748d28bb_max_476x317.jpeg",
- "url": "property-photo/3e14a1329/171755978/3e14a132995458aa8af6f487748d28bb.jpeg",
- "caption": "Cambridge-71.1.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2bee2e4ee/171755978/2bee2e4ee2a0c27742a9f73ec15a07ec_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2bee2e4ee/171755978/2bee2e4ee2a0c27742a9f73ec15a07ec_max_296x197.jpeg"
- },
- "formattedBranchName": " by Durden & Hunt, Wanstead & East London",
- "addedOrReduced": "Added on 02/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "5 bedroom terraced house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 168206459,
- "bedrooms": 4,
- "bathrooms": 2,
- "numberOfImages": 38,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Petty Son & Prestwich present to market this elegant four-bedroom Edwardian family home with garage, enviably positioned enjoying direct access via a private gate, and views over, the stunning Wanstead Park.",
- "displayAddress": "Woodlands Avenue, Wanstead",
- "countryCode": "GB",
- "location": { "latitude": 51.565513, "longitude": 0.030693 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f2898495/168206459/6f2898495d7b5f6926f3be6ef0e4ab10_max_476x317.jpeg",
- "url": "property-photo/6f2898495/168206459/6f2898495d7b5f6926f3be6ef0e4ab10.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ffd596702/168206459/ffd596702006ae72cbaca8b3c9157b05_max_476x317.jpeg",
- "url": "property-photo/ffd596702/168206459/ffd596702006ae72cbaca8b3c9157b05.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a2c12704/168206459/1a2c127042c636a8e45830a62d550694_max_476x317.jpeg",
- "url": "property-photo/1a2c12704/168206459/1a2c127042c636a8e45830a62d550694.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2b5229cda/168206459/2b5229cda20b509d611756132a5783a1_max_476x317.jpeg",
- "url": "property-photo/2b5229cda/168206459/2b5229cda20b509d611756132a5783a1.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/728294771/168206459/728294771a3d9ddc8f6dc8def9c1ee5f_max_476x317.jpeg",
- "url": "property-photo/728294771/168206459/728294771a3d9ddc8f6dc8def9c1ee5f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c84e9535/168206459/1c84e953578099c4bfdb99e1c5cc21dd_max_476x317.jpeg",
- "url": "property-photo/1c84e9535/168206459/1c84e953578099c4bfdb99e1c5cc21dd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/56fde56c6/168206459/56fde56c6873a46d765db9f50300503e_max_476x317.jpeg",
- "url": "property-photo/56fde56c6/168206459/56fde56c6873a46d765db9f50300503e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e3d9399db/168206459/e3d9399dba5d6dea29e4106ac5d83199_max_476x317.jpeg",
- "url": "property-photo/e3d9399db/168206459/e3d9399dba5d6dea29e4106ac5d83199.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a7baa9f1c/168206459/a7baa9f1cf444994f02321f735bdaf32_max_476x317.jpeg",
- "url": "property-photo/a7baa9f1c/168206459/a7baa9f1cf444994f02321f735bdaf32.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1bad8caf0/168206459/1bad8caf0a73b92b66cea674ce8ebaeb_max_476x317.jpeg",
- "url": "property-photo/1bad8caf0/168206459/1bad8caf0a73b92b66cea674ce8ebaeb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9fa663f84/168206459/9fa663f849188959c98505a194a15226_max_476x317.jpeg",
- "url": "property-photo/9fa663f84/168206459/9fa663f849188959c98505a194a15226.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/08c694b06/168206459/08c694b06bffad84df67a4439337a42c_max_476x317.jpeg",
- "url": "property-photo/08c694b06/168206459/08c694b06bffad84df67a4439337a42c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0f9179d1a/168206459/0f9179d1a83a6c82dd2719e7fd8547b4_max_476x317.jpeg",
- "url": "property-photo/0f9179d1a/168206459/0f9179d1a83a6c82dd2719e7fd8547b4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cd71cc050/168206459/cd71cc050616453691f124c1cee9cb5d_max_476x317.jpeg",
- "url": "property-photo/cd71cc050/168206459/cd71cc050616453691f124c1cee9cb5d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/02c870698/168206459/02c870698b8c849b3f2706acdf3b32ae_max_476x317.jpeg",
- "url": "property-photo/02c870698/168206459/02c870698b8c849b3f2706acdf3b32ae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/83858d136/168206459/83858d1361fb2b5c6672f0b95b45f687_max_476x317.jpeg",
- "url": "property-photo/83858d136/168206459/83858d1361fb2b5c6672f0b95b45f687.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9897b2b25/168206459/9897b2b25428adffcdf7938badb481bc_max_476x317.jpeg",
- "url": "property-photo/9897b2b25/168206459/9897b2b25428adffcdf7938badb481bc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d33ce6d2c/168206459/d33ce6d2cabd4c069afe6060cf7b47b5_max_476x317.jpeg",
- "url": "property-photo/d33ce6d2c/168206459/d33ce6d2cabd4c069afe6060cf7b47b5.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f47343097/168206459/f473430978e78ca137ddee81e4912828_max_476x317.jpeg",
- "url": "property-photo/f47343097/168206459/f473430978e78ca137ddee81e4912828.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2ace89924/168206459/2ace899241b194fdada079085967d39c_max_476x317.jpeg",
- "url": "property-photo/2ace89924/168206459/2ace899241b194fdada079085967d39c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9e0f39e3d/168206459/9e0f39e3db43929a1581aee664d3a711_max_476x317.jpeg",
- "url": "property-photo/9e0f39e3d/168206459/9e0f39e3db43929a1581aee664d3a711.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/58705ae74/168206459/58705ae741ad32f391b6661e60db0465_max_476x317.jpeg",
- "url": "property-photo/58705ae74/168206459/58705ae741ad32f391b6661e60db0465.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/901289536/168206459/901289536efc1d8abd587917c56a5c0c_max_476x317.jpeg",
- "url": "property-photo/901289536/168206459/901289536efc1d8abd587917c56a5c0c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a8d716e48/168206459/a8d716e485a75222c3e07c5c3bb5dc29_max_476x317.jpeg",
- "url": "property-photo/a8d716e48/168206459/a8d716e485a75222c3e07c5c3bb5dc29.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/45b988f38/168206459/45b988f387e20b6e38037df65a4ba10f_max_476x317.jpeg",
- "url": "property-photo/45b988f38/168206459/45b988f387e20b6e38037df65a4ba10f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9eff3d6fc/168206459/9eff3d6fc9ede63e5c8ddd54c121ccd0_max_476x317.jpeg",
- "url": "property-photo/9eff3d6fc/168206459/9eff3d6fc9ede63e5c8ddd54c121ccd0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/810fb0c28/168206459/810fb0c2893b7747b2119c50665cdb7f_max_476x317.jpeg",
- "url": "property-photo/810fb0c28/168206459/810fb0c2893b7747b2119c50665cdb7f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/77cded2d2/168206459/77cded2d20d0431fe41e21674797af2a_max_476x317.jpeg",
- "url": "property-photo/77cded2d2/168206459/77cded2d20d0431fe41e21674797af2a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ffb84d2d/168206459/9ffb84d2ddd38b74b7a6ddd4d293f5d9_max_476x317.jpeg",
- "url": "property-photo/9ffb84d2d/168206459/9ffb84d2ddd38b74b7a6ddd4d293f5d9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d1bc770ee/168206459/d1bc770eeebe7306b75fb42d7096285b_max_476x317.jpeg",
- "url": "property-photo/d1bc770ee/168206459/d1bc770eeebe7306b75fb42d7096285b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cdc434180/168206459/cdc434180c2af55582f127695e8dd972_max_476x317.jpeg",
- "url": "property-photo/cdc434180/168206459/cdc434180c2af55582f127695e8dd972.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e003e8998/168206459/e003e8998c0597f68b1f73e974139001_max_476x317.jpeg",
- "url": "property-photo/e003e8998/168206459/e003e8998c0597f68b1f73e974139001.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c2939aae4/168206459/c2939aae4b26e766f350f9238fe0d256_max_476x317.jpeg",
- "url": "property-photo/c2939aae4/168206459/c2939aae4b26e766f350f9238fe0d256.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5ba02595f/168206459/5ba02595fcf867ea2702a8414777508a_max_476x317.jpeg",
- "url": "property-photo/5ba02595f/168206459/5ba02595fcf867ea2702a8414777508a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/352b31687/168206459/352b31687ddb14b57c3df2b6a8e21195_max_476x317.jpeg",
- "url": "property-photo/352b31687/168206459/352b31687ddb14b57c3df2b6a8e21195.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7e0cc210d/168206459/7e0cc210daf82a8686c11723b38a76f2_max_476x317.jpeg",
- "url": "property-photo/7e0cc210d/168206459/7e0cc210daf82a8686c11723b38a76f2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d39d09744/168206459/d39d0974479c716fe325815650164de9_max_476x317.jpeg",
- "url": "property-photo/d39d09744/168206459/d39d0974479c716fe325815650164de9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9cfbfb231/168206459/9cfbfb231f495cd32e010fd0a91fdb2a_max_476x317.jpeg",
- "url": "property-photo/9cfbfb231/168206459/9cfbfb231f495cd32e010fd0a91fdb2a.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "House",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-10-15T14:29:03Z"
- },
- "price": {
- "amount": 1350000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£1,350,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 70202,
- "brandPlusLogoURI": "/71k/70202/branch_rmchoice_logo_70202_0000.jpeg",
- "contactTelephone": "020 3879 9971",
- "branchDisplayName": "Petty Son & Prestwich Ltd, London",
- "branchName": "London",
- "brandTradingName": "Petty Son & Prestwich Ltd",
- "branchLandingPageUrl": "/estate-agents/agent/Petty-Son-and-Prestwich-Ltd/London-70202.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-10-30T17:30:19Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/71k/70202/branch_rmchoice_logo_70202_0000.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "1,824 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/168206459#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=168206459",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-10-15T14:23:28Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-10T14:03:00Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Semi-detached Edwardian home",
- "htmlDescription": "Semi-detached Edwardian home"
- },
- {
- "order": 2,
- "description": "Direct access to Wanstead Park via secure, rear gate",
- "htmlDescription": "Direct access to Wanstead Park via secure, rear gate"
- },
- {
- "order": 3,
- "description": "Fully extended and presented beautifully",
- "htmlDescription": "Fully extended and presented beautifully"
- },
- {
- "order": 4,
- "description": "Large kitchen/diner/family space",
- "htmlDescription": "Large kitchen/diner/family space"
- },
- {
- "order": 5,
- "description": "Elegant formal sitting room",
- "htmlDescription": "Elegant formal sitting room"
- },
- {
- "order": 6,
- "description": "An abundance of original features",
- "htmlDescription": "An abundance of original features"
- },
- {
- "order": 7,
- "description": "1.5 Miles to Manor Park Station on the Elizabeth Line",
- "htmlDescription": "1.5 Miles to Manor Park Station on the Elizabeth Line"
- },
- {
- "order": 8,
- "description": "Large family bathroom & en-suite to principal",
- "htmlDescription": "Large family bathroom & en-suite to principal"
- },
- {
- "order": 9,
- "description": "Cellar and ground floor W.C",
- "htmlDescription": "Cellar and ground floor W.C"
- },
- {
- "order": 10,
- "description": "Landscaped rear garden with garage",
- "htmlDescription": "Landscaped rear garden with garage"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f2898495/168206459/6f2898495d7b5f6926f3be6ef0e4ab10_max_476x317.jpeg",
- "url": "property-photo/6f2898495/168206459/6f2898495d7b5f6926f3be6ef0e4ab10.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ffd596702/168206459/ffd596702006ae72cbaca8b3c9157b05_max_476x317.jpeg",
- "url": "property-photo/ffd596702/168206459/ffd596702006ae72cbaca8b3c9157b05.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a2c12704/168206459/1a2c127042c636a8e45830a62d550694_max_476x317.jpeg",
- "url": "property-photo/1a2c12704/168206459/1a2c127042c636a8e45830a62d550694.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2b5229cda/168206459/2b5229cda20b509d611756132a5783a1_max_476x317.jpeg",
- "url": "property-photo/2b5229cda/168206459/2b5229cda20b509d611756132a5783a1.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/728294771/168206459/728294771a3d9ddc8f6dc8def9c1ee5f_max_476x317.jpeg",
- "url": "property-photo/728294771/168206459/728294771a3d9ddc8f6dc8def9c1ee5f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c84e9535/168206459/1c84e953578099c4bfdb99e1c5cc21dd_max_476x317.jpeg",
- "url": "property-photo/1c84e9535/168206459/1c84e953578099c4bfdb99e1c5cc21dd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/56fde56c6/168206459/56fde56c6873a46d765db9f50300503e_max_476x317.jpeg",
- "url": "property-photo/56fde56c6/168206459/56fde56c6873a46d765db9f50300503e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e3d9399db/168206459/e3d9399dba5d6dea29e4106ac5d83199_max_476x317.jpeg",
- "url": "property-photo/e3d9399db/168206459/e3d9399dba5d6dea29e4106ac5d83199.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a7baa9f1c/168206459/a7baa9f1cf444994f02321f735bdaf32_max_476x317.jpeg",
- "url": "property-photo/a7baa9f1c/168206459/a7baa9f1cf444994f02321f735bdaf32.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1bad8caf0/168206459/1bad8caf0a73b92b66cea674ce8ebaeb_max_476x317.jpeg",
- "url": "property-photo/1bad8caf0/168206459/1bad8caf0a73b92b66cea674ce8ebaeb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9fa663f84/168206459/9fa663f849188959c98505a194a15226_max_476x317.jpeg",
- "url": "property-photo/9fa663f84/168206459/9fa663f849188959c98505a194a15226.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/08c694b06/168206459/08c694b06bffad84df67a4439337a42c_max_476x317.jpeg",
- "url": "property-photo/08c694b06/168206459/08c694b06bffad84df67a4439337a42c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0f9179d1a/168206459/0f9179d1a83a6c82dd2719e7fd8547b4_max_476x317.jpeg",
- "url": "property-photo/0f9179d1a/168206459/0f9179d1a83a6c82dd2719e7fd8547b4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cd71cc050/168206459/cd71cc050616453691f124c1cee9cb5d_max_476x317.jpeg",
- "url": "property-photo/cd71cc050/168206459/cd71cc050616453691f124c1cee9cb5d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/02c870698/168206459/02c870698b8c849b3f2706acdf3b32ae_max_476x317.jpeg",
- "url": "property-photo/02c870698/168206459/02c870698b8c849b3f2706acdf3b32ae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/83858d136/168206459/83858d1361fb2b5c6672f0b95b45f687_max_476x317.jpeg",
- "url": "property-photo/83858d136/168206459/83858d1361fb2b5c6672f0b95b45f687.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9897b2b25/168206459/9897b2b25428adffcdf7938badb481bc_max_476x317.jpeg",
- "url": "property-photo/9897b2b25/168206459/9897b2b25428adffcdf7938badb481bc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d33ce6d2c/168206459/d33ce6d2cabd4c069afe6060cf7b47b5_max_476x317.jpeg",
- "url": "property-photo/d33ce6d2c/168206459/d33ce6d2cabd4c069afe6060cf7b47b5.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f47343097/168206459/f473430978e78ca137ddee81e4912828_max_476x317.jpeg",
- "url": "property-photo/f47343097/168206459/f473430978e78ca137ddee81e4912828.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2ace89924/168206459/2ace899241b194fdada079085967d39c_max_476x317.jpeg",
- "url": "property-photo/2ace89924/168206459/2ace899241b194fdada079085967d39c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9e0f39e3d/168206459/9e0f39e3db43929a1581aee664d3a711_max_476x317.jpeg",
- "url": "property-photo/9e0f39e3d/168206459/9e0f39e3db43929a1581aee664d3a711.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/58705ae74/168206459/58705ae741ad32f391b6661e60db0465_max_476x317.jpeg",
- "url": "property-photo/58705ae74/168206459/58705ae741ad32f391b6661e60db0465.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/901289536/168206459/901289536efc1d8abd587917c56a5c0c_max_476x317.jpeg",
- "url": "property-photo/901289536/168206459/901289536efc1d8abd587917c56a5c0c.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a8d716e48/168206459/a8d716e485a75222c3e07c5c3bb5dc29_max_476x317.jpeg",
- "url": "property-photo/a8d716e48/168206459/a8d716e485a75222c3e07c5c3bb5dc29.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/45b988f38/168206459/45b988f387e20b6e38037df65a4ba10f_max_476x317.jpeg",
- "url": "property-photo/45b988f38/168206459/45b988f387e20b6e38037df65a4ba10f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9eff3d6fc/168206459/9eff3d6fc9ede63e5c8ddd54c121ccd0_max_476x317.jpeg",
- "url": "property-photo/9eff3d6fc/168206459/9eff3d6fc9ede63e5c8ddd54c121ccd0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/810fb0c28/168206459/810fb0c2893b7747b2119c50665cdb7f_max_476x317.jpeg",
- "url": "property-photo/810fb0c28/168206459/810fb0c2893b7747b2119c50665cdb7f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/77cded2d2/168206459/77cded2d20d0431fe41e21674797af2a_max_476x317.jpeg",
- "url": "property-photo/77cded2d2/168206459/77cded2d20d0431fe41e21674797af2a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ffb84d2d/168206459/9ffb84d2ddd38b74b7a6ddd4d293f5d9_max_476x317.jpeg",
- "url": "property-photo/9ffb84d2d/168206459/9ffb84d2ddd38b74b7a6ddd4d293f5d9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d1bc770ee/168206459/d1bc770eeebe7306b75fb42d7096285b_max_476x317.jpeg",
- "url": "property-photo/d1bc770ee/168206459/d1bc770eeebe7306b75fb42d7096285b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cdc434180/168206459/cdc434180c2af55582f127695e8dd972_max_476x317.jpeg",
- "url": "property-photo/cdc434180/168206459/cdc434180c2af55582f127695e8dd972.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e003e8998/168206459/e003e8998c0597f68b1f73e974139001_max_476x317.jpeg",
- "url": "property-photo/e003e8998/168206459/e003e8998c0597f68b1f73e974139001.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c2939aae4/168206459/c2939aae4b26e766f350f9238fe0d256_max_476x317.jpeg",
- "url": "property-photo/c2939aae4/168206459/c2939aae4b26e766f350f9238fe0d256.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5ba02595f/168206459/5ba02595fcf867ea2702a8414777508a_max_476x317.jpeg",
- "url": "property-photo/5ba02595f/168206459/5ba02595fcf867ea2702a8414777508a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/352b31687/168206459/352b31687ddb14b57c3df2b6a8e21195_max_476x317.jpeg",
- "url": "property-photo/352b31687/168206459/352b31687ddb14b57c3df2b6a8e21195.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7e0cc210d/168206459/7e0cc210daf82a8686c11723b38a76f2_max_476x317.jpeg",
- "url": "property-photo/7e0cc210d/168206459/7e0cc210daf82a8686c11723b38a76f2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d39d09744/168206459/d39d0974479c716fe325815650164de9_max_476x317.jpeg",
- "url": "property-photo/d39d09744/168206459/d39d0974479c716fe325815650164de9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9cfbfb231/168206459/9cfbfb231f495cd32e010fd0a91fdb2a_max_476x317.jpeg",
- "url": "property-photo/9cfbfb231/168206459/9cfbfb231f495cd32e010fd0a91fdb2a.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f2898495/168206459/6f2898495d7b5f6926f3be6ef0e4ab10_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f2898495/168206459/6f2898495d7b5f6926f3be6ef0e4ab10_max_296x197.jpeg"
- },
- "formattedBranchName": " by Petty Son & Prestwich Ltd, London",
- "addedOrReduced": "Added on 15/10/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "4 bedroom house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 168469889,
- "bedrooms": 4,
- "bathrooms": 3,
- "numberOfImages": 41,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Desirable Location - Great Transport Links -Spacious Garden - Garage & Adjoining Outbuilding - Off Road Parking - Multiple Reception Rooms - Open Plan Kitchen & Dining Room - Downstairs Family Shower Room - Utility Room - Primary Bedroom With En Suite - Three Additional Bedrooms - Contemporary Fa...",
- "displayAddress": "Preston Drive, Wanstead, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.579093, "longitude": 0.035973 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0b23405cb/168469889/0b23405cbaed314cbb2dfdffb99bdb21_max_476x317.jpeg",
- "url": "property-photo/0b23405cb/168469889/0b23405cbaed314cbb2dfdffb99bdb21.jpeg",
- "caption": "Preston-81.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7c0da6e12/168469889/7c0da6e124d375ed26f5a03f60d233e1_max_476x317.jpeg",
- "url": "property-photo/7c0da6e12/168469889/7c0da6e124d375ed26f5a03f60d233e1.jpeg",
- "caption": "Preston-41.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2d27408e4/168469889/2d27408e4889d8bfc9dcb66e8bcb0a3c_max_476x317.jpeg",
- "url": "property-photo/2d27408e4/168469889/2d27408e4889d8bfc9dcb66e8bcb0a3c.jpeg",
- "caption": "Preston-42.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2c22a82c1/168469889/2c22a82c15ca641f0bba1013ded5fbd6_max_476x317.jpeg",
- "url": "property-photo/2c22a82c1/168469889/2c22a82c15ca641f0bba1013ded5fbd6.jpeg",
- "caption": "Preston-43.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bae32b231/168469889/bae32b231a305b47f9962ddbd7f78335_max_476x317.jpeg",
- "url": "property-photo/bae32b231/168469889/bae32b231a305b47f9962ddbd7f78335.jpeg",
- "caption": "Preston-44.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ffb37fc87/168469889/ffb37fc87f4a4661f3015647be004176_max_476x317.jpeg",
- "url": "property-photo/ffb37fc87/168469889/ffb37fc87f4a4661f3015647be004176.jpeg",
- "caption": "Preston-45.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/519a666b4/168469889/519a666b4c600c4927e8681a1d718208_max_476x317.jpeg",
- "url": "property-photo/519a666b4/168469889/519a666b4c600c4927e8681a1d718208.jpeg",
- "caption": "Preston-46.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/19f6323bb/168469889/19f6323bbf0c98e7c79e52bdbfee515e_max_476x317.jpeg",
- "url": "property-photo/19f6323bb/168469889/19f6323bbf0c98e7c79e52bdbfee515e.jpeg",
- "caption": "Preston-47.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fdfd94f36/168469889/fdfd94f363c0c41d253e4b176392706b_max_476x317.jpeg",
- "url": "property-photo/fdfd94f36/168469889/fdfd94f363c0c41d253e4b176392706b.jpeg",
- "caption": "Preston-48.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d58c3d82d/168469889/d58c3d82d2c6f4671135930a0c72a32a_max_476x317.jpeg",
- "url": "property-photo/d58c3d82d/168469889/d58c3d82d2c6f4671135930a0c72a32a.jpeg",
- "caption": "Preston-49.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8852be63d/168469889/8852be63d856d2aea229673edf3458cc_max_476x317.jpeg",
- "url": "property-photo/8852be63d/168469889/8852be63d856d2aea229673edf3458cc.jpeg",
- "caption": "Preston-50.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/12fb46947/168469889/12fb4694773eee99ccb19edb160f1276_max_476x317.jpeg",
- "url": "property-photo/12fb46947/168469889/12fb4694773eee99ccb19edb160f1276.jpeg",
- "caption": "Preston-51.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/36d7b7959/168469889/36d7b795943d5499592791aed38d0cb1_max_476x317.jpeg",
- "url": "property-photo/36d7b7959/168469889/36d7b795943d5499592791aed38d0cb1.jpeg",
- "caption": "Preston-52.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bcafc8e84/168469889/bcafc8e8481b8f012bd82e82ab25484d_max_476x317.jpeg",
- "url": "property-photo/bcafc8e84/168469889/bcafc8e8481b8f012bd82e82ab25484d.jpeg",
- "caption": "Preston-53.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2748842d8/168469889/2748842d8ba53bc6ffcfe413e8debd31_max_476x317.jpeg",
- "url": "property-photo/2748842d8/168469889/2748842d8ba53bc6ffcfe413e8debd31.jpeg",
- "caption": "Preston-54.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0aeb50d8a/168469889/0aeb50d8a9f1f8a5146b52295a1cfff5_max_476x317.jpeg",
- "url": "property-photo/0aeb50d8a/168469889/0aeb50d8a9f1f8a5146b52295a1cfff5.jpeg",
- "caption": "Preston-55.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3b1c4c18b/168469889/3b1c4c18bf170111543cadfba8abe138_max_476x317.jpeg",
- "url": "property-photo/3b1c4c18b/168469889/3b1c4c18bf170111543cadfba8abe138.jpeg",
- "caption": "Preston-56.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/25e6beb88/168469889/25e6beb888576aeeeeda5ab1a1bccb54_max_476x317.jpeg",
- "url": "property-photo/25e6beb88/168469889/25e6beb888576aeeeeda5ab1a1bccb54.jpeg",
- "caption": "Preston-57.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91327c096/168469889/91327c096b728b143cd281587e7ef132_max_476x317.jpeg",
- "url": "property-photo/91327c096/168469889/91327c096b728b143cd281587e7ef132.jpeg",
- "caption": "Preston-58.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/723fc87e2/168469889/723fc87e2d5591976e50a03dc32c7c16_max_476x317.jpeg",
- "url": "property-photo/723fc87e2/168469889/723fc87e2d5591976e50a03dc32c7c16.jpeg",
- "caption": "Preston-59.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e8a54ee76/168469889/e8a54ee761cbaf6d8b870e101dd681dd_max_476x317.jpeg",
- "url": "property-photo/e8a54ee76/168469889/e8a54ee761cbaf6d8b870e101dd681dd.jpeg",
- "caption": "Preston-61.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ebf6801fe/168469889/ebf6801fe40e272102709f6c28e85909_max_476x317.jpeg",
- "url": "property-photo/ebf6801fe/168469889/ebf6801fe40e272102709f6c28e85909.jpeg",
- "caption": "Preston-62.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/578a312bb/168469889/578a312bb3f0ee28e24559c3ffd65207_max_476x317.jpeg",
- "url": "property-photo/578a312bb/168469889/578a312bb3f0ee28e24559c3ffd65207.jpeg",
- "caption": "Preston-63.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a90f1b14e/168469889/a90f1b14e6eeb19ec6c802015705edeb_max_476x317.jpeg",
- "url": "property-photo/a90f1b14e/168469889/a90f1b14e6eeb19ec6c802015705edeb.jpeg",
- "caption": "Preston-64.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ad007918f/168469889/ad007918fc71e1a740a1f4aa309242fa_max_476x317.jpeg",
- "url": "property-photo/ad007918f/168469889/ad007918fc71e1a740a1f4aa309242fa.jpeg",
- "caption": "Preston-65.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/51b09a140/168469889/51b09a140366a3624eb64d15f7aca418_max_476x317.jpeg",
- "url": "property-photo/51b09a140/168469889/51b09a140366a3624eb64d15f7aca418.jpeg",
- "caption": "Preston-66.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b4021f73/168469889/5b4021f737c9368e4bb9069ff1377d80_max_476x317.jpeg",
- "url": "property-photo/5b4021f73/168469889/5b4021f737c9368e4bb9069ff1377d80.jpeg",
- "caption": "Preston-67.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/73cecb1b8/168469889/73cecb1b81c358ea1953bc54a29b1d0a_max_476x317.jpeg",
- "url": "property-photo/73cecb1b8/168469889/73cecb1b81c358ea1953bc54a29b1d0a.jpeg",
- "caption": "Preston-68.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54bcf900a/168469889/54bcf900af7bb09672da95f5741227dd_max_476x317.jpeg",
- "url": "property-photo/54bcf900a/168469889/54bcf900af7bb09672da95f5741227dd.jpeg",
- "caption": "Preston-69.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/091aefd71/168469889/091aefd71a4e3bbc5c3134afece534cd_max_476x317.jpeg",
- "url": "property-photo/091aefd71/168469889/091aefd71a4e3bbc5c3134afece534cd.jpeg",
- "caption": "Preston-70.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e214347ba/168469889/e214347ba7bb4a22ad8044193c68bcf8_max_476x317.jpeg",
- "url": "property-photo/e214347ba/168469889/e214347ba7bb4a22ad8044193c68bcf8.jpeg",
- "caption": "Preston-71.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/88cf9f0cd/168469889/88cf9f0cd1591563e85ec9d133c027c3_max_476x317.jpeg",
- "url": "property-photo/88cf9f0cd/168469889/88cf9f0cd1591563e85ec9d133c027c3.jpeg",
- "caption": "Preston-72.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3f891d1f9/168469889/3f891d1f9c55894d680ef01662d9ad53_max_476x317.jpeg",
- "url": "property-photo/3f891d1f9/168469889/3f891d1f9c55894d680ef01662d9ad53.jpeg",
- "caption": "Preston-73.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6ea6e41cc/168469889/6ea6e41cc7e50eb7ddfab52cc641b8f5_max_476x317.jpeg",
- "url": "property-photo/6ea6e41cc/168469889/6ea6e41cc7e50eb7ddfab52cc641b8f5.jpeg",
- "caption": "Preston-74.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c8c61d266/168469889/c8c61d266faebef745fead87448c616a_max_476x317.jpeg",
- "url": "property-photo/c8c61d266/168469889/c8c61d266faebef745fead87448c616a.jpeg",
- "caption": "Preston-75.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4ce48ce3f/168469889/4ce48ce3f3e4e0df94e9ec81f6267fb8_max_476x317.jpeg",
- "url": "property-photo/4ce48ce3f/168469889/4ce48ce3f3e4e0df94e9ec81f6267fb8.jpeg",
- "caption": "Preston-76.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9defbfe43/168469889/9defbfe43573c019f590b7c5ceac5275_max_476x317.jpeg",
- "url": "property-photo/9defbfe43/168469889/9defbfe43573c019f590b7c5ceac5275.jpeg",
- "caption": "Preston-77.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0ed006979/168469889/0ed006979dc2185c8b3b6bc124b0a7a9_max_476x317.jpeg",
- "url": "property-photo/0ed006979/168469889/0ed006979dc2185c8b3b6bc124b0a7a9.jpeg",
- "caption": "Preston-78.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fad7dbc86/168469889/fad7dbc86ef417389bf8c48bb97cf3c5_max_476x317.jpeg",
- "url": "property-photo/fad7dbc86/168469889/fad7dbc86ef417389bf8c48bb97cf3c5.jpeg",
- "caption": "Preston-79.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/de6cffb56/168469889/de6cffb5640507984924288dd332f400_max_476x317.jpeg",
- "url": "property-photo/de6cffb56/168469889/de6cffb5640507984924288dd332f400.jpeg",
- "caption": "Preston-82.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7fac58b8c/168469889/7fac58b8c92bacef04655d115be9a734_max_476x317.jpeg",
- "url": "property-photo/7fac58b8c/168469889/7fac58b8c92bacef04655d115be9a734.jpeg",
- "caption": "Preston-84.1.jpg"
- }
- ],
- "propertySubType": "End of Terrace",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2026-02-09T10:04:12Z"
- },
- "price": {
- "amount": 1350000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£1,350,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 273152,
- "brandPlusLogoURI": "/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "contactTelephone": "020 8138 0636",
- "branchDisplayName": "Durden & Hunt, Wanstead & East London",
- "branchName": "Wanstead & East London",
- "brandTradingName": "Durden & Hunt",
- "branchLandingPageUrl": "/estate-agents/agent/Durden-and-Hunt/Wanstead-and-East-London-273152.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-01T10:42:02Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/274k/273152/branch_rmchoice_logo_273152_0000.png",
- "primaryBrandColour": "#000000"
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "2,804 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/168469889#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=168469889",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-10-22T10:01:36Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-09T10:04:14Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Desirable Location",
- "htmlDescription": "Desirable Location"
- },
- {
- "order": 2,
- "description": "Great Transport Links",
- "htmlDescription": "Great Transport Links"
- },
- {
- "order": 3,
- "description": "Spacious Garden",
- "htmlDescription": "Spacious Garden"
- },
- {
- "order": 4,
- "description": "Garage & Adjoining Outbuilding",
- "htmlDescription": "Garage & Adjoining Outbuilding"
- },
- {
- "order": 5,
- "description": "Off Road Parking",
- "htmlDescription": "Off Road Parking"
- },
- {
- "order": 6,
- "description": "Multiple Reception Rooms",
- "htmlDescription": "Multiple Reception Rooms"
- },
- {
- "order": 7,
- "description": "Open Plan Kitchen & Dining Room",
- "htmlDescription": "Open Plan Kitchen & Dining Room"
- },
- {
- "order": 8,
- "description": "Downstairs Family Shower Room",
- "htmlDescription": "Downstairs Family Shower Room"
- },
- {
- "order": 9,
- "description": "Utility Room",
- "htmlDescription": "Utility Room"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0b23405cb/168469889/0b23405cbaed314cbb2dfdffb99bdb21_max_476x317.jpeg",
- "url": "property-photo/0b23405cb/168469889/0b23405cbaed314cbb2dfdffb99bdb21.jpeg",
- "caption": "Preston-81.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7c0da6e12/168469889/7c0da6e124d375ed26f5a03f60d233e1_max_476x317.jpeg",
- "url": "property-photo/7c0da6e12/168469889/7c0da6e124d375ed26f5a03f60d233e1.jpeg",
- "caption": "Preston-41.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2d27408e4/168469889/2d27408e4889d8bfc9dcb66e8bcb0a3c_max_476x317.jpeg",
- "url": "property-photo/2d27408e4/168469889/2d27408e4889d8bfc9dcb66e8bcb0a3c.jpeg",
- "caption": "Preston-42.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2c22a82c1/168469889/2c22a82c15ca641f0bba1013ded5fbd6_max_476x317.jpeg",
- "url": "property-photo/2c22a82c1/168469889/2c22a82c15ca641f0bba1013ded5fbd6.jpeg",
- "caption": "Preston-43.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bae32b231/168469889/bae32b231a305b47f9962ddbd7f78335_max_476x317.jpeg",
- "url": "property-photo/bae32b231/168469889/bae32b231a305b47f9962ddbd7f78335.jpeg",
- "caption": "Preston-44.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ffb37fc87/168469889/ffb37fc87f4a4661f3015647be004176_max_476x317.jpeg",
- "url": "property-photo/ffb37fc87/168469889/ffb37fc87f4a4661f3015647be004176.jpeg",
- "caption": "Preston-45.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/519a666b4/168469889/519a666b4c600c4927e8681a1d718208_max_476x317.jpeg",
- "url": "property-photo/519a666b4/168469889/519a666b4c600c4927e8681a1d718208.jpeg",
- "caption": "Preston-46.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/19f6323bb/168469889/19f6323bbf0c98e7c79e52bdbfee515e_max_476x317.jpeg",
- "url": "property-photo/19f6323bb/168469889/19f6323bbf0c98e7c79e52bdbfee515e.jpeg",
- "caption": "Preston-47.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fdfd94f36/168469889/fdfd94f363c0c41d253e4b176392706b_max_476x317.jpeg",
- "url": "property-photo/fdfd94f36/168469889/fdfd94f363c0c41d253e4b176392706b.jpeg",
- "caption": "Preston-48.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d58c3d82d/168469889/d58c3d82d2c6f4671135930a0c72a32a_max_476x317.jpeg",
- "url": "property-photo/d58c3d82d/168469889/d58c3d82d2c6f4671135930a0c72a32a.jpeg",
- "caption": "Preston-49.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8852be63d/168469889/8852be63d856d2aea229673edf3458cc_max_476x317.jpeg",
- "url": "property-photo/8852be63d/168469889/8852be63d856d2aea229673edf3458cc.jpeg",
- "caption": "Preston-50.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/12fb46947/168469889/12fb4694773eee99ccb19edb160f1276_max_476x317.jpeg",
- "url": "property-photo/12fb46947/168469889/12fb4694773eee99ccb19edb160f1276.jpeg",
- "caption": "Preston-51.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/36d7b7959/168469889/36d7b795943d5499592791aed38d0cb1_max_476x317.jpeg",
- "url": "property-photo/36d7b7959/168469889/36d7b795943d5499592791aed38d0cb1.jpeg",
- "caption": "Preston-52.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bcafc8e84/168469889/bcafc8e8481b8f012bd82e82ab25484d_max_476x317.jpeg",
- "url": "property-photo/bcafc8e84/168469889/bcafc8e8481b8f012bd82e82ab25484d.jpeg",
- "caption": "Preston-53.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2748842d8/168469889/2748842d8ba53bc6ffcfe413e8debd31_max_476x317.jpeg",
- "url": "property-photo/2748842d8/168469889/2748842d8ba53bc6ffcfe413e8debd31.jpeg",
- "caption": "Preston-54.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0aeb50d8a/168469889/0aeb50d8a9f1f8a5146b52295a1cfff5_max_476x317.jpeg",
- "url": "property-photo/0aeb50d8a/168469889/0aeb50d8a9f1f8a5146b52295a1cfff5.jpeg",
- "caption": "Preston-55.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3b1c4c18b/168469889/3b1c4c18bf170111543cadfba8abe138_max_476x317.jpeg",
- "url": "property-photo/3b1c4c18b/168469889/3b1c4c18bf170111543cadfba8abe138.jpeg",
- "caption": "Preston-56.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/25e6beb88/168469889/25e6beb888576aeeeeda5ab1a1bccb54_max_476x317.jpeg",
- "url": "property-photo/25e6beb88/168469889/25e6beb888576aeeeeda5ab1a1bccb54.jpeg",
- "caption": "Preston-57.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91327c096/168469889/91327c096b728b143cd281587e7ef132_max_476x317.jpeg",
- "url": "property-photo/91327c096/168469889/91327c096b728b143cd281587e7ef132.jpeg",
- "caption": "Preston-58.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/723fc87e2/168469889/723fc87e2d5591976e50a03dc32c7c16_max_476x317.jpeg",
- "url": "property-photo/723fc87e2/168469889/723fc87e2d5591976e50a03dc32c7c16.jpeg",
- "caption": "Preston-59.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e8a54ee76/168469889/e8a54ee761cbaf6d8b870e101dd681dd_max_476x317.jpeg",
- "url": "property-photo/e8a54ee76/168469889/e8a54ee761cbaf6d8b870e101dd681dd.jpeg",
- "caption": "Preston-61.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ebf6801fe/168469889/ebf6801fe40e272102709f6c28e85909_max_476x317.jpeg",
- "url": "property-photo/ebf6801fe/168469889/ebf6801fe40e272102709f6c28e85909.jpeg",
- "caption": "Preston-62.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/578a312bb/168469889/578a312bb3f0ee28e24559c3ffd65207_max_476x317.jpeg",
- "url": "property-photo/578a312bb/168469889/578a312bb3f0ee28e24559c3ffd65207.jpeg",
- "caption": "Preston-63.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a90f1b14e/168469889/a90f1b14e6eeb19ec6c802015705edeb_max_476x317.jpeg",
- "url": "property-photo/a90f1b14e/168469889/a90f1b14e6eeb19ec6c802015705edeb.jpeg",
- "caption": "Preston-64.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ad007918f/168469889/ad007918fc71e1a740a1f4aa309242fa_max_476x317.jpeg",
- "url": "property-photo/ad007918f/168469889/ad007918fc71e1a740a1f4aa309242fa.jpeg",
- "caption": "Preston-65.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/51b09a140/168469889/51b09a140366a3624eb64d15f7aca418_max_476x317.jpeg",
- "url": "property-photo/51b09a140/168469889/51b09a140366a3624eb64d15f7aca418.jpeg",
- "caption": "Preston-66.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b4021f73/168469889/5b4021f737c9368e4bb9069ff1377d80_max_476x317.jpeg",
- "url": "property-photo/5b4021f73/168469889/5b4021f737c9368e4bb9069ff1377d80.jpeg",
- "caption": "Preston-67.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/73cecb1b8/168469889/73cecb1b81c358ea1953bc54a29b1d0a_max_476x317.jpeg",
- "url": "property-photo/73cecb1b8/168469889/73cecb1b81c358ea1953bc54a29b1d0a.jpeg",
- "caption": "Preston-68.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54bcf900a/168469889/54bcf900af7bb09672da95f5741227dd_max_476x317.jpeg",
- "url": "property-photo/54bcf900a/168469889/54bcf900af7bb09672da95f5741227dd.jpeg",
- "caption": "Preston-69.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/091aefd71/168469889/091aefd71a4e3bbc5c3134afece534cd_max_476x317.jpeg",
- "url": "property-photo/091aefd71/168469889/091aefd71a4e3bbc5c3134afece534cd.jpeg",
- "caption": "Preston-70.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e214347ba/168469889/e214347ba7bb4a22ad8044193c68bcf8_max_476x317.jpeg",
- "url": "property-photo/e214347ba/168469889/e214347ba7bb4a22ad8044193c68bcf8.jpeg",
- "caption": "Preston-71.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/88cf9f0cd/168469889/88cf9f0cd1591563e85ec9d133c027c3_max_476x317.jpeg",
- "url": "property-photo/88cf9f0cd/168469889/88cf9f0cd1591563e85ec9d133c027c3.jpeg",
- "caption": "Preston-72.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3f891d1f9/168469889/3f891d1f9c55894d680ef01662d9ad53_max_476x317.jpeg",
- "url": "property-photo/3f891d1f9/168469889/3f891d1f9c55894d680ef01662d9ad53.jpeg",
- "caption": "Preston-73.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6ea6e41cc/168469889/6ea6e41cc7e50eb7ddfab52cc641b8f5_max_476x317.jpeg",
- "url": "property-photo/6ea6e41cc/168469889/6ea6e41cc7e50eb7ddfab52cc641b8f5.jpeg",
- "caption": "Preston-74.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c8c61d266/168469889/c8c61d266faebef745fead87448c616a_max_476x317.jpeg",
- "url": "property-photo/c8c61d266/168469889/c8c61d266faebef745fead87448c616a.jpeg",
- "caption": "Preston-75.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4ce48ce3f/168469889/4ce48ce3f3e4e0df94e9ec81f6267fb8_max_476x317.jpeg",
- "url": "property-photo/4ce48ce3f/168469889/4ce48ce3f3e4e0df94e9ec81f6267fb8.jpeg",
- "caption": "Preston-76.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9defbfe43/168469889/9defbfe43573c019f590b7c5ceac5275_max_476x317.jpeg",
- "url": "property-photo/9defbfe43/168469889/9defbfe43573c019f590b7c5ceac5275.jpeg",
- "caption": "Preston-77.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0ed006979/168469889/0ed006979dc2185c8b3b6bc124b0a7a9_max_476x317.jpeg",
- "url": "property-photo/0ed006979/168469889/0ed006979dc2185c8b3b6bc124b0a7a9.jpeg",
- "caption": "Preston-78.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fad7dbc86/168469889/fad7dbc86ef417389bf8c48bb97cf3c5_max_476x317.jpeg",
- "url": "property-photo/fad7dbc86/168469889/fad7dbc86ef417389bf8c48bb97cf3c5.jpeg",
- "caption": "Preston-79.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/de6cffb56/168469889/de6cffb5640507984924288dd332f400_max_476x317.jpeg",
- "url": "property-photo/de6cffb56/168469889/de6cffb5640507984924288dd332f400.jpeg",
- "caption": "Preston-82.1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7fac58b8c/168469889/7fac58b8c92bacef04655d115be9a734_max_476x317.jpeg",
- "url": "property-photo/7fac58b8c/168469889/7fac58b8c92bacef04655d115be9a734.jpeg",
- "caption": "Preston-84.1.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0b23405cb/168469889/0b23405cbaed314cbb2dfdffb99bdb21_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0b23405cb/168469889/0b23405cbaed314cbb2dfdffb99bdb21_max_296x197.jpeg"
- },
- "formattedBranchName": " by Durden & Hunt, Wanstead & East London",
- "addedOrReduced": "Reduced on 09/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "4 bedroom end of terrace house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 165590606,
- "bedrooms": 6,
- "bathrooms": 5,
- "numberOfImages": 17,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Located on the desirable Fairlop Road, this impressive six-bedroom home offers expansive living space, a versatile layout, and a prime location just moments from Leytonstone Underground Station. The property features two large reception rooms both with high ceilings the large, bright...",
- "displayAddress": "Fairlop Road, London, E11",
- "countryCode": "GB",
- "location": { "latitude": 51.56989, "longitude": 0.00336 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/406858709/165590606/406858709eeb8f194d635afd6bf1d786_max_476x317.jpeg",
- "url": "property-photo/406858709/165590606/406858709eeb8f194d635afd6bf1d786.jpeg",
- "caption": "Picture No. 20"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7e829b259/165590606/7e829b25949c3e799fdff0112339a8f3_max_476x317.jpeg",
- "url": "property-photo/7e829b259/165590606/7e829b25949c3e799fdff0112339a8f3.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f34e33a66/165590606/f34e33a66d25da81108468bea6fa0bfc_max_476x317.jpeg",
- "url": "property-photo/f34e33a66/165590606/f34e33a66d25da81108468bea6fa0bfc.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5409cf6e8/165590606/5409cf6e8939b2693471bc1bec66637b_max_476x317.jpeg",
- "url": "property-photo/5409cf6e8/165590606/5409cf6e8939b2693471bc1bec66637b.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/999be9f06/165590606/999be9f060624e103587d9921ac86d27_max_476x317.jpeg",
- "url": "property-photo/999be9f06/165590606/999be9f060624e103587d9921ac86d27.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5deda01af/165590606/5deda01af33a0851ca04563c0f016f97_max_476x317.jpeg",
- "url": "property-photo/5deda01af/165590606/5deda01af33a0851ca04563c0f016f97.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/33e6bb985/165590606/33e6bb98562f5bd9950ce20150670c8d_max_476x317.jpeg",
- "url": "property-photo/33e6bb985/165590606/33e6bb98562f5bd9950ce20150670c8d.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/999aaa748/165590606/999aaa748a446cb91de68d5681a4d897_max_476x317.jpeg",
- "url": "property-photo/999aaa748/165590606/999aaa748a446cb91de68d5681a4d897.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6715976d2/165590606/6715976d252d25454cce7c00e506892e_max_476x317.jpeg",
- "url": "property-photo/6715976d2/165590606/6715976d252d25454cce7c00e506892e.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ba6bbb6a2/165590606/ba6bbb6a204b35b088ef029689e0b459_max_476x317.jpeg",
- "url": "property-photo/ba6bbb6a2/165590606/ba6bbb6a204b35b088ef029689e0b459.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ce294dd64/165590606/ce294dd646bea34ce171647a6f781a3e_max_476x317.jpeg",
- "url": "property-photo/ce294dd64/165590606/ce294dd646bea34ce171647a6f781a3e.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/42cea391d/165590606/42cea391d6bf4e53b0344a369af3105e_max_476x317.jpeg",
- "url": "property-photo/42cea391d/165590606/42cea391d6bf4e53b0344a369af3105e.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/eec46ffda/165590606/eec46ffda9885e752cb2cf0fe36e22e8_max_476x317.jpeg",
- "url": "property-photo/eec46ffda/165590606/eec46ffda9885e752cb2cf0fe36e22e8.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c2ae4ba4c/165590606/c2ae4ba4cbcff99f3592940ca0393870_max_476x317.jpeg",
- "url": "property-photo/c2ae4ba4c/165590606/c2ae4ba4cbcff99f3592940ca0393870.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/abc9537df/165590606/abc9537df1dd0156b0998b251d54b255_max_476x317.jpeg",
- "url": "property-photo/abc9537df/165590606/abc9537df1dd0156b0998b251d54b255.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ee829fe8d/165590606/ee829fe8de2377858049ee18aad050a5_max_476x317.jpeg",
- "url": "property-photo/ee829fe8d/165590606/ee829fe8de2377858049ee18aad050a5.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3685916f1/165590606/3685916f18deb7b8b1cd8be161ccf2e9_max_476x317.jpeg",
- "url": "property-photo/3685916f1/165590606/3685916f18deb7b8b1cd8be161ccf2e9.jpeg",
- "caption": "Photo"
- }
- ],
- "propertySubType": "Semi-Detached",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2025-08-11T09:57:02Z"
- },
- "price": {
- "amount": 1250000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- { "displayPrice": "£1,250,000", "displayPriceQualifier": "" }
- ]
- },
- "premiumListing": true,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 568,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_71570_0002.jpeg",
- "contactTelephone": "020 3869 5337",
- "branchDisplayName": "Bairstow Eves, Leytonstone",
- "branchName": "Leytonstone",
- "brandTradingName": "Bairstow Eves",
- "branchLandingPageUrl": "/estate-agents/agent/Bairstow-Eves/Leytonstone-568.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-09-10T14:56:55Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_71570_0002.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": {
- "productLabelText": "Premium Listing",
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/165590606#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=165590606",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2025-08-11T09:51:08Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-12T01:57:00Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/406858709/165590606/406858709eeb8f194d635afd6bf1d786_max_476x317.jpeg",
- "url": "property-photo/406858709/165590606/406858709eeb8f194d635afd6bf1d786.jpeg",
- "caption": "Picture No. 20"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7e829b259/165590606/7e829b25949c3e799fdff0112339a8f3_max_476x317.jpeg",
- "url": "property-photo/7e829b259/165590606/7e829b25949c3e799fdff0112339a8f3.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f34e33a66/165590606/f34e33a66d25da81108468bea6fa0bfc_max_476x317.jpeg",
- "url": "property-photo/f34e33a66/165590606/f34e33a66d25da81108468bea6fa0bfc.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5409cf6e8/165590606/5409cf6e8939b2693471bc1bec66637b_max_476x317.jpeg",
- "url": "property-photo/5409cf6e8/165590606/5409cf6e8939b2693471bc1bec66637b.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/999be9f06/165590606/999be9f060624e103587d9921ac86d27_max_476x317.jpeg",
- "url": "property-photo/999be9f06/165590606/999be9f060624e103587d9921ac86d27.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5deda01af/165590606/5deda01af33a0851ca04563c0f016f97_max_476x317.jpeg",
- "url": "property-photo/5deda01af/165590606/5deda01af33a0851ca04563c0f016f97.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/33e6bb985/165590606/33e6bb98562f5bd9950ce20150670c8d_max_476x317.jpeg",
- "url": "property-photo/33e6bb985/165590606/33e6bb98562f5bd9950ce20150670c8d.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/999aaa748/165590606/999aaa748a446cb91de68d5681a4d897_max_476x317.jpeg",
- "url": "property-photo/999aaa748/165590606/999aaa748a446cb91de68d5681a4d897.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6715976d2/165590606/6715976d252d25454cce7c00e506892e_max_476x317.jpeg",
- "url": "property-photo/6715976d2/165590606/6715976d252d25454cce7c00e506892e.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ba6bbb6a2/165590606/ba6bbb6a204b35b088ef029689e0b459_max_476x317.jpeg",
- "url": "property-photo/ba6bbb6a2/165590606/ba6bbb6a204b35b088ef029689e0b459.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ce294dd64/165590606/ce294dd646bea34ce171647a6f781a3e_max_476x317.jpeg",
- "url": "property-photo/ce294dd64/165590606/ce294dd646bea34ce171647a6f781a3e.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/42cea391d/165590606/42cea391d6bf4e53b0344a369af3105e_max_476x317.jpeg",
- "url": "property-photo/42cea391d/165590606/42cea391d6bf4e53b0344a369af3105e.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/eec46ffda/165590606/eec46ffda9885e752cb2cf0fe36e22e8_max_476x317.jpeg",
- "url": "property-photo/eec46ffda/165590606/eec46ffda9885e752cb2cf0fe36e22e8.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c2ae4ba4c/165590606/c2ae4ba4cbcff99f3592940ca0393870_max_476x317.jpeg",
- "url": "property-photo/c2ae4ba4c/165590606/c2ae4ba4cbcff99f3592940ca0393870.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/abc9537df/165590606/abc9537df1dd0156b0998b251d54b255_max_476x317.jpeg",
- "url": "property-photo/abc9537df/165590606/abc9537df1dd0156b0998b251d54b255.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ee829fe8d/165590606/ee829fe8de2377858049ee18aad050a5_max_476x317.jpeg",
- "url": "property-photo/ee829fe8d/165590606/ee829fe8de2377858049ee18aad050a5.jpeg",
- "caption": "Photo"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3685916f1/165590606/3685916f18deb7b8b1cd8be161ccf2e9_max_476x317.jpeg",
- "url": "property-photo/3685916f1/165590606/3685916f18deb7b8b1cd8be161ccf2e9.jpeg",
- "caption": "Photo"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/406858709/165590606/406858709eeb8f194d635afd6bf1d786_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/406858709/165590606/406858709eeb8f194d635afd6bf1d786_max_296x197.jpeg"
- },
- "formattedBranchName": " by Bairstow Eves, Leytonstone",
- "addedOrReduced": "Added on 11/08/2025",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "6 bedroom semi-detached house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 171831986,
- "bedrooms": 4,
- "bathrooms": 2,
- "numberOfImages": 35,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Petty Son and Prestwich are delighted to offer this beautifully extended four bedroom Edwardian residence, enviably positioned within the highly sought after Lakehouse Estate, a designated conservation area celebrated for its elegant period homes, leafy tree lined avenues and immediate proximity ...",
- "displayAddress": "Belgrave Road, Wanstead",
- "countryCode": "GB",
- "location": { "latitude": 51.563972, "longitude": 0.020991 },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/473517ea3/171831986/473517ea33a46d55c238d8f7509531ae_max_476x317.jpeg",
- "url": "property-photo/473517ea3/171831986/473517ea33a46d55c238d8f7509531ae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d7e19bc40/171831986/d7e19bc40b4057ade30cc67e1c0b80a2_max_476x317.jpeg",
- "url": "property-photo/d7e19bc40/171831986/d7e19bc40b4057ade30cc67e1c0b80a2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/46af35b81/171831986/46af35b817b44215c62ff7ba2b11972a_max_476x317.jpeg",
- "url": "property-photo/46af35b81/171831986/46af35b817b44215c62ff7ba2b11972a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1dd7050f6/171831986/1dd7050f6d09415bed6098faa1ce1c5a_max_476x317.jpeg",
- "url": "property-photo/1dd7050f6/171831986/1dd7050f6d09415bed6098faa1ce1c5a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/48d2f60a0/171831986/48d2f60a0cdef21def0df5c9ea33ade2_max_476x317.jpeg",
- "url": "property-photo/48d2f60a0/171831986/48d2f60a0cdef21def0df5c9ea33ade2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f7f1ee8e8/171831986/f7f1ee8e8d01b84c393a187c0f010fb5_max_476x317.jpeg",
- "url": "property-photo/f7f1ee8e8/171831986/f7f1ee8e8d01b84c393a187c0f010fb5.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3872d8b7a/171831986/3872d8b7a3248587e191ad63ab8392ab_max_476x317.jpeg",
- "url": "property-photo/3872d8b7a/171831986/3872d8b7a3248587e191ad63ab8392ab.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fb76fd41f/171831986/fb76fd41fdf71df83da8721d287c31eb_max_476x317.jpeg",
- "url": "property-photo/fb76fd41f/171831986/fb76fd41fdf71df83da8721d287c31eb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c3840fb4b/171831986/c3840fb4bbf60ca8d19d6ceefed28adb_max_476x317.jpeg",
- "url": "property-photo/c3840fb4b/171831986/c3840fb4bbf60ca8d19d6ceefed28adb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b15eed1f/171831986/6b15eed1f540544cd2f3190d4d2a484a_max_476x317.jpeg",
- "url": "property-photo/6b15eed1f/171831986/6b15eed1f540544cd2f3190d4d2a484a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/34672e1b8/171831986/34672e1b84dc922be8cf25ec1109bc94_max_476x317.jpeg",
- "url": "property-photo/34672e1b8/171831986/34672e1b84dc922be8cf25ec1109bc94.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5969318c3/171831986/5969318c31f1a87a020490b73e78fb20_max_476x317.jpeg",
- "url": "property-photo/5969318c3/171831986/5969318c31f1a87a020490b73e78fb20.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/edab48c4f/171831986/edab48c4ff1561763332471f7a0f2828_max_476x317.jpeg",
- "url": "property-photo/edab48c4f/171831986/edab48c4ff1561763332471f7a0f2828.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/83ed5bdf0/171831986/83ed5bdf024d9644bfed57e655f3fb9f_max_476x317.jpeg",
- "url": "property-photo/83ed5bdf0/171831986/83ed5bdf024d9644bfed57e655f3fb9f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b018fce34/171831986/b018fce3431286bd1e44e8be51ade5e7_max_476x317.jpeg",
- "url": "property-photo/b018fce34/171831986/b018fce3431286bd1e44e8be51ade5e7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6d406c486/171831986/6d406c486f14750f9ebd1bb3ba0ae21d_max_476x317.jpeg",
- "url": "property-photo/6d406c486/171831986/6d406c486f14750f9ebd1bb3ba0ae21d.jpeg",
- "caption": "Front (Exterior)"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e58319488/171831986/e583194882a36a96fba2ec9727f224ca_max_476x317.jpeg",
- "url": "property-photo/e58319488/171831986/e583194882a36a96fba2ec9727f224ca.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/79db63590/171831986/79db63590513117926bf789f87e0d2a8_max_476x317.jpeg",
- "url": "property-photo/79db63590/171831986/79db63590513117926bf789f87e0d2a8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b7e65510/171831986/5b7e65510f508adff9229c315744ab47_max_476x317.jpeg",
- "url": "property-photo/5b7e65510/171831986/5b7e65510f508adff9229c315744ab47.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2d413e7c8/171831986/2d413e7c814dd3420ca574fe51aa0233_max_476x317.jpeg",
- "url": "property-photo/2d413e7c8/171831986/2d413e7c814dd3420ca574fe51aa0233.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0f55505d4/171831986/0f55505d4c1dbc65f82b4ebca98bb1c0_max_476x317.jpeg",
- "url": "property-photo/0f55505d4/171831986/0f55505d4c1dbc65f82b4ebca98bb1c0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9d8755378/171831986/9d87553781a7e46f4cf756bafca0db80_max_476x317.jpeg",
- "url": "property-photo/9d8755378/171831986/9d87553781a7e46f4cf756bafca0db80.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/763a9bc47/171831986/763a9bc47b3ddcbb354541d1b8d5ccc2_max_476x317.jpeg",
- "url": "property-photo/763a9bc47/171831986/763a9bc47b3ddcbb354541d1b8d5ccc2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/becaeb577/171831986/becaeb57742b32380ff8c89de44342eb_max_476x317.jpeg",
- "url": "property-photo/becaeb577/171831986/becaeb57742b32380ff8c89de44342eb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7dd68120c/171831986/7dd68120c528faa41336e5c0e32bb65d_max_476x317.jpeg",
- "url": "property-photo/7dd68120c/171831986/7dd68120c528faa41336e5c0e32bb65d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/09c2c341a/171831986/09c2c341a544ae71de13783189939ec3_max_476x317.jpeg",
- "url": "property-photo/09c2c341a/171831986/09c2c341a544ae71de13783189939ec3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0f39746d2/171831986/0f39746d2453df4dca20a146e688dffb_max_476x317.jpeg",
- "url": "property-photo/0f39746d2/171831986/0f39746d2453df4dca20a146e688dffb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/726acdd0b/171831986/726acdd0bee61add18a28f362a4df903_max_476x317.jpeg",
- "url": "property-photo/726acdd0b/171831986/726acdd0bee61add18a28f362a4df903.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e0d528d1f/171831986/e0d528d1f94ad263a44a8071a5b8696e_max_476x317.jpeg",
- "url": "property-photo/e0d528d1f/171831986/e0d528d1f94ad263a44a8071a5b8696e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a52618b9/171831986/3a52618b98679bab67bcfab7de1a9276_max_476x317.jpeg",
- "url": "property-photo/3a52618b9/171831986/3a52618b98679bab67bcfab7de1a9276.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/87c56dac4/171831986/87c56dac42383420c450a0973690f7fe_max_476x317.jpeg",
- "url": "property-photo/87c56dac4/171831986/87c56dac42383420c450a0973690f7fe.jpeg",
- "caption": "Rear Garden"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b52b067e/171831986/6b52b067ecdd09ffe8b62820aa04468a_max_476x317.jpeg",
- "url": "property-photo/6b52b067e/171831986/6b52b067ecdd09ffe8b62820aa04468a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b28c08ba/171831986/5b28c08ba5169ec325371f20efc7d900_max_476x317.jpeg",
- "url": "property-photo/5b28c08ba/171831986/5b28c08ba5169ec325371f20efc7d900.jpeg",
- "caption": "Rear Garden"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e789f97ee/171831986/e789f97eecb586e8c6a3bf02b38ac666_max_476x317.jpeg",
- "url": "property-photo/e789f97ee/171831986/e789f97eecb586e8c6a3bf02b38ac666.jpeg",
- "caption": "Exterior"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/06e7d67f3/171831986/06e7d67f3d8ca395899c0ef487007b46_max_476x317.png",
- "url": "property-photo/06e7d67f3/171831986/06e7d67f3d8ca395899c0ef487007b46.png",
- "caption": "Rear Garden"
- }
- ],
- "propertySubType": "House",
- "tenure": { "tenureType": "FREEHOLD" },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-04T12:14:02Z"
- },
- "price": {
- "amount": 1250000,
- "frequency": "not specified",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,250,000",
- "displayPriceQualifier": "Offers in Excess of"
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 70202,
- "brandPlusLogoURI": "/71k/70202/branch_rmchoice_logo_70202_0000.jpeg",
- "contactTelephone": "020 3879 9971",
- "branchDisplayName": "Petty Son & Prestwich Ltd, London",
- "branchName": "London",
- "brandTradingName": "Petty Son & Prestwich Ltd",
- "branchLandingPageUrl": "/estate-agents/agent/Petty-Son-and-Prestwich-Ltd/London-70202.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-10-30T17:30:19Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/71k/70202/branch_rmchoice_logo_70202_0000.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "buy",
- "productLabel": { "productLabelText": null, "spotlightLabel": false },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "2,236 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/171831986#/?channel=RES_BUY",
- "contactUrl": "/property-for-sale/contactBranch.html?propertyId=171831986",
- "staticMapUrl": null,
- "channel": "BUY",
- "firstVisibleDate": "2026-02-04T12:08:29Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": { "matchingLozenges": [] },
- "streetView": { "showStreetView": true },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-10T14:14:01Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Four bedroom Edwardian home",
- "htmlDescription": "Four bedroom Edwardian home"
- },
- {
- "order": 2,
- "description": "Beautifully extended",
- "htmlDescription": "Beautifully extended"
- },
- {
- "order": 3,
- "description": "Large rear garden with direct access to woodland",
- "htmlDescription": "Large rear garden with direct access to woodland"
- },
- { "order": 4, "description": "Cellar", "htmlDescription": "Cellar" },
- {
- "order": 5,
- "description": "Period features throughout",
- "htmlDescription": "Period features throughout"
- },
- {
- "order": 6,
- "description": "Ensuite to principle bedroom",
- "htmlDescription": "Ensuite to principle bedroom"
- },
- {
- "order": 7,
- "description": "0.9 miles to Leytonstone Underground Station",
- "htmlDescription": "0.9 miles to Leytonstone Underground Station"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/473517ea3/171831986/473517ea33a46d55c238d8f7509531ae_max_476x317.jpeg",
- "url": "property-photo/473517ea3/171831986/473517ea33a46d55c238d8f7509531ae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d7e19bc40/171831986/d7e19bc40b4057ade30cc67e1c0b80a2_max_476x317.jpeg",
- "url": "property-photo/d7e19bc40/171831986/d7e19bc40b4057ade30cc67e1c0b80a2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/46af35b81/171831986/46af35b817b44215c62ff7ba2b11972a_max_476x317.jpeg",
- "url": "property-photo/46af35b81/171831986/46af35b817b44215c62ff7ba2b11972a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1dd7050f6/171831986/1dd7050f6d09415bed6098faa1ce1c5a_max_476x317.jpeg",
- "url": "property-photo/1dd7050f6/171831986/1dd7050f6d09415bed6098faa1ce1c5a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/48d2f60a0/171831986/48d2f60a0cdef21def0df5c9ea33ade2_max_476x317.jpeg",
- "url": "property-photo/48d2f60a0/171831986/48d2f60a0cdef21def0df5c9ea33ade2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f7f1ee8e8/171831986/f7f1ee8e8d01b84c393a187c0f010fb5_max_476x317.jpeg",
- "url": "property-photo/f7f1ee8e8/171831986/f7f1ee8e8d01b84c393a187c0f010fb5.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3872d8b7a/171831986/3872d8b7a3248587e191ad63ab8392ab_max_476x317.jpeg",
- "url": "property-photo/3872d8b7a/171831986/3872d8b7a3248587e191ad63ab8392ab.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fb76fd41f/171831986/fb76fd41fdf71df83da8721d287c31eb_max_476x317.jpeg",
- "url": "property-photo/fb76fd41f/171831986/fb76fd41fdf71df83da8721d287c31eb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c3840fb4b/171831986/c3840fb4bbf60ca8d19d6ceefed28adb_max_476x317.jpeg",
- "url": "property-photo/c3840fb4b/171831986/c3840fb4bbf60ca8d19d6ceefed28adb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b15eed1f/171831986/6b15eed1f540544cd2f3190d4d2a484a_max_476x317.jpeg",
- "url": "property-photo/6b15eed1f/171831986/6b15eed1f540544cd2f3190d4d2a484a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/34672e1b8/171831986/34672e1b84dc922be8cf25ec1109bc94_max_476x317.jpeg",
- "url": "property-photo/34672e1b8/171831986/34672e1b84dc922be8cf25ec1109bc94.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5969318c3/171831986/5969318c31f1a87a020490b73e78fb20_max_476x317.jpeg",
- "url": "property-photo/5969318c3/171831986/5969318c31f1a87a020490b73e78fb20.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/edab48c4f/171831986/edab48c4ff1561763332471f7a0f2828_max_476x317.jpeg",
- "url": "property-photo/edab48c4f/171831986/edab48c4ff1561763332471f7a0f2828.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/83ed5bdf0/171831986/83ed5bdf024d9644bfed57e655f3fb9f_max_476x317.jpeg",
- "url": "property-photo/83ed5bdf0/171831986/83ed5bdf024d9644bfed57e655f3fb9f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b018fce34/171831986/b018fce3431286bd1e44e8be51ade5e7_max_476x317.jpeg",
- "url": "property-photo/b018fce34/171831986/b018fce3431286bd1e44e8be51ade5e7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6d406c486/171831986/6d406c486f14750f9ebd1bb3ba0ae21d_max_476x317.jpeg",
- "url": "property-photo/6d406c486/171831986/6d406c486f14750f9ebd1bb3ba0ae21d.jpeg",
- "caption": "Front (Exterior)"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e58319488/171831986/e583194882a36a96fba2ec9727f224ca_max_476x317.jpeg",
- "url": "property-photo/e58319488/171831986/e583194882a36a96fba2ec9727f224ca.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/79db63590/171831986/79db63590513117926bf789f87e0d2a8_max_476x317.jpeg",
- "url": "property-photo/79db63590/171831986/79db63590513117926bf789f87e0d2a8.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b7e65510/171831986/5b7e65510f508adff9229c315744ab47_max_476x317.jpeg",
- "url": "property-photo/5b7e65510/171831986/5b7e65510f508adff9229c315744ab47.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2d413e7c8/171831986/2d413e7c814dd3420ca574fe51aa0233_max_476x317.jpeg",
- "url": "property-photo/2d413e7c8/171831986/2d413e7c814dd3420ca574fe51aa0233.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0f55505d4/171831986/0f55505d4c1dbc65f82b4ebca98bb1c0_max_476x317.jpeg",
- "url": "property-photo/0f55505d4/171831986/0f55505d4c1dbc65f82b4ebca98bb1c0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9d8755378/171831986/9d87553781a7e46f4cf756bafca0db80_max_476x317.jpeg",
- "url": "property-photo/9d8755378/171831986/9d87553781a7e46f4cf756bafca0db80.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/763a9bc47/171831986/763a9bc47b3ddcbb354541d1b8d5ccc2_max_476x317.jpeg",
- "url": "property-photo/763a9bc47/171831986/763a9bc47b3ddcbb354541d1b8d5ccc2.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/becaeb577/171831986/becaeb57742b32380ff8c89de44342eb_max_476x317.jpeg",
- "url": "property-photo/becaeb577/171831986/becaeb57742b32380ff8c89de44342eb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7dd68120c/171831986/7dd68120c528faa41336e5c0e32bb65d_max_476x317.jpeg",
- "url": "property-photo/7dd68120c/171831986/7dd68120c528faa41336e5c0e32bb65d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/09c2c341a/171831986/09c2c341a544ae71de13783189939ec3_max_476x317.jpeg",
- "url": "property-photo/09c2c341a/171831986/09c2c341a544ae71de13783189939ec3.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0f39746d2/171831986/0f39746d2453df4dca20a146e688dffb_max_476x317.jpeg",
- "url": "property-photo/0f39746d2/171831986/0f39746d2453df4dca20a146e688dffb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/726acdd0b/171831986/726acdd0bee61add18a28f362a4df903_max_476x317.jpeg",
- "url": "property-photo/726acdd0b/171831986/726acdd0bee61add18a28f362a4df903.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e0d528d1f/171831986/e0d528d1f94ad263a44a8071a5b8696e_max_476x317.jpeg",
- "url": "property-photo/e0d528d1f/171831986/e0d528d1f94ad263a44a8071a5b8696e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a52618b9/171831986/3a52618b98679bab67bcfab7de1a9276_max_476x317.jpeg",
- "url": "property-photo/3a52618b9/171831986/3a52618b98679bab67bcfab7de1a9276.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/87c56dac4/171831986/87c56dac42383420c450a0973690f7fe_max_476x317.jpeg",
- "url": "property-photo/87c56dac4/171831986/87c56dac42383420c450a0973690f7fe.jpeg",
- "caption": "Rear Garden"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b52b067e/171831986/6b52b067ecdd09ffe8b62820aa04468a_max_476x317.jpeg",
- "url": "property-photo/6b52b067e/171831986/6b52b067ecdd09ffe8b62820aa04468a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b28c08ba/171831986/5b28c08ba5169ec325371f20efc7d900_max_476x317.jpeg",
- "url": "property-photo/5b28c08ba/171831986/5b28c08ba5169ec325371f20efc7d900.jpeg",
- "caption": "Rear Garden"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e789f97ee/171831986/e789f97eecb586e8c6a3bf02b38ac666_max_476x317.jpeg",
- "url": "property-photo/e789f97ee/171831986/e789f97eecb586e8c6a3bf02b38ac666.jpeg",
- "caption": "Exterior"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/06e7d67f3/171831986/06e7d67f3d8ca395899c0ef487007b46_max_476x317.png",
- "url": "property-photo/06e7d67f3/171831986/06e7d67f3d8ca395899c0ef487007b46.png",
- "caption": "Rear Garden"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/473517ea3/171831986/473517ea33a46d55c238d8f7509531ae_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/473517ea3/171831986/473517ea33a46d55c238d8f7509531ae_max_296x197.jpeg"
- },
- "formattedBranchName": " by Petty Son & Prestwich Ltd, London",
- "addedOrReduced": "Added on 04/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "4 bedroom house for sale",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- }
- ],
- "resultCount": "279",
- "searchParameters": {
- "locationIdentifier": "OUTCODE^746",
- "numberOfPropertiesPerPage": "24",
- "radius": "0.0",
- "sortType": "2",
- "index": "0",
- "propertyTypes": [],
- "tenureTypes": [],
- "viewType": "LIST",
- "mustHave": [],
- "dontShow": [],
- "furnishTypes": [],
- "channel": "BUY",
- "areaSizeUnit": "sqft",
- "currencyCode": "GBP",
- "keywords": [],
- "tags": []
- },
- "searchParametersDescription": "Properties For Sale in E11",
- "sidebarModel": {
- "soldHousePricesLinks": {
- "heading": "Sold House Prices",
- "subHeading": "What did properties sell for in E11?",
- "model": [
- {
- "text": "View house prices in E11",
- "url": "/house-prices/e11.html",
- "noFollow": false
- }
- ],
- "headingLink": null
- },
- "relatedHouseSearches": null,
- "relatedFlatSearches": null,
- "relatedPopularSearches": null,
- "relatedRegionsSearches": null,
- "relatedSuggestedSearches": {
- "heading": "Suggested Links",
- "subHeading": null,
- "model": [
- {
- "text": "Estate agents in E11",
- "url": "/estate-agents/find.html?locationIdentifier=OUTCODE^746",
- "noFollow": true
- }
- ],
- "headingLink": null
- },
- "channelSwitchLink": {
- "heading": "Channel Switch",
- "subHeading": null,
- "model": [
- {
- "text": "See properties to rent in E11",
- "url": "/property-to-rent/find.html?locationIdentifier=OUTCODE^746",
- "noFollow": true
- }
- ],
- "headingLink": null
- },
- "relatedStudentLinks": null,
- "branchMPU": null,
- "countryGuideMPU": null,
- "suggestedLinks": {
- "heading": "Suggested Links",
- "subHeading": null,
- "model": [
- {
- "text": "Estate agents in E11",
- "url": "/estate-agents/find.html?locationIdentifier=OUTCODE^746",
- "noFollow": true
- }
- ],
- "headingLink": null
- }
- },
- "keywordCount": 0,
- "pageTitle": "Properties For Sale in E11 | Rightmove",
- "metaDescription": "Flats & Houses For Sale in E11 - Find properties with Rightmove - the UK's largest selection of properties.",
- "seoModel": {
- "canonicalUrl": "https://www.rightmove.co.uk/property-for-sale/E11.html",
- "metaRobots": ""
- },
- "timestamp": 1770978328899,
- "urlPath": null,
- "staticMapUrl": "https://media.rightmove.co.uk:443/map/_generate?width=360&height=380&polygonFillColor=%232E8E8914&polygonLineColor=%232E8E89FF&mapPolygon=guvyHKzElBCPhErDSbAa%40%5BWn%40k%40TTjAZ%5CtByEx%40nCjI%7CKxCiFnAIbC%7BExBIvA%7EBpF%7CFgAzDhBdDhDqG%7CExI%60CwA%60Cc%40M%7D%40r%40e%40BR%60AAHNXCXc%40h%40bAh%40LIqAn%40Sp%40%5CdAe%40%40i%40iCwR_%40g%40Mm%40C%5BdAqAv%40Dq%40wLeAFt%40y%40lBoFMaGhAyAlBTjAkB_%40GmAmBD_%40%5CaDi%40kCeBeBm%40oCgAuAsCqBwAuKkBiCyAmEyFgTy%40kFe%40%7D%40bGiHr%40sAOgDVeFiBQc%40aBJk%40j%40q%40lCEdAo%40AaHeIA%7DOCuIy%40sO%7CBDk%40nF%7DJr%40iBF%7BAy%40wUe%40BaAcAiE%40w%40w%40iACgAf%40qAL%7DAE%7BHoB%60%40iH%5BmELaJg%40wA%7EC_H%7ED_o%40AyUu%40MuVvRqH%7CNQ%5D_InNaBzBoAfGe%40f%40w%40BmIaDsCoGqFgFcQ%60JuGbCyAFmCi%40mHP%60DhPa%40%7EBLfA%5DtAm%40t%40m%40fB_%40VDfBo%40%7E%40U%7E%40h%40jAf%40bClAg%40bEdTKDHr%40_A%5E%5ByAsA%60ACbB_A_%40q%40%60G%7B%40nDbBhAk%40dDd%40j%40KfAZvAgHsDuGeA%7DADOX%7CItDlBbBTdCKfDzBFEfDrCLbBz%40pAzCbAiA%7E%40vDe%40rOm%40lJzBpEEpGiApCiOlAP%5EFbBbAvBz%40pAb%40lA%5CWLJnAnGtGuASbSq%40zDlKn%5BTZ%60AN%5EOXu%40CiBYgAjB%3FjA%7BBhLjT%7CR%7DYSz%40lCnGbFlOPQv%40pBfAx%40dBpDBl%40vA%7ED%7CAVlBrGd%40c%40Nm%40aAiDXFfGhKOnFg%40%7EAvDdFjDuCsBqHMh%40i%40i%40SZu%40oDvIo%5EK%7D%40&signature=PcjQAJ3wPTVGri2zTw17SUogco0=",
- "listViewUrl": "/property-for-sale/find.html?sortType=2&areaSizeUnit=sqft&viewType=LIST&channel=BUY&index=0&radius=0.0&locationIdentifier=OUTCODE%5E746",
- "mapViewUrl": "/property-for-sale/map.html?sortType=2&areaSizeUnit=sqft&viewType=MAP&channel=BUY&index=0&radius=0.0&locationIdentifier=OUTCODE%5E746"
-}
diff --git a/finder/rightmove/explain.md b/finder/rightmove/explain.md
deleted file mode 100644
index 1c02ffd..0000000
--- a/finder/rightmove/explain.md
+++ /dev/null
@@ -1,52 +0,0 @@
-The API works as follows, you must search for outcodes, such as E11, then hit https://los.rightmove.co.uk/typeahead?query=E11&limit=10&exclude=STREET which will return something like:
-
-{
- "matches": [
- {
- "id": "746",
- "type": "OUTCODE",
- "displayName": "E11",
- "highlighting": "
E11 ",
- "highlights": [
- {
- "text": "E11",
- "highlighted": true
- }
- ]
- },
- {
- "id": "749",
- "type": "OUTCODE",
- "displayName": "E14",
- "highlighting": "displayName",
- "highlights": []
- },
- {
- "id": "752",
- "type": "OUTCODE",
- "displayName": "E17",
- "highlighting": "displayName",
- "highlights": []
- },
- ...
- ]
-}
-
-We need to find the id of the object which has "type": "OUTCODE", and displayName matching the outcode we searched for, in this case E11, which is 746. Then we can hit the search endpoint with that id, and it will return the properties for that outcode:
-
-https://www.rightmove.co.uk/api/property-search/listing/search?useLocationIdentifier=true&locationIdentifier=OUTCODE%5E746&buy=For+sale&_includeSSTC=on&index=0&sortType=2&channel=BUY&transactionType=BUY&displayLocationIdentifier=E12.html
-
-You can see the example response to this at [[buy.json]]
-
-You must set locationIdentifier=OUTCODE%5E{id} where id is 746 in this case, so it's 746 locationIdentifier=OUTCODE%5E746. Paging works by increasing index by the number of results per page, which is 24. So the next page would be index=24, then index=48, etc.
-
-
-The rental endpoint works similarly:
-
-https://www.rightmove.co.uk/api/property-search/listing/search?locationIdentifier=OUTCODE%5E745&index=0&sortType=6&channel=RENT&transactionType=LETTING&displayLocationIdentifier=E16.html
-
-https://www.rightmove.co.uk/api/property-search/listing/search?locationIdentifier=OUTCODE%5E752&index=48&sortType=6&channel=RENT&transactionType=LETTING&displayLocationIdentifier=E17.html
-
-
-See a response example for the rental endpoint at [[rent.json]]
-
diff --git a/finder/rightmove/rental.json b/finder/rightmove/rental.json
deleted file mode 100644
index 6bef173..0000000
--- a/finder/rightmove/rental.json
+++ /dev/null
@@ -1,8247 +0,0 @@
-{
- "countryCode": "gb",
- "countryId": -1,
- "dfpModel": {
- "sidebarSlots": [
- {
- "id": "searchSidebar-mpuSlot-2",
- "adUnitPath": "/5029762/Rightmove_Property_Web/Property_Results_Sidebar/MPU2",
- "sizes": [[300, 250]],
- "mappings": []
- },
- {
- "id": "searchSidebar-mpuSlot-1",
- "adUnitPath": "/5029762/Rightmove_Property_Web/Property_Results_Sidebar/MPU1",
- "sizes": [[300, 250]],
- "mappings": []
- }
- ],
- "targeting": [
- {
- "key": "CT",
- "value": "property-to-rent"
- }
- ]
- },
- "formattedExchangeRateDate": "",
- "location": {
- "id": 752,
- "displayName": "E17",
- "shortDisplayName": "E17",
- "locationType": "OUTCODE",
- "listingCurrency": "GBP",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [-0.04911, 51.58281],
- [-0.05875, 51.58029],
- [-0.05926, 51.58037],
- [-0.06102, 51.58071],
- [-0.06162, 51.58022],
- [-0.06215, 51.57959],
- [-0.06223, 51.57929],
- [-0.06216, 51.57895],
- [-0.06128, 51.57792],
- [-0.06084, 51.57709],
- [-0.05996, 51.57531],
- [-0.05926, 51.57424],
- [-0.05868, 51.57335],
- [-0.05838, 51.57242],
- [-0.05673, 51.57125],
- [-0.05659, 51.57089],
- [-0.05635, 51.57069],
- [-0.05583, 51.57045],
- [-0.05493, 51.57039],
- [-0.05439, 51.5702],
- [-0.05413, 51.56997],
- [-0.05325, 51.56856],
- [-0.0519, 51.56789],
- [-0.05113, 51.56761],
- [-0.0492, 51.57048],
- [-0.04816, 51.57183],
- [-0.04605, 51.57085],
- [-0.04517, 51.57103],
- [-0.03849, 51.57331],
- [-0.03833, 51.57341],
- [-0.03794, 51.574],
- [-0.03726, 51.57535],
- [-0.0367, 51.57497],
- [-0.0363, 51.57488],
- [-0.03516, 51.57415],
- [-0.03494, 51.57359],
- [-0.03418, 51.57243],
- [-0.03181, 51.57094],
- [-0.03064, 51.56921],
- [-0.02993, 51.56954],
- [-0.02931, 51.56902],
- [-0.02651, 51.57002],
- [-0.0251, 51.57033],
- [-0.02482, 51.57071],
- [-0.02448, 51.57061],
- [-0.02445, 51.57079],
- [-0.02428, 51.57083],
- [-0.02416, 51.57102],
- [-0.02287, 51.57147],
- [-0.02284, 51.57142],
- [-0.02252, 51.57149],
- [-0.02238, 51.57164],
- [-0.0221, 51.57162],
- [-0.02187, 51.57174],
- [-0.02165, 51.5715],
- [-0.02141, 51.57172],
- [-0.02148, 51.57191],
- [-0.02063, 51.57221],
- [-0.02035, 51.57221],
- [-0.02019, 51.57227],
- [-0.02026, 51.57235],
- [-0.01988, 51.57243],
- [-0.02053, 51.57322],
- [-0.01855, 51.5738],
- [-0.01817, 51.57395],
- [-0.01822, 51.57405],
- [-0.01683, 51.57433],
- [-0.01661, 51.57457],
- [-0.01605, 51.57462],
- [-0.01604, 51.5748],
- [-0.01569, 51.57493],
- [-0.0151, 51.57523],
- [-0.01473, 51.57531],
- [-0.01453, 51.57533],
- [-0.01418, 51.57516],
- [-0.01375, 51.57514],
- [-0.01356, 51.57531],
- [-0.01307, 51.57545],
- [-0.01282, 51.57525],
- [-0.01245, 51.57561],
- [-0.01278, 51.57551],
- [-0.01294, 51.57577],
- [-0.01222, 51.57613],
- [-0.01227, 51.5762],
- [-0.01215, 51.57632],
- [-0.01162, 51.57651],
- [-0.01177, 51.57674],
- [-0.01092, 51.57698],
- [-0.01077, 51.57679],
- [-0.00959, 51.57715],
- [-0.00982, 51.57746],
- [-0.00946, 51.5775],
- [-0.00938, 51.57757],
- [-0.00943, 51.57771],
- [-0.00863, 51.578],
- [-0.00549, 51.57845],
- [-0.00329, 51.57947],
- [-0.00319, 51.5796],
- [-0.00293, 51.57964],
- [-0.00125, 51.58042],
- [0.0006, 51.58137],
- [0.00124, 51.58158],
- [0.00129, 51.5817],
- [0.00138, 51.58169],
- [0.00594, 51.58368],
- [0.00688, 51.58343],
- [0.0101, 51.58333],
- [0.00967, 51.58472],
- [0.01103, 51.58512],
- [0.01109, 51.58519],
- [0.01097, 51.58534],
- [0.01136, 51.58552],
- [0.01177, 51.58582],
- [0.01237, 51.58616],
- [0.01287, 51.5862],
- [0.01303, 51.58629],
- [0.01254, 51.59026],
- [0.01237, 51.59089],
- [0.01242, 51.59114],
- [0.01213, 51.59168],
- [0.01201, 51.59237],
- [0.01246, 51.59522],
- [0.01291, 51.59897],
- [0.01268, 51.59897],
- [0.01233, 51.59853],
- [0.0119, 51.59909],
- [0.01116, 51.59933],
- [0.0108, 51.59922],
- [0.01059, 51.59933],
- [0.01017, 51.59982],
- [0.00742, 51.59886],
- [0.00693, 51.59932],
- [0.00465, 51.59967],
- [0.00327, 51.59968],
- [0.00248, 51.59961],
- [0.00197, 51.59908],
- [0.00052, 51.59969],
- [-0.0001, 51.59965],
- [-0.00016, 51.59957],
- [-0.00163, 51.5999],
- [-0.00173, 51.60005],
- [-0.00328, 51.60028],
- [-0.00319, 51.60063],
- [-0.00396, 51.6006],
- [-0.00382, 51.60081],
- [-0.00471, 51.60079],
- [-0.00492, 51.60059],
- [-0.00534, 51.60058],
- [-0.00558, 51.60112],
- [-0.00743, 51.60132],
- [-0.00713, 51.60157],
- [-0.00688, 51.60204],
- [-0.00752, 51.60258],
- [-0.00776, 51.60352],
- [-0.00913, 51.6047],
- [-0.00992, 51.60445],
- [-0.01031, 51.60452],
- [-0.01066, 51.60443],
- [-0.01107, 51.60405],
- [-0.01094, 51.6038],
- [-0.01242, 51.60381],
- [-0.01237, 51.60242],
- [-0.01373, 51.60235],
- [-0.01388, 51.6006],
- [-0.01463, 51.60086],
- [-0.01492, 51.60082],
- [-0.01487, 51.60073],
- [-0.01497, 51.60061],
- [-0.01625, 51.60081],
- [-0.01621, 51.60074],
- [-0.01733, 51.60114],
- [-0.01826, 51.60163],
- [-0.02295, 51.60436],
- [-0.02365, 51.60469],
- [-0.02632, 51.60267],
- [-0.03333, 51.60484],
- [-0.03334, 51.60499],
- [-0.03445, 51.606],
- [-0.03588, 51.60772],
- [-0.03593, 51.6078],
- [-0.04059, 51.60604],
- [-0.0414, 51.60553],
- [-0.0435, 51.60271],
- [-0.04477, 51.60135],
- [-0.0469, 51.59928],
- [-0.0503, 51.59674],
- [-0.05085, 51.59603],
- [-0.05107, 51.5956],
- [-0.05122, 51.59485],
- [-0.05195, 51.59428],
- [-0.05224, 51.59389],
- [-0.0525, 51.59234],
- [-0.05287, 51.59168],
- [-0.05263, 51.59161],
- [-0.05267, 51.59064],
- [-0.05243, 51.5901],
- [-0.05171, 51.58985],
- [-0.05135, 51.58965],
- [-0.05106, 51.58947],
- [-0.05178, 51.58885],
- [-0.05155, 51.58811],
- [-0.05193, 51.5866],
- [-0.05103, 51.58579],
- [-0.05105, 51.58473],
- [-0.05031, 51.58436],
- [-0.04941, 51.58448],
- [-0.04889, 51.58426],
- [-0.04874, 51.58389],
- [-0.04911, 51.58281]
- ]
- ]
- },
- "encodedGeometry": {
- "encodedPolygon": "qwyyH|qHvNf{@OdBcA~I`BvB|BhBz@NbAMlEoDdDwAbJoDtEkCpDsBxD{@hFiIfA[f@o@n@gBJsDd@kBl@s@xGoDdCmGv@yC}PaKmGoEbEeLc@oDgMwh@S_@uBmAmGgCjAoBPoApCeFnBi@fFwChHyMxIiFaAmCfB{BgEoP}@yGkAw@RcAc@EGa@e@WyAaGHEM_A][Bw@Wm@n@k@k@o@e@L{@iD?w@K_@OLOmA}CbCsBkK]mASJw@uGo@k@IqBc@AYcA{@uBOiACg@`@eABuAa@e@[aBf@q@gAiAR`As@^gAoCMHWWe@iBm@\\o@iDd@]gAkF}@l@GgAMO[Fy@}CyAsRkEwLYSGs@{CoI}DoJi@aCWI@QmKo[p@{DRcSuGtAoAoGMK]Vc@mA{@qAcAwBGcBQ_@yW`B}B`@q@IkBx@iCVyPyAmVyA?l@vAdAoBtAo@rCTfAUh@aBrA~DdP{A`BeAhMApGL|ChBdByBbHFxBNJaAdH]Rm@tHeAQDxCi@[BpDf@h@@rAkBn@g@pJq@{@}Aq@kB~B{Dn@kFnGp@~CMlAPdAjApAp@YAfHtGILnG|I\\s@tCFx@PIVRg@~FLIoA`FaBvDaPj\\aAjCrKtOqLxj@]@iE|EwI|GOF~Id\\dB`DrPbLnG|F|KhLzNfTlClBtAj@tC\\pBpClAx@tHr@bChALo@`EFjBo@p@oCf@gAb@y@zBnCrCm@lHjA`DsDrEBhAsCWsDj@gBhA]vEhA"
- }
- },
- "noResultsModel": {
- "suggestionPods": [],
- "intelligentSuggestion": null
- },
- "pagination": {
- "total": 10,
- "options": [
- {
- "value": "0",
- "description": "1"
- },
- {
- "value": "24",
- "description": "2"
- },
- {
- "value": "48",
- "description": "3"
- },
- {
- "value": "72",
- "description": "4"
- },
- {
- "value": "96",
- "description": "5"
- },
- {
- "value": "120",
- "description": "6"
- },
- {
- "value": "144",
- "description": "7"
- },
- {
- "value": "168",
- "description": "8"
- },
- {
- "value": "192",
- "description": "9"
- },
- {
- "value": "216",
- "description": "10"
- }
- ],
- "first": "0",
- "last": "216",
- "previous": "24",
- "next": "72",
- "page": "3"
- },
- "properties": [
- {
- "id": 172073837,
- "bedrooms": 1,
- "bathrooms": 1,
- "numberOfImages": 16,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Available Now | Large One Bedroom | First Floor Flat | Unfurnished | Large Reception Room | Good Transport Links | Double Glazed | Ample sized bedroom with great storage | Moments away from local amenities | Gas Central Heating",
- "displayAddress": "Forest Road, Walthamstow, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.587574,
- "longitude": -0.035495
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d_max_476x317.jpeg",
- "url": "property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d.jpeg",
- "caption": "110a forest road-1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/96654aba3/172073837/96654aba3d99dd0c2b815d60497978c4_max_476x317.jpeg",
- "url": "property-photo/96654aba3/172073837/96654aba3d99dd0c2b815d60497978c4.jpeg",
- "caption": "110a forest road-2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ad9327de/172073837/9ad9327dedc353da60bdba999be5610b_max_476x317.jpeg",
- "url": "property-photo/9ad9327de/172073837/9ad9327dedc353da60bdba999be5610b.jpeg",
- "caption": "110a forest road-3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/883d1dccc/172073837/883d1dccc08a04494059531309a94b38_max_476x317.jpeg",
- "url": "property-photo/883d1dccc/172073837/883d1dccc08a04494059531309a94b38.jpeg",
- "caption": "110a forest road-4.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c12533762/172073837/c12533762f4e164dc5b7c5a6c40981cb_max_476x317.jpeg",
- "url": "property-photo/c12533762/172073837/c12533762f4e164dc5b7c5a6c40981cb.jpeg",
- "caption": "110a forest road-5.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cd39c79d6/172073837/cd39c79d657b8f424fa704badf30c964_max_476x317.jpeg",
- "url": "property-photo/cd39c79d6/172073837/cd39c79d657b8f424fa704badf30c964.jpeg",
- "caption": "110a forest road-6.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/13f81d8ae/172073837/13f81d8aebcfef777015f25d7216ce51_max_476x317.jpeg",
- "url": "property-photo/13f81d8ae/172073837/13f81d8aebcfef777015f25d7216ce51.jpeg",
- "caption": "110a forest road-7.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ba48444f2/172073837/ba48444f2a6b0741e48b49829b6b5451_max_476x317.jpeg",
- "url": "property-photo/ba48444f2/172073837/ba48444f2a6b0741e48b49829b6b5451.jpeg",
- "caption": "110a forest road-8.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/94b221762/172073837/94b221762b47ba8e28554d6f04c48893_max_476x317.jpeg",
- "url": "property-photo/94b221762/172073837/94b221762b47ba8e28554d6f04c48893.jpeg",
- "caption": "110a forest road-9.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d0f71572/172073837/3d0f71572492fa8e1b4b066287af1cea_max_476x317.jpeg",
- "url": "property-photo/3d0f71572/172073837/3d0f71572492fa8e1b4b066287af1cea.jpeg",
- "caption": "110a forest road-10.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/be71f2281/172073837/be71f22811800f0e59019a7a6c31b20b_max_476x317.jpeg",
- "url": "property-photo/be71f2281/172073837/be71f22811800f0e59019a7a6c31b20b.jpeg",
- "caption": "110a forest road-13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ccf9045f9/172073837/ccf9045f97c50f3dad93f8915a0eb666_max_476x317.jpeg",
- "url": "property-photo/ccf9045f9/172073837/ccf9045f97c50f3dad93f8915a0eb666.jpeg",
- "caption": "110a forest road-14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fd8a54725/172073837/fd8a54725104446e223445722f4ea582_max_476x317.jpeg",
- "url": "property-photo/fd8a54725/172073837/fd8a54725104446e223445722f4ea582.jpeg",
- "caption": "110a forest road-15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db0324566/172073837/db03245664ddb1b5c4830034ba6e1031_max_476x317.jpeg",
- "url": "property-photo/db0324566/172073837/db03245664ddb1b5c4830034ba6e1031.jpeg",
- "caption": "110a forest road-17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c2f6b8997/172073837/c2f6b8997af5c919ef6c951ca0b82123_max_476x317.jpeg",
- "url": "property-photo/c2f6b8997/172073837/c2f6b8997af5c919ef6c951ca0b82123.jpeg",
- "caption": "110a forest road-18.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/baa6b8740/172073837/baa6b874074f50a521b164dd3c0b2507_max_476x317.jpeg",
- "url": "property-photo/baa6b8740/172073837/baa6b874074f50a521b164dd3c0b2507.jpeg",
- "caption": "110a forest road-19.jpg"
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-03-14T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T12:10:05Z"
- },
- "price": {
- "amount": 1800,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,800 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£415 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": true,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 10145,
- "brandPlusLogoURI": "/company/clogo_3502_0001.jpeg",
- "contactTelephone": "020 3870 3140",
- "branchDisplayName": "Churchill Estates, Walthamstow & Leyton",
- "branchName": "Walthamstow & Leyton",
- "brandTradingName": "Churchill Estates",
- "branchLandingPageUrl": "/estate-agents/agent/Churchill-Estates/Walthamstow-and-Leyton-10145.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": false,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-17T16:30:56Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_3502_0001.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "
Permitted payments and tenant protection information \n
\nAs well as paying the rent, you may also be required to make the following permitted payments.
\n
\n
Permitted payments \n
\nFor properties in England, the Tenant Fees Act 2019 means that in addition to rent, lettings agents can only charge tenants (or anyone acting on the tenant's behalf) the following permitted payments:\n
Holding deposits (a maximum of 1 week's rent); Deposits (a maximum deposit of 5 weeks' rent for annual rent below £50,000, or 6 weeks' rent for annual rental of £50,000 and above); Payments to change a tenancy agreement eg. change of sharer (capped at £50 or, if higher, any reasonable costs); Payments associated with early termination of a tenancy (capped at the landlord's loss or the agent's reasonably incurred costs); Where required, utilities (electricity, gas or other fuel, water, sewerage), communication services (telephone, internet, cable/satellite television), TV licence; Council tax (payable to the billing authority); Interest payments for the late payment of rent (up to 3% above Bank of England's annual percentage rate); Reasonable costs for replacement of lost keys or other security devices; Contractual damages in the event of the tenant's default of a tenancy agreement; and Any other permitted payments under the Tenant Fees Act 2019 and regulations applicable at the relevant time. \n
\n
Tenant protection. \n\n
Churchill Estates redress scheme: The Property Ombudsman Churchill Estates designated Client Money Protection scheme: Client Money Protection (CMP) provided by Propertymark/ARLA \n",
- "displaySize": "688 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/172073837#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172073837",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-11T12:04:55Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T12:10:05Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Available Now",
- "htmlDescription": "Available Now"
- },
- {
- "order": 2,
- "description": "Large One Bedroom",
- "htmlDescription": "Large One Bedroom"
- },
- {
- "order": 3,
- "description": "First Floor Flat",
- "htmlDescription": "First Floor Flat"
- },
- {
- "order": 4,
- "description": "Unfurnished",
- "htmlDescription": "Unfurnished"
- },
- {
- "order": 5,
- "description": "Large Reception Room",
- "htmlDescription": "Large Reception Room"
- },
- {
- "order": 6,
- "description": "Good Transport Links",
- "htmlDescription": "Good Transport Links"
- },
- {
- "order": 7,
- "description": "Double Glazed",
- "htmlDescription": "Double Glazed"
- },
- {
- "order": 8,
- "description": "Ample sized bedroom with great storage",
- "htmlDescription": "Ample sized bedroom with great storage"
- },
- {
- "order": 9,
- "description": "Moments away from local amenities",
- "htmlDescription": "Moments away from local amenities"
- },
- {
- "order": 10,
- "description": "Gas Central Heating",
- "htmlDescription": "Gas Central Heating"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d_max_476x317.jpeg",
- "url": "property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d.jpeg",
- "caption": "110a forest road-1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/96654aba3/172073837/96654aba3d99dd0c2b815d60497978c4_max_476x317.jpeg",
- "url": "property-photo/96654aba3/172073837/96654aba3d99dd0c2b815d60497978c4.jpeg",
- "caption": "110a forest road-2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ad9327de/172073837/9ad9327dedc353da60bdba999be5610b_max_476x317.jpeg",
- "url": "property-photo/9ad9327de/172073837/9ad9327dedc353da60bdba999be5610b.jpeg",
- "caption": "110a forest road-3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/883d1dccc/172073837/883d1dccc08a04494059531309a94b38_max_476x317.jpeg",
- "url": "property-photo/883d1dccc/172073837/883d1dccc08a04494059531309a94b38.jpeg",
- "caption": "110a forest road-4.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c12533762/172073837/c12533762f4e164dc5b7c5a6c40981cb_max_476x317.jpeg",
- "url": "property-photo/c12533762/172073837/c12533762f4e164dc5b7c5a6c40981cb.jpeg",
- "caption": "110a forest road-5.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cd39c79d6/172073837/cd39c79d657b8f424fa704badf30c964_max_476x317.jpeg",
- "url": "property-photo/cd39c79d6/172073837/cd39c79d657b8f424fa704badf30c964.jpeg",
- "caption": "110a forest road-6.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/13f81d8ae/172073837/13f81d8aebcfef777015f25d7216ce51_max_476x317.jpeg",
- "url": "property-photo/13f81d8ae/172073837/13f81d8aebcfef777015f25d7216ce51.jpeg",
- "caption": "110a forest road-7.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ba48444f2/172073837/ba48444f2a6b0741e48b49829b6b5451_max_476x317.jpeg",
- "url": "property-photo/ba48444f2/172073837/ba48444f2a6b0741e48b49829b6b5451.jpeg",
- "caption": "110a forest road-8.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/94b221762/172073837/94b221762b47ba8e28554d6f04c48893_max_476x317.jpeg",
- "url": "property-photo/94b221762/172073837/94b221762b47ba8e28554d6f04c48893.jpeg",
- "caption": "110a forest road-9.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d0f71572/172073837/3d0f71572492fa8e1b4b066287af1cea_max_476x317.jpeg",
- "url": "property-photo/3d0f71572/172073837/3d0f71572492fa8e1b4b066287af1cea.jpeg",
- "caption": "110a forest road-10.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/be71f2281/172073837/be71f22811800f0e59019a7a6c31b20b_max_476x317.jpeg",
- "url": "property-photo/be71f2281/172073837/be71f22811800f0e59019a7a6c31b20b.jpeg",
- "caption": "110a forest road-13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ccf9045f9/172073837/ccf9045f97c50f3dad93f8915a0eb666_max_476x317.jpeg",
- "url": "property-photo/ccf9045f9/172073837/ccf9045f97c50f3dad93f8915a0eb666.jpeg",
- "caption": "110a forest road-14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fd8a54725/172073837/fd8a54725104446e223445722f4ea582_max_476x317.jpeg",
- "url": "property-photo/fd8a54725/172073837/fd8a54725104446e223445722f4ea582.jpeg",
- "caption": "110a forest road-15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db0324566/172073837/db03245664ddb1b5c4830034ba6e1031_max_476x317.jpeg",
- "url": "property-photo/db0324566/172073837/db03245664ddb1b5c4830034ba6e1031.jpeg",
- "caption": "110a forest road-17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c2f6b8997/172073837/c2f6b8997af5c919ef6c951ca0b82123_max_476x317.jpeg",
- "url": "property-photo/c2f6b8997/172073837/c2f6b8997af5c919ef6c951ca0b82123.jpeg",
- "caption": "110a forest road-18.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/baa6b8740/172073837/baa6b874074f50a521b164dd3c0b2507_max_476x317.jpeg",
- "url": "property-photo/baa6b8740/172073837/baa6b874074f50a521b164dd3c0b2507.jpeg",
- "caption": "110a forest road-19.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d_max_296x197.jpeg"
- },
- "formattedBranchName": " by Churchill Estates, Walthamstow & Leyton",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "Featured Property",
- "propertyTypeFullDescription": "1 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172087319,
- "bedrooms": 2,
- "bathrooms": 1,
- "numberOfImages": 9,
- "numberOfFloorplans": 0,
- "numberOfVirtualTours": 0,
- "summary": "Lifestyle Property are delighted to offer for rent this Newly decorated 2 bedroom flat on Belle Vue Road, E17. This fantastic flat offers 1 double bedrooms, 1 single bedroom, family bathroom, separate kitchen, reception area and private garden. The Property also has Gas central heating, Double Gl...",
- "displayAddress": "Belle Vue Road, Walthamstow, London",
- "countryCode": "GB",
- "location": {
- "latitude": 51.595196,
- "longitude": -0.000343
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b2687a126/172087319/b2687a1269efd52a42bdbbf13eea75e3_max_476x317.jpeg",
- "url": "property-photo/b2687a126/172087319/b2687a1269efd52a42bdbbf13eea75e3.jpeg",
- "caption": "IMG_2549"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0ecceb197/172087319/0ecceb1979aeb0db7649605c9ce48509_max_476x317.jpeg",
- "url": "property-photo/0ecceb197/172087319/0ecceb1979aeb0db7649605c9ce48509.jpeg",
- "caption": "IMG_2546"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/312f14d89/172087319/312f14d89da5c92033899d704b0a112f_max_476x317.jpeg",
- "url": "property-photo/312f14d89/172087319/312f14d89da5c92033899d704b0a112f.jpeg",
- "caption": "IMG_2540"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/93a182f54/172087319/93a182f54494fec05f49c6c61dc05664_max_476x317.jpeg",
- "url": "property-photo/93a182f54/172087319/93a182f54494fec05f49c6c61dc05664.jpeg",
- "caption": "IMG_2541"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cc5b2d839/172087319/cc5b2d839d3581b035e0516450cf342a_max_476x317.jpeg",
- "url": "property-photo/cc5b2d839/172087319/cc5b2d839d3581b035e0516450cf342a.jpeg",
- "caption": "IMG_2536"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4f0d7c009/172087319/4f0d7c009cec598c010cfb6eccdf5241_max_476x317.jpeg",
- "url": "property-photo/4f0d7c009/172087319/4f0d7c009cec598c010cfb6eccdf5241.jpeg",
- "caption": "IMG_2537"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6de492b15/172087319/6de492b15d741e167b283edf5be72e9f_max_476x317.jpeg",
- "url": "property-photo/6de492b15/172087319/6de492b15d741e167b283edf5be72e9f.jpeg",
- "caption": "IMG_2539"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1817788cb/172087319/1817788cb5e73e472def22ba5a53efd6_max_476x317.jpeg",
- "url": "property-photo/1817788cb/172087319/1817788cb5e73e472def22ba5a53efd6.jpeg",
- "caption": "IMG_2545"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc23646f7/172087319/bc23646f7246dd25af0f3e3ca9b48318_max_476x317.jpeg",
- "url": "property-photo/bc23646f7/172087319/bc23646f7246dd25af0f3e3ca9b48318.jpeg",
- "caption": "IMG_2543"
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-02-19T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T15:48:03Z"
- },
- "price": {
- "amount": 1750,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,750 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£404 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 81013,
- "brandPlusLogoURI": "/company/clogo_29146_0004.jpeg",
- "contactTelephone": "020 3910 6660",
- "branchDisplayName": "Lifestyle Property, Docklands",
- "branchName": "Docklands",
- "brandTradingName": "Lifestyle Property",
- "branchLandingPageUrl": "/estate-agents/agent/Lifestyle-Property/Docklands-81013.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2023-12-01T10:31:23Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_29146_0004.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "
Permitted payments and tenant protection information
\n\n
As well as paying the rent, you may also be required to make the following permitted payments. Permitted payments For properties in England, the Tenant Fees Act 2019 means that in addition to rent, lettings agents can only charge tenants (or anyone acting on the tenant's behalf) the following permitted payments:
\n\n
* Holding deposits (a maximum of 1 week's rent); \n* Deposits (a maximum deposit of 5 weeks' rent for annual rent below £50,000, or 6 weeks' rent for annual rental of £50,000 and above); \n* Payments to change a tenancy agreement e.g. change of sharer (capped at £50 or, if higher, any reasonable costs);
\n\n
Interest on late payment of rent will be charged at a rate of 3% per annum over The Bank of England's base lending rate. This will not be levied until the rent is more than 14 days late
\n\n
** Lost keys or other security devices: In the event that any keys or other security devices are lost and need to be replaced, you will be required to pay the costs of replacing them. If the loss results in locks needing to be changed, you will be required to pay the actual costs of a locksmith, new lock and replacement keys for the tenant, landlord any other persons requiring keys \n** Contract variation, novation, amendment or change of occupant at the tenants request within an existing tenancy a contract fee of £50 (inc. VAT), will be payable by the tenant. All requests will be subject to the landlords consent and approval.
\n\n
* Payments associated with early termination of a tenancy (capped at the landlord's loss or the agent's reasonably incurred costs); \n* Where required, utilities (electricity, gas or other fuel, water, sewerage), communication services \"telephone, internet, cable/satellite television), TV licence; \n* Council tax (payable to the billing authority); \n* Interest payments for the late payment of rent (up to 3% above Bank of England's annual percentage rate); \n* Reasonable costs for replacement of lost keys or other security devices. \n* Contractual damages in the event of the tenant's default of a tenancy agreement; and \n* Any other permitted payments under the Tenant Fees Act 2019 and regulations applicable at the relevant time.
\n\n
For properties in Wales, the Renting Homes (Fees etc.) (Wales) Act 2019 means that in addition to rent, lettings agents can only charge tenants the following permitted payments
\n\n
* Holding deposits (a maximum of 1 week's rent); \n* Security deposits. \n* Where required, utilities (electricity, gas or other fuel, water, sewerage), communication services \"telephone, internet, cable/satellite television), TV licence; \n* Council tax (payable to the billing authority); \n* Payments for the late payment of rent (where required under the tenancy agreement); \n* A breach of a term of the contract (where required under the tenancy agreement); and \n* Any other permitted payments under the Renting Homes (Fees etc.) (Wales) Act and regulations applicable at the relevant time.
\n\n
Tenant protectionIn addition to publishing relevant fees, lettings agents are also required to publish details of:
\n\n
* the redress scheme they are a member of: Prs (Proeprty Redress scheme \n* the name of the approved or designated Client Money Protection scheme they are a member of (if any). propertymark client number C0126252 client money protection
\n",
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/172087319#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172087319",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-11T15:42:10Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-12T09:15:35Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "2 Bedroom Apartment",
- "htmlDescription": "2 Bedroom Apartment"
- },
- {
- "order": 2,
- "description": "Double Bedroom and Single Bedroom",
- "htmlDescription": "Double Bedroom and Single Bedroom "
- },
- {
- "order": 3,
- "description": "Separate Kitchen & Living Room",
- "htmlDescription": "Separate Kitchen & Living Room "
- },
- {
- "order": 4,
- "description": "Private Garden",
- "htmlDescription": "Private Garden"
- },
- {
- "order": 5,
- "description": "Early Viewing Recommended",
- "htmlDescription": "Early Viewing Recommended "
- },
- {
- "order": 6,
- "description": "Available 19th February 2026",
- "htmlDescription": "Available 19th February 2026"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b2687a126/172087319/b2687a1269efd52a42bdbbf13eea75e3_max_476x317.jpeg",
- "url": "property-photo/b2687a126/172087319/b2687a1269efd52a42bdbbf13eea75e3.jpeg",
- "caption": "IMG_2549"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0ecceb197/172087319/0ecceb1979aeb0db7649605c9ce48509_max_476x317.jpeg",
- "url": "property-photo/0ecceb197/172087319/0ecceb1979aeb0db7649605c9ce48509.jpeg",
- "caption": "IMG_2546"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/312f14d89/172087319/312f14d89da5c92033899d704b0a112f_max_476x317.jpeg",
- "url": "property-photo/312f14d89/172087319/312f14d89da5c92033899d704b0a112f.jpeg",
- "caption": "IMG_2540"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/93a182f54/172087319/93a182f54494fec05f49c6c61dc05664_max_476x317.jpeg",
- "url": "property-photo/93a182f54/172087319/93a182f54494fec05f49c6c61dc05664.jpeg",
- "caption": "IMG_2541"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cc5b2d839/172087319/cc5b2d839d3581b035e0516450cf342a_max_476x317.jpeg",
- "url": "property-photo/cc5b2d839/172087319/cc5b2d839d3581b035e0516450cf342a.jpeg",
- "caption": "IMG_2536"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4f0d7c009/172087319/4f0d7c009cec598c010cfb6eccdf5241_max_476x317.jpeg",
- "url": "property-photo/4f0d7c009/172087319/4f0d7c009cec598c010cfb6eccdf5241.jpeg",
- "caption": "IMG_2537"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6de492b15/172087319/6de492b15d741e167b283edf5be72e9f_max_476x317.jpeg",
- "url": "property-photo/6de492b15/172087319/6de492b15d741e167b283edf5be72e9f.jpeg",
- "caption": "IMG_2539"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1817788cb/172087319/1817788cb5e73e472def22ba5a53efd6_max_476x317.jpeg",
- "url": "property-photo/1817788cb/172087319/1817788cb5e73e472def22ba5a53efd6.jpeg",
- "caption": "IMG_2545"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc23646f7/172087319/bc23646f7246dd25af0f3e3ca9b48318_max_476x317.jpeg",
- "url": "property-photo/bc23646f7/172087319/bc23646f7246dd25af0f3e3ca9b48318.jpeg",
- "caption": "IMG_2543"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b2687a126/172087319/b2687a1269efd52a42bdbbf13eea75e3_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b2687a126/172087319/b2687a1269efd52a42bdbbf13eea75e3_max_296x197.jpeg"
- },
- "formattedBranchName": " by Lifestyle Property, Docklands",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 171739247,
- "bedrooms": 1,
- "bathrooms": 1,
- "numberOfImages": 19,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Set on the second floor of a purpose-built development, this one-bedroom apartment is bright, spacious, and ideally located in the heart of Walthamstow Village. Just moments from some of the area’s best independent restaurants, gastropubs, and coffee shops, it offers the perfect balance of vibran...",
- "displayAddress": "West Avenue, Walthamstow",
- "countryCode": "GB",
- "location": {
- "latitude": 51.582431,
- "longitude": -0.015481
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c1208fb96/171739247/c1208fb963ffbd665292e89b66bf1342_max_476x317.jpeg",
- "url": "property-photo/c1208fb96/171739247/c1208fb963ffbd665292e89b66bf1342.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f567a8c2a/171739247/f567a8c2a26cfd92adf52445304ebea9_max_476x317.jpeg",
- "url": "property-photo/f567a8c2a/171739247/f567a8c2a26cfd92adf52445304ebea9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/caf90f50a/171739247/caf90f50a3d5650f91e112440f6e0eae_max_476x317.jpeg",
- "url": "property-photo/caf90f50a/171739247/caf90f50a3d5650f91e112440f6e0eae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ee04a90a2/171739247/ee04a90a2dc7c11a8255438b2ac34430_max_476x317.jpeg",
- "url": "property-photo/ee04a90a2/171739247/ee04a90a2dc7c11a8255438b2ac34430.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9d0e5ffa3/171739247/9d0e5ffa39f1932f2f8f4401c0cc0199_max_476x317.jpeg",
- "url": "property-photo/9d0e5ffa3/171739247/9d0e5ffa39f1932f2f8f4401c0cc0199.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dbf38275a/171739247/dbf38275a6dc438c525e33259b4de9f4_max_476x317.jpeg",
- "url": "property-photo/dbf38275a/171739247/dbf38275a6dc438c525e33259b4de9f4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/27b979cb6/171739247/27b979cb67625b55efa89c6d32d447e4_max_476x317.jpeg",
- "url": "property-photo/27b979cb6/171739247/27b979cb67625b55efa89c6d32d447e4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bd502ef60/171739247/bd502ef60b974440e2d2c3864da59082_max_476x317.jpeg",
- "url": "property-photo/bd502ef60/171739247/bd502ef60b974440e2d2c3864da59082.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bd502ef60/171739247/bd502ef60b974440e2d2c3864da59082_max_476x317.jpeg",
- "url": "property-photo/bd502ef60/171739247/bd502ef60b974440e2d2c3864da59082.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/27b979cb6/171739247/27b979cb67625b55efa89c6d32d447e4_max_476x317.jpeg",
- "url": "property-photo/27b979cb6/171739247/27b979cb67625b55efa89c6d32d447e4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/643bcae68/171739247/643bcae6810814b1cc44eacde5997861_max_476x317.jpeg",
- "url": "property-photo/643bcae68/171739247/643bcae6810814b1cc44eacde5997861.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f6ead47b1/171739247/f6ead47b117103cb1ca831b9bbc28faa_max_476x317.jpeg",
- "url": "property-photo/f6ead47b1/171739247/f6ead47b117103cb1ca831b9bbc28faa.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4189b9f44/171739247/4189b9f44e48cc6b98745f225933ce18_max_476x317.jpeg",
- "url": "property-photo/4189b9f44/171739247/4189b9f44e48cc6b98745f225933ce18.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/55a518542/171739247/55a5185427a15add9dad5f3ffe3b4ede_max_476x317.jpeg",
- "url": "property-photo/55a518542/171739247/55a5185427a15add9dad5f3ffe3b4ede.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a2e515f30/171739247/a2e515f30c3c21cd4ba3ca0f2db12c66_max_476x317.jpeg",
- "url": "property-photo/a2e515f30/171739247/a2e515f30c3c21cd4ba3ca0f2db12c66.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c17d0a96/171739247/5c17d0a96ea25ee8e7b653eed8fda282_max_476x317.jpeg",
- "url": "property-photo/5c17d0a96/171739247/5c17d0a96ea25ee8e7b653eed8fda282.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/242bbc11f/171739247/242bbc11fd369cfcc8dd3086686d0f44_max_476x317.jpeg",
- "url": "property-photo/242bbc11f/171739247/242bbc11fd369cfcc8dd3086686d0f44.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bcb4f40e7/171739247/bcb4f40e7ddfba80c2f679b4b560436d_max_476x317.jpeg",
- "url": "property-photo/bcb4f40e7/171739247/bcb4f40e7ddfba80c2f679b4b560436d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/75af1f182/171739247/75af1f18249434c1fe029567e95c2a52_max_476x317.jpeg",
- "url": "property-photo/75af1f182/171739247/75af1f18249434c1fe029567e95c2a52.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Apartment",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-03-02T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2026-02-11T14:55:24Z"
- },
- "price": {
- "amount": 1650,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,650 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£381 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 114391,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_49357_0001.png",
- "contactTelephone": "020 3889 9166",
- "branchDisplayName": "The Stow Brothers, Walthamstow & Leyton",
- "branchName": "Walthamstow & Leyton",
- "brandTradingName": "The Stow Brothers",
- "branchLandingPageUrl": "/estate-agents/agent/The-Stow-Brothers/Walthamstow-and-Leyton-114391.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-13T13:11:56Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_49357_0001.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/171739247#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=171739247",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-02T14:11:20Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T15:05:06Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "One Bedroom",
- "htmlDescription": "One Bedroom"
- },
- {
- "order": 2,
- "description": "Well Presented",
- "htmlDescription": "Well Presented"
- },
- {
- "order": 3,
- "description": "Available February",
- "htmlDescription": "Available February"
- },
- {
- "order": 4,
- "description": "Walthamstow Village Location",
- "htmlDescription": "Walthamstow Village Location"
- },
- {
- "order": 5,
- "description": "Short walk to Walthamstow Central Station",
- "htmlDescription": "Short walk to Walthamstow Central Station"
- },
- {
- "order": 6,
- "description": "Rear Gated Parking",
- "htmlDescription": "Rear Gated Parking"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c1208fb96/171739247/c1208fb963ffbd665292e89b66bf1342_max_476x317.jpeg",
- "url": "property-photo/c1208fb96/171739247/c1208fb963ffbd665292e89b66bf1342.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f567a8c2a/171739247/f567a8c2a26cfd92adf52445304ebea9_max_476x317.jpeg",
- "url": "property-photo/f567a8c2a/171739247/f567a8c2a26cfd92adf52445304ebea9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/caf90f50a/171739247/caf90f50a3d5650f91e112440f6e0eae_max_476x317.jpeg",
- "url": "property-photo/caf90f50a/171739247/caf90f50a3d5650f91e112440f6e0eae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ee04a90a2/171739247/ee04a90a2dc7c11a8255438b2ac34430_max_476x317.jpeg",
- "url": "property-photo/ee04a90a2/171739247/ee04a90a2dc7c11a8255438b2ac34430.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9d0e5ffa3/171739247/9d0e5ffa39f1932f2f8f4401c0cc0199_max_476x317.jpeg",
- "url": "property-photo/9d0e5ffa3/171739247/9d0e5ffa39f1932f2f8f4401c0cc0199.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dbf38275a/171739247/dbf38275a6dc438c525e33259b4de9f4_max_476x317.jpeg",
- "url": "property-photo/dbf38275a/171739247/dbf38275a6dc438c525e33259b4de9f4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/27b979cb6/171739247/27b979cb67625b55efa89c6d32d447e4_max_476x317.jpeg",
- "url": "property-photo/27b979cb6/171739247/27b979cb67625b55efa89c6d32d447e4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bd502ef60/171739247/bd502ef60b974440e2d2c3864da59082_max_476x317.jpeg",
- "url": "property-photo/bd502ef60/171739247/bd502ef60b974440e2d2c3864da59082.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bd502ef60/171739247/bd502ef60b974440e2d2c3864da59082_max_476x317.jpeg",
- "url": "property-photo/bd502ef60/171739247/bd502ef60b974440e2d2c3864da59082.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/27b979cb6/171739247/27b979cb67625b55efa89c6d32d447e4_max_476x317.jpeg",
- "url": "property-photo/27b979cb6/171739247/27b979cb67625b55efa89c6d32d447e4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/643bcae68/171739247/643bcae6810814b1cc44eacde5997861_max_476x317.jpeg",
- "url": "property-photo/643bcae68/171739247/643bcae6810814b1cc44eacde5997861.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f6ead47b1/171739247/f6ead47b117103cb1ca831b9bbc28faa_max_476x317.jpeg",
- "url": "property-photo/f6ead47b1/171739247/f6ead47b117103cb1ca831b9bbc28faa.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4189b9f44/171739247/4189b9f44e48cc6b98745f225933ce18_max_476x317.jpeg",
- "url": "property-photo/4189b9f44/171739247/4189b9f44e48cc6b98745f225933ce18.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/55a518542/171739247/55a5185427a15add9dad5f3ffe3b4ede_max_476x317.jpeg",
- "url": "property-photo/55a518542/171739247/55a5185427a15add9dad5f3ffe3b4ede.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a2e515f30/171739247/a2e515f30c3c21cd4ba3ca0f2db12c66_max_476x317.jpeg",
- "url": "property-photo/a2e515f30/171739247/a2e515f30c3c21cd4ba3ca0f2db12c66.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c17d0a96/171739247/5c17d0a96ea25ee8e7b653eed8fda282_max_476x317.jpeg",
- "url": "property-photo/5c17d0a96/171739247/5c17d0a96ea25ee8e7b653eed8fda282.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/242bbc11f/171739247/242bbc11fd369cfcc8dd3086686d0f44_max_476x317.jpeg",
- "url": "property-photo/242bbc11f/171739247/242bbc11fd369cfcc8dd3086686d0f44.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bcb4f40e7/171739247/bcb4f40e7ddfba80c2f679b4b560436d_max_476x317.jpeg",
- "url": "property-photo/bcb4f40e7/171739247/bcb4f40e7ddfba80c2f679b4b560436d.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/75af1f182/171739247/75af1f18249434c1fe029567e95c2a52_max_476x317.jpeg",
- "url": "property-photo/75af1f182/171739247/75af1f18249434c1fe029567e95c2a52.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c1208fb96/171739247/c1208fb963ffbd665292e89b66bf1342_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c1208fb96/171739247/c1208fb963ffbd665292e89b66bf1342_max_296x197.jpeg"
- },
- "formattedBranchName": " by The Stow Brothers, Walthamstow & Leyton",
- "addedOrReduced": "Reduced on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "1 bedroom apartment",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172079489,
- "bedrooms": 1,
- "bathrooms": 1,
- "numberOfImages": 6,
- "numberOfFloorplans": 0,
- "numberOfVirtualTours": 0,
- "summary": "MUST BE SEEN* Wonderlease are delighted to present to the market for rent this fantastic one bedroom flat in Walthamstow. This property benefits from one double bedroom, separate kitchen, separate living room, shared garden, family bathroom, offered unfurnished, gas central heating, double glazing t",
- "displayAddress": "Grosvenor Rise East, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.5807,
- "longitude": -0.011866
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91f1100e8/172079489/91f1100e89df31258ce2631b6170aa66_max_476x317.jpeg",
- "url": "property-photo/91f1100e8/172079489/91f1100e89df31258ce2631b6170aa66.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fa29b08e9/172079489/fa29b08e922b815a08a32f2f3ac2b35b_max_476x317.jpeg",
- "url": "property-photo/fa29b08e9/172079489/fa29b08e922b815a08a32f2f3ac2b35b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0c5c337e/172079489/d0c5c337e22c33095823fbbc885b1afd_max_476x317.jpeg",
- "url": "property-photo/d0c5c337e/172079489/d0c5c337e22c33095823fbbc885b1afd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/38c6d0dc3/172079489/38c6d0dc3a1c707e52c0de45033b62be_max_476x317.jpeg",
- "url": "property-photo/38c6d0dc3/172079489/38c6d0dc3a1c707e52c0de45033b62be.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dd1939827/172079489/dd19398276aaf1fe3e0d2c51ad0596aa_max_476x317.jpeg",
- "url": "property-photo/dd1939827/172079489/dd19398276aaf1fe3e0d2c51ad0596aa.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b2429203d/172079489/b2429203de90f9406f56adabee34b18a_max_476x317.jpeg",
- "url": "property-photo/b2429203d/172079489/b2429203de90f9406f56adabee34b18a.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-03-13T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T13:40:06Z"
- },
- "price": {
- "amount": 1600,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,600 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£369 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 13735,
- "brandPlusLogoURI": "/company/clogo_5116_0002.png",
- "contactTelephone": "020 3871 6005",
- "branchDisplayName": "Wonderlease Ltd, London",
- "branchName": "London",
- "brandTradingName": "Wonderlease Ltd",
- "branchLandingPageUrl": "/estate-agents/agent/Wonderlease-Ltd/London-13735.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-02-03T16:33:53Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_5116_0002.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "
As well as paying the rent, you may also be required to make the following permitted payments:
Permitted payments For properties in England, the Tenant Fees Act 2019 means that in addition to rent, lettings agents can only charge tenants (or anyone acting on the tenant's behalf) the following permitted payments:
Holding deposits (a maximum of 1 week's rent); Deposits (a maximum deposit of 5 weeks' rent for annual rent below £50,000, or 6 weeks' rent for annual rental of £50,000 and above); Payments to change a tenancy agreement eg. change of sharer (capped at £50 or, if higher, any reasonable costs); Payments associated with early termination of a tenancy (capped at the landlord's loss or the agent's reasonably incurred costs); Where required, utilities (electricity, gas or other fuel, water, sewerage), communication services \"telephone, internet, cable/satellite television), TV licence; Council tax (payable to the billing authority); Interest payments for the late payment of rent (up to 3% above Bank of England's annual percentage rate); Reasonable costs for replacement of lost keys or other security devices; Contractual damages in the event of the tenant's default of a tenancy agreement; and Any other permitted payments under the Tenant Fees Act 2019 and regulations applicable at the relevant time. Tenant protection
In addition to publishing relevant fees, lettings agents are also required to publish details of Redress Scheme and name of the approved Client Money Protection Scheme:
the redress scheme; The Property Ombudsman membership number D8817 the approved Client Money Protection scheme: Propertymark Scheme Ref: C0135353 ",
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/172079489#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172079489",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-11T13:34:14Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-13T00:21:04Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Amazing Location",
- "htmlDescription": "Amazing Location "
- },
- {
- "order": 2,
- "description": "Close To Walthamstow Central Station",
- "htmlDescription": "Close To Walthamstow Central Station "
- },
- {
- "order": 3,
- "description": "Close To Walthamstow Village",
- "htmlDescription": "Close To Walthamstow Village"
- },
- {
- "order": 4,
- "description": "Double Glazing",
- "htmlDescription": "Double Glazing"
- },
- {
- "order": 5,
- "description": "Family Room",
- "htmlDescription": "Family Room"
- },
- {
- "order": 6,
- "description": "Fully Fitted Kitchen",
- "htmlDescription": "Fully Fitted Kitchen"
- },
- {
- "order": 7,
- "description": "Gas Central Heating",
- "htmlDescription": "Gas Central Heating"
- },
- {
- "order": 8,
- "description": "One Bedroom Flat In Walthamstow",
- "htmlDescription": "One Bedroom Flat In Walthamstow"
- },
- {
- "order": 9,
- "description": "One Double Bedroom",
- "htmlDescription": "One Double Bedroom"
- },
- {
- "order": 10,
- "description": "Separate Reception Room",
- "htmlDescription": "Separate Reception Room"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91f1100e8/172079489/91f1100e89df31258ce2631b6170aa66_max_476x317.jpeg",
- "url": "property-photo/91f1100e8/172079489/91f1100e89df31258ce2631b6170aa66.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fa29b08e9/172079489/fa29b08e922b815a08a32f2f3ac2b35b_max_476x317.jpeg",
- "url": "property-photo/fa29b08e9/172079489/fa29b08e922b815a08a32f2f3ac2b35b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d0c5c337e/172079489/d0c5c337e22c33095823fbbc885b1afd_max_476x317.jpeg",
- "url": "property-photo/d0c5c337e/172079489/d0c5c337e22c33095823fbbc885b1afd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/38c6d0dc3/172079489/38c6d0dc3a1c707e52c0de45033b62be_max_476x317.jpeg",
- "url": "property-photo/38c6d0dc3/172079489/38c6d0dc3a1c707e52c0de45033b62be.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dd1939827/172079489/dd19398276aaf1fe3e0d2c51ad0596aa_max_476x317.jpeg",
- "url": "property-photo/dd1939827/172079489/dd19398276aaf1fe3e0d2c51ad0596aa.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b2429203d/172079489/b2429203de90f9406f56adabee34b18a_max_476x317.jpeg",
- "url": "property-photo/b2429203d/172079489/b2429203de90f9406f56adabee34b18a.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91f1100e8/172079489/91f1100e89df31258ce2631b6170aa66_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/91f1100e8/172079489/91f1100e89df31258ce2631b6170aa66_max_296x197.jpeg"
- },
- "formattedBranchName": " by Wonderlease Ltd, London",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "1 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172078034,
- "bedrooms": 2,
- "bathrooms": 2,
- "numberOfImages": 22,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Brand New Apartment | Panoramic City Views | Private Garden. As a resident, you’ll enjoy all inclusive access to premium amenities such as a 24-hour gym, yoga studio, games room, private work from home suites, and communal co-working areas. For added peace of mind, a 24/7 on-site concie...",
- "displayAddress": "Selborne Road, London E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.582965,
- "longitude": -0.022422
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5187fb41e/172078034/5187fb41ea25e7e9bcf62f393a4677b0_max_476x317.jpeg",
- "url": "property-photo/5187fb41e/172078034/5187fb41ea25e7e9bcf62f393a4677b0.jpeg",
- "caption": "1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/502d21be7/172078034/502d21be71184b6b9e4171790f8630ab_max_476x317.jpeg",
- "url": "property-photo/502d21be7/172078034/502d21be71184b6b9e4171790f8630ab.jpeg",
- "caption": "2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1da1a23a7/172078034/1da1a23a70ab6845d173f86244567938_max_476x317.jpeg",
- "url": "property-photo/1da1a23a7/172078034/1da1a23a70ab6845d173f86244567938.jpeg",
- "caption": "3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/67c930efe/172078034/67c930efeedf08d089f48826e42c20ba_max_476x317.jpeg",
- "url": "property-photo/67c930efe/172078034/67c930efeedf08d089f48826e42c20ba.jpeg",
- "caption": "4.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6957c19da/172078034/6957c19daa9ffd6901088ae16712da80_max_476x317.jpeg",
- "url": "property-photo/6957c19da/172078034/6957c19daa9ffd6901088ae16712da80.jpeg",
- "caption": "6.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63b082d50/172078034/63b082d50e69d9861b3663d001baeef0_max_476x317.jpeg",
- "url": "property-photo/63b082d50/172078034/63b082d50e69d9861b3663d001baeef0.jpeg",
- "caption": "8.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/90b999975/172078034/90b999975900fcc3640f6359b149c4be_max_476x317.jpeg",
- "url": "property-photo/90b999975/172078034/90b999975900fcc3640f6359b149c4be.jpeg",
- "caption": "9.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/68d4b870a/172078034/68d4b870a28408b9906cdef6dc5be509_max_476x317.jpeg",
- "url": "property-photo/68d4b870a/172078034/68d4b870a28408b9906cdef6dc5be509.jpeg",
- "caption": "10.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/eac2c1a5b/172078034/eac2c1a5b4d6fa612d91dc31fccbe6e6_max_476x317.jpeg",
- "url": "property-photo/eac2c1a5b/172078034/eac2c1a5b4d6fa612d91dc31fccbe6e6.jpeg",
- "caption": "11.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54543c755/172078034/54543c755e47ba6fc50ca95466b7ead0_max_476x317.jpeg",
- "url": "property-photo/54543c755/172078034/54543c755e47ba6fc50ca95466b7ead0.jpeg",
- "caption": "13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7df3b0661/172078034/7df3b0661be263a6c8723ae77c2d905d_max_476x317.jpeg",
- "url": "property-photo/7df3b0661/172078034/7df3b0661be263a6c8723ae77c2d905d.jpeg",
- "caption": "14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c0c084fe/172078034/1c0c084fe7bf060d50ef7066eb25138f_max_476x317.jpeg",
- "url": "property-photo/1c0c084fe/172078034/1c0c084fe7bf060d50ef7066eb25138f.jpeg",
- "caption": "15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bb5a33c9/172078034/3bb5a33c96f921553e684321b578d162_max_476x317.jpeg",
- "url": "property-photo/3bb5a33c9/172078034/3bb5a33c96f921553e684321b578d162.jpeg",
- "caption": "16.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c689acff9/172078034/c689acff9f1d25d0595d99049a242157_max_476x317.jpeg",
- "url": "property-photo/c689acff9/172078034/c689acff9f1d25d0595d99049a242157.jpeg",
- "caption": "17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/446f25795/172078034/446f25795776272b87d195afc5024c5f_max_476x317.jpeg",
- "url": "property-photo/446f25795/172078034/446f25795776272b87d195afc5024c5f.jpeg",
- "caption": "20.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f6c73550/172078034/8f6c73550dd06d676c5c869035215922_max_476x317.jpeg",
- "url": "property-photo/8f6c73550/172078034/8f6c73550dd06d676c5c869035215922.jpeg",
- "caption": "21.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c9bb5d7c/172078034/5c9bb5d7c008cde2fcb48de1fdd4cf8a_max_476x317.jpeg",
- "url": "property-photo/5c9bb5d7c/172078034/5c9bb5d7c008cde2fcb48de1fdd4cf8a.jpeg",
- "caption": "22.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a0ac5ffc/172078034/3a0ac5ffc5d412b81ca2f1d2c477eed0_max_476x317.jpeg",
- "url": "property-photo/3a0ac5ffc/172078034/3a0ac5ffc5d412b81ca2f1d2c477eed0.jpeg",
- "caption": "23.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2242cbb62/172078034/2242cbb62b3b08ed2c868c764b8ed5ef_max_476x317.jpeg",
- "url": "property-photo/2242cbb62/172078034/2242cbb62b3b08ed2c868c764b8ed5ef.jpeg",
- "caption": "24.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb9f9dd1c/172078034/cb9f9dd1ca7ab7255075992b93d3790c_max_476x317.jpeg",
- "url": "property-photo/cb9f9dd1c/172078034/cb9f9dd1ca7ab7255075992b93d3790c.jpeg",
- "caption": "25.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/89fc40e58/172078034/89fc40e5886f327980eaded630c2a967_max_476x317.jpeg",
- "url": "property-photo/89fc40e58/172078034/89fc40e5886f327980eaded630c2a967.jpeg",
- "caption": "26.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f7cce9943/172078034/f7cce9943f7068e32f51df3720f18407_max_476x317.jpeg",
- "url": "property-photo/f7cce9943/172078034/f7cce9943f7068e32f51df3720f18407.jpeg",
- "caption": "27.jpg"
- }
- ],
- "propertySubType": "Apartment",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T13:15:05Z"
- },
- "price": {
- "amount": 2995,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,995 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£691 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 252785,
- "brandPlusLogoURI": "/company/clogo_rmchoice_78041_0009.png",
- "contactTelephone": "020 8016 0527",
- "branchDisplayName": "Flagstones Property Group, London",
- "branchName": "London",
- "brandTradingName": "Flagstones Property Group",
- "branchLandingPageUrl": "/estate-agents/agent/Flagstones-Property-Group/London-252785.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-12-23T14:39:31Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_rmchoice_78041_0009.png",
- "primaryBrandColour": "#daa351"
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "900 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/172078034#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172078034",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-11T13:09:09Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-13T05:32:17Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "New luxury apartment",
- "htmlDescription": "New luxury apartment"
- },
- {
- "order": 2,
- "description": "Larger than the average 2 bedroom",
- "htmlDescription": "Larger than the average 2 bedroom"
- },
- {
- "order": 3,
- "description": "High-speed WiFi included",
- "htmlDescription": "High-speed WiFi included"
- },
- {
- "order": 4,
- "description": "Modern kitchen with integrated dishwasher, washer & dryer",
- "htmlDescription": "Modern kitchen with integrated dishwasher, washer & dryer"
- },
- {
- "order": 5,
- "description": "Pet friendly",
- "htmlDescription": "Pet friendly"
- },
- {
- "order": 6,
- "description": "Dedicated work from home desk area",
- "htmlDescription": "Dedicated work from home desk area"
- },
- {
- "order": 7,
- "description": "24-hour residents only gym access",
- "htmlDescription": "24-hour residents only gym access"
- },
- {
- "order": 8,
- "description": "On-site concierge available 24/7",
- "htmlDescription": "On-site concierge available 24/7"
- },
- {
- "order": 9,
- "description": "Panoramic views of London",
- "htmlDescription": "Panoramic views of London"
- },
- {
- "order": 10,
- "description": "£1,000 John Lewis voucher provided upon move-in",
- "htmlDescription": "£1,000 John Lewis voucher provided upon move-in"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5187fb41e/172078034/5187fb41ea25e7e9bcf62f393a4677b0_max_476x317.jpeg",
- "url": "property-photo/5187fb41e/172078034/5187fb41ea25e7e9bcf62f393a4677b0.jpeg",
- "caption": "1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/502d21be7/172078034/502d21be71184b6b9e4171790f8630ab_max_476x317.jpeg",
- "url": "property-photo/502d21be7/172078034/502d21be71184b6b9e4171790f8630ab.jpeg",
- "caption": "2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1da1a23a7/172078034/1da1a23a70ab6845d173f86244567938_max_476x317.jpeg",
- "url": "property-photo/1da1a23a7/172078034/1da1a23a70ab6845d173f86244567938.jpeg",
- "caption": "3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/67c930efe/172078034/67c930efeedf08d089f48826e42c20ba_max_476x317.jpeg",
- "url": "property-photo/67c930efe/172078034/67c930efeedf08d089f48826e42c20ba.jpeg",
- "caption": "4.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6957c19da/172078034/6957c19daa9ffd6901088ae16712da80_max_476x317.jpeg",
- "url": "property-photo/6957c19da/172078034/6957c19daa9ffd6901088ae16712da80.jpeg",
- "caption": "6.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63b082d50/172078034/63b082d50e69d9861b3663d001baeef0_max_476x317.jpeg",
- "url": "property-photo/63b082d50/172078034/63b082d50e69d9861b3663d001baeef0.jpeg",
- "caption": "8.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/90b999975/172078034/90b999975900fcc3640f6359b149c4be_max_476x317.jpeg",
- "url": "property-photo/90b999975/172078034/90b999975900fcc3640f6359b149c4be.jpeg",
- "caption": "9.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/68d4b870a/172078034/68d4b870a28408b9906cdef6dc5be509_max_476x317.jpeg",
- "url": "property-photo/68d4b870a/172078034/68d4b870a28408b9906cdef6dc5be509.jpeg",
- "caption": "10.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/eac2c1a5b/172078034/eac2c1a5b4d6fa612d91dc31fccbe6e6_max_476x317.jpeg",
- "url": "property-photo/eac2c1a5b/172078034/eac2c1a5b4d6fa612d91dc31fccbe6e6.jpeg",
- "caption": "11.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54543c755/172078034/54543c755e47ba6fc50ca95466b7ead0_max_476x317.jpeg",
- "url": "property-photo/54543c755/172078034/54543c755e47ba6fc50ca95466b7ead0.jpeg",
- "caption": "13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7df3b0661/172078034/7df3b0661be263a6c8723ae77c2d905d_max_476x317.jpeg",
- "url": "property-photo/7df3b0661/172078034/7df3b0661be263a6c8723ae77c2d905d.jpeg",
- "caption": "14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c0c084fe/172078034/1c0c084fe7bf060d50ef7066eb25138f_max_476x317.jpeg",
- "url": "property-photo/1c0c084fe/172078034/1c0c084fe7bf060d50ef7066eb25138f.jpeg",
- "caption": "15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bb5a33c9/172078034/3bb5a33c96f921553e684321b578d162_max_476x317.jpeg",
- "url": "property-photo/3bb5a33c9/172078034/3bb5a33c96f921553e684321b578d162.jpeg",
- "caption": "16.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c689acff9/172078034/c689acff9f1d25d0595d99049a242157_max_476x317.jpeg",
- "url": "property-photo/c689acff9/172078034/c689acff9f1d25d0595d99049a242157.jpeg",
- "caption": "17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/446f25795/172078034/446f25795776272b87d195afc5024c5f_max_476x317.jpeg",
- "url": "property-photo/446f25795/172078034/446f25795776272b87d195afc5024c5f.jpeg",
- "caption": "20.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f6c73550/172078034/8f6c73550dd06d676c5c869035215922_max_476x317.jpeg",
- "url": "property-photo/8f6c73550/172078034/8f6c73550dd06d676c5c869035215922.jpeg",
- "caption": "21.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c9bb5d7c/172078034/5c9bb5d7c008cde2fcb48de1fdd4cf8a_max_476x317.jpeg",
- "url": "property-photo/5c9bb5d7c/172078034/5c9bb5d7c008cde2fcb48de1fdd4cf8a.jpeg",
- "caption": "22.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a0ac5ffc/172078034/3a0ac5ffc5d412b81ca2f1d2c477eed0_max_476x317.jpeg",
- "url": "property-photo/3a0ac5ffc/172078034/3a0ac5ffc5d412b81ca2f1d2c477eed0.jpeg",
- "caption": "23.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2242cbb62/172078034/2242cbb62b3b08ed2c868c764b8ed5ef_max_476x317.jpeg",
- "url": "property-photo/2242cbb62/172078034/2242cbb62b3b08ed2c868c764b8ed5ef.jpeg",
- "caption": "24.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb9f9dd1c/172078034/cb9f9dd1ca7ab7255075992b93d3790c_max_476x317.jpeg",
- "url": "property-photo/cb9f9dd1c/172078034/cb9f9dd1ca7ab7255075992b93d3790c.jpeg",
- "caption": "25.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/89fc40e58/172078034/89fc40e5886f327980eaded630c2a967_max_476x317.jpeg",
- "url": "property-photo/89fc40e58/172078034/89fc40e5886f327980eaded630c2a967.jpeg",
- "caption": "26.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f7cce9943/172078034/f7cce9943f7068e32f51df3720f18407_max_476x317.jpeg",
- "url": "property-photo/f7cce9943/172078034/f7cce9943f7068e32f51df3720f18407.jpeg",
- "caption": "27.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5187fb41e/172078034/5187fb41ea25e7e9bcf62f393a4677b0_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5187fb41e/172078034/5187fb41ea25e7e9bcf62f393a4677b0_max_296x197.jpeg"
- },
- "formattedBranchName": " by Flagstones Property Group, London",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom apartment",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172078007,
- "bedrooms": 2,
- "bathrooms": 2,
- "numberOfImages": 22,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Limited Time Offer - £1,000 John Lewis voucher provided upon move-in | Brand New Apartment | Panoramic City Views | Private Garden. As a resident, you’ll enjoy all inclusive access to premium amenities such as a 24-hour gym, yoga studio, games room, private work from home suites, and co...",
- "displayAddress": "The Eades, London E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.582965,
- "longitude": -0.022422
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1dc64b2c0/172078007/1dc64b2c0ccb8b57674fb8736c226f04_max_476x317.jpeg",
- "url": "property-photo/1dc64b2c0/172078007/1dc64b2c0ccb8b57674fb8736c226f04.jpeg",
- "caption": "1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4f331a896/172078007/4f331a896e5a70f3243994b165229302_max_476x317.jpeg",
- "url": "property-photo/4f331a896/172078007/4f331a896e5a70f3243994b165229302.jpeg",
- "caption": "2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bbc670b8/172078007/3bbc670b8bde34d351a78371f87b2eca_max_476x317.jpeg",
- "url": "property-photo/3bbc670b8/172078007/3bbc670b8bde34d351a78371f87b2eca.jpeg",
- "caption": "3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/895830ce1/172078007/895830ce1550ec6e7bad2501d8f13115_max_476x317.jpeg",
- "url": "property-photo/895830ce1/172078007/895830ce1550ec6e7bad2501d8f13115.jpeg",
- "caption": "4 2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9bce5f1e7/172078007/9bce5f1e7ad9c2f3984809e234f73a31_max_476x317.jpeg",
- "url": "property-photo/9bce5f1e7/172078007/9bce5f1e7ad9c2f3984809e234f73a31.jpeg",
- "caption": "4*.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d4ba88061/172078007/d4ba880610d718a9d1c9c1c59c3a85f1_max_476x317.jpeg",
- "url": "property-photo/d4ba88061/172078007/d4ba880610d718a9d1c9c1c59c3a85f1.jpeg",
- "caption": "5.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f43b5df27/172078007/f43b5df271924a104444e30214a7f57d_max_476x317.jpeg",
- "url": "property-photo/f43b5df27/172078007/f43b5df271924a104444e30214a7f57d.jpeg",
- "caption": "7.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9bf31b1d6/172078007/9bf31b1d6b766e3bb708713c74b098af_max_476x317.jpeg",
- "url": "property-photo/9bf31b1d6/172078007/9bf31b1d6b766e3bb708713c74b098af.jpeg",
- "caption": "8.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/83434eb53/172078007/83434eb531dcca92be20c1fe4bda23ec_max_476x317.jpeg",
- "url": "property-photo/83434eb53/172078007/83434eb531dcca92be20c1fe4bda23ec.jpeg",
- "caption": "9.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/eac2c1a5b/172078007/eac2c1a5b4d6fa612d91dc31fccbe6e6_max_476x317.jpeg",
- "url": "property-photo/eac2c1a5b/172078007/eac2c1a5b4d6fa612d91dc31fccbe6e6.jpeg",
- "caption": "10.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63b082d50/172078007/63b082d50e69d9861b3663d001baeef0_max_476x317.jpeg",
- "url": "property-photo/63b082d50/172078007/63b082d50e69d9861b3663d001baeef0.jpeg",
- "caption": "11.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54543c755/172078007/54543c755e47ba6fc50ca95466b7ead0_max_476x317.jpeg",
- "url": "property-photo/54543c755/172078007/54543c755e47ba6fc50ca95466b7ead0.jpeg",
- "caption": "13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7df3b0661/172078007/7df3b0661be263a6c8723ae77c2d905d_max_476x317.jpeg",
- "url": "property-photo/7df3b0661/172078007/7df3b0661be263a6c8723ae77c2d905d.jpeg",
- "caption": "14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c0c084fe/172078007/1c0c084fe7bf060d50ef7066eb25138f_max_476x317.jpeg",
- "url": "property-photo/1c0c084fe/172078007/1c0c084fe7bf060d50ef7066eb25138f.jpeg",
- "caption": "15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bb5a33c9/172078007/3bb5a33c96f921553e684321b578d162_max_476x317.jpeg",
- "url": "property-photo/3bb5a33c9/172078007/3bb5a33c96f921553e684321b578d162.jpeg",
- "caption": "16.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c689acff9/172078007/c689acff9f1d25d0595d99049a242157_max_476x317.jpeg",
- "url": "property-photo/c689acff9/172078007/c689acff9f1d25d0595d99049a242157.jpeg",
- "caption": "17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/446f25795/172078007/446f25795776272b87d195afc5024c5f_max_476x317.jpeg",
- "url": "property-photo/446f25795/172078007/446f25795776272b87d195afc5024c5f.jpeg",
- "caption": "20.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f6c73550/172078007/8f6c73550dd06d676c5c869035215922_max_476x317.jpeg",
- "url": "property-photo/8f6c73550/172078007/8f6c73550dd06d676c5c869035215922.jpeg",
- "caption": "21.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c9bb5d7c/172078007/5c9bb5d7c008cde2fcb48de1fdd4cf8a_max_476x317.jpeg",
- "url": "property-photo/5c9bb5d7c/172078007/5c9bb5d7c008cde2fcb48de1fdd4cf8a.jpeg",
- "caption": "22.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a0ac5ffc/172078007/3a0ac5ffc5d412b81ca2f1d2c477eed0_max_476x317.jpeg",
- "url": "property-photo/3a0ac5ffc/172078007/3a0ac5ffc5d412b81ca2f1d2c477eed0.jpeg",
- "caption": "23.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2242cbb62/172078007/2242cbb62b3b08ed2c868c764b8ed5ef_max_476x317.jpeg",
- "url": "property-photo/2242cbb62/172078007/2242cbb62b3b08ed2c868c764b8ed5ef.jpeg",
- "caption": "24.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb9f9dd1c/172078007/cb9f9dd1ca7ab7255075992b93d3790c_max_476x317.jpeg",
- "url": "property-photo/cb9f9dd1c/172078007/cb9f9dd1ca7ab7255075992b93d3790c.jpeg",
- "caption": "25.jpg"
- }
- ],
- "propertySubType": "Apartment",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T13:14:05Z"
- },
- "price": {
- "amount": 2995,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,995 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£691 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 252785,
- "brandPlusLogoURI": "/company/clogo_rmchoice_78041_0009.png",
- "contactTelephone": "020 8016 0527",
- "branchDisplayName": "Flagstones Property Group, London",
- "branchName": "London",
- "brandTradingName": "Flagstones Property Group",
- "branchLandingPageUrl": "/estate-agents/agent/Flagstones-Property-Group/London-252785.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-12-23T14:39:31Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_rmchoice_78041_0009.png",
- "primaryBrandColour": "#daa351"
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "900 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/172078007#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172078007",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-11T13:08:41Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-13T05:32:17Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "New luxury apartment",
- "htmlDescription": "New luxury apartment"
- },
- {
- "order": 2,
- "description": "Larger than the average 2 bedroom",
- "htmlDescription": "Larger than the average 2 bedroom"
- },
- {
- "order": 3,
- "description": "High-speed WiFi included",
- "htmlDescription": "High-speed WiFi included"
- },
- {
- "order": 4,
- "description": "Modern kitchen with integrated dishwasher, washer & dryer",
- "htmlDescription": "Modern kitchen with integrated dishwasher, washer & dryer"
- },
- {
- "order": 5,
- "description": "Pet friendly",
- "htmlDescription": "Pet friendly"
- },
- {
- "order": 6,
- "description": "Dedicated work from home desk area",
- "htmlDescription": "Dedicated work from home desk area"
- },
- {
- "order": 7,
- "description": "24-hour residents only gym access",
- "htmlDescription": "24-hour residents only gym access"
- },
- {
- "order": 8,
- "description": "On-site concierge available 24/7",
- "htmlDescription": "On-site concierge available 24/7"
- },
- {
- "order": 9,
- "description": "Panoramic views of London",
- "htmlDescription": "Panoramic views of London"
- },
- {
- "order": 10,
- "description": "£1,000 John Lewis voucher provided upon move-in",
- "htmlDescription": "£1,000 John Lewis voucher provided upon move-in"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1dc64b2c0/172078007/1dc64b2c0ccb8b57674fb8736c226f04_max_476x317.jpeg",
- "url": "property-photo/1dc64b2c0/172078007/1dc64b2c0ccb8b57674fb8736c226f04.jpeg",
- "caption": "1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4f331a896/172078007/4f331a896e5a70f3243994b165229302_max_476x317.jpeg",
- "url": "property-photo/4f331a896/172078007/4f331a896e5a70f3243994b165229302.jpeg",
- "caption": "2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bbc670b8/172078007/3bbc670b8bde34d351a78371f87b2eca_max_476x317.jpeg",
- "url": "property-photo/3bbc670b8/172078007/3bbc670b8bde34d351a78371f87b2eca.jpeg",
- "caption": "3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/895830ce1/172078007/895830ce1550ec6e7bad2501d8f13115_max_476x317.jpeg",
- "url": "property-photo/895830ce1/172078007/895830ce1550ec6e7bad2501d8f13115.jpeg",
- "caption": "4 2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9bce5f1e7/172078007/9bce5f1e7ad9c2f3984809e234f73a31_max_476x317.jpeg",
- "url": "property-photo/9bce5f1e7/172078007/9bce5f1e7ad9c2f3984809e234f73a31.jpeg",
- "caption": "4*.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d4ba88061/172078007/d4ba880610d718a9d1c9c1c59c3a85f1_max_476x317.jpeg",
- "url": "property-photo/d4ba88061/172078007/d4ba880610d718a9d1c9c1c59c3a85f1.jpeg",
- "caption": "5.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f43b5df27/172078007/f43b5df271924a104444e30214a7f57d_max_476x317.jpeg",
- "url": "property-photo/f43b5df27/172078007/f43b5df271924a104444e30214a7f57d.jpeg",
- "caption": "7.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9bf31b1d6/172078007/9bf31b1d6b766e3bb708713c74b098af_max_476x317.jpeg",
- "url": "property-photo/9bf31b1d6/172078007/9bf31b1d6b766e3bb708713c74b098af.jpeg",
- "caption": "8.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/83434eb53/172078007/83434eb531dcca92be20c1fe4bda23ec_max_476x317.jpeg",
- "url": "property-photo/83434eb53/172078007/83434eb531dcca92be20c1fe4bda23ec.jpeg",
- "caption": "9.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/eac2c1a5b/172078007/eac2c1a5b4d6fa612d91dc31fccbe6e6_max_476x317.jpeg",
- "url": "property-photo/eac2c1a5b/172078007/eac2c1a5b4d6fa612d91dc31fccbe6e6.jpeg",
- "caption": "10.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63b082d50/172078007/63b082d50e69d9861b3663d001baeef0_max_476x317.jpeg",
- "url": "property-photo/63b082d50/172078007/63b082d50e69d9861b3663d001baeef0.jpeg",
- "caption": "11.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54543c755/172078007/54543c755e47ba6fc50ca95466b7ead0_max_476x317.jpeg",
- "url": "property-photo/54543c755/172078007/54543c755e47ba6fc50ca95466b7ead0.jpeg",
- "caption": "13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7df3b0661/172078007/7df3b0661be263a6c8723ae77c2d905d_max_476x317.jpeg",
- "url": "property-photo/7df3b0661/172078007/7df3b0661be263a6c8723ae77c2d905d.jpeg",
- "caption": "14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c0c084fe/172078007/1c0c084fe7bf060d50ef7066eb25138f_max_476x317.jpeg",
- "url": "property-photo/1c0c084fe/172078007/1c0c084fe7bf060d50ef7066eb25138f.jpeg",
- "caption": "15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bb5a33c9/172078007/3bb5a33c96f921553e684321b578d162_max_476x317.jpeg",
- "url": "property-photo/3bb5a33c9/172078007/3bb5a33c96f921553e684321b578d162.jpeg",
- "caption": "16.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c689acff9/172078007/c689acff9f1d25d0595d99049a242157_max_476x317.jpeg",
- "url": "property-photo/c689acff9/172078007/c689acff9f1d25d0595d99049a242157.jpeg",
- "caption": "17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/446f25795/172078007/446f25795776272b87d195afc5024c5f_max_476x317.jpeg",
- "url": "property-photo/446f25795/172078007/446f25795776272b87d195afc5024c5f.jpeg",
- "caption": "20.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f6c73550/172078007/8f6c73550dd06d676c5c869035215922_max_476x317.jpeg",
- "url": "property-photo/8f6c73550/172078007/8f6c73550dd06d676c5c869035215922.jpeg",
- "caption": "21.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c9bb5d7c/172078007/5c9bb5d7c008cde2fcb48de1fdd4cf8a_max_476x317.jpeg",
- "url": "property-photo/5c9bb5d7c/172078007/5c9bb5d7c008cde2fcb48de1fdd4cf8a.jpeg",
- "caption": "22.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a0ac5ffc/172078007/3a0ac5ffc5d412b81ca2f1d2c477eed0_max_476x317.jpeg",
- "url": "property-photo/3a0ac5ffc/172078007/3a0ac5ffc5d412b81ca2f1d2c477eed0.jpeg",
- "caption": "23.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2242cbb62/172078007/2242cbb62b3b08ed2c868c764b8ed5ef_max_476x317.jpeg",
- "url": "property-photo/2242cbb62/172078007/2242cbb62b3b08ed2c868c764b8ed5ef.jpeg",
- "caption": "24.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb9f9dd1c/172078007/cb9f9dd1ca7ab7255075992b93d3790c_max_476x317.jpeg",
- "url": "property-photo/cb9f9dd1c/172078007/cb9f9dd1ca7ab7255075992b93d3790c.jpeg",
- "caption": "25.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1dc64b2c0/172078007/1dc64b2c0ccb8b57674fb8736c226f04_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1dc64b2c0/172078007/1dc64b2c0ccb8b57674fb8736c226f04_max_296x197.jpeg"
- },
- "formattedBranchName": " by Flagstones Property Group, London",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom apartment",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172077983,
- "bedrooms": 0,
- "bathrooms": 1,
- "numberOfImages": 22,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Brand New Apartment | Panoramic City Views | Private Garden. As a resident, you’ll enjoy all inclusive access to premium amenities such as a 24-hour gym, yoga studio, games room, private work from home suites, and communal co-working areas. For added peace of mind, a 24/7 on-site concie...",
- "displayAddress": "Selborne Road, London E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.582965,
- "longitude": -0.022422
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fbcc740cc/172077983/fbcc740cc8438b4eea6bc4580a0b46b6_max_476x317.jpeg",
- "url": "property-photo/fbcc740cc/172077983/fbcc740cc8438b4eea6bc4580a0b46b6.jpeg",
- "caption": "1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/66c7178d3/172077983/66c7178d366f451f618913130f7e3f0b_max_476x317.jpeg",
- "url": "property-photo/66c7178d3/172077983/66c7178d366f451f618913130f7e3f0b.jpeg",
- "caption": "2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ffdc8c41f/172077983/ffdc8c41f10367a1db3f5fea3eff31c6_max_476x317.jpeg",
- "url": "property-photo/ffdc8c41f/172077983/ffdc8c41f10367a1db3f5fea3eff31c6.jpeg",
- "caption": "3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f43b5df27/172077983/f43b5df271924a104444e30214a7f57d_max_476x317.jpeg",
- "url": "property-photo/f43b5df27/172077983/f43b5df271924a104444e30214a7f57d.jpeg",
- "caption": "4.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63b082d50/172077983/63b082d50e69d9861b3663d001baeef0_max_476x317.jpeg",
- "url": "property-photo/63b082d50/172077983/63b082d50e69d9861b3663d001baeef0.jpeg",
- "caption": "5.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54543c755/172077983/54543c755e47ba6fc50ca95466b7ead0_max_476x317.jpeg",
- "url": "property-photo/54543c755/172077983/54543c755e47ba6fc50ca95466b7ead0.jpeg",
- "caption": "13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7df3b0661/172077983/7df3b0661be263a6c8723ae77c2d905d_max_476x317.jpeg",
- "url": "property-photo/7df3b0661/172077983/7df3b0661be263a6c8723ae77c2d905d.jpeg",
- "caption": "14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c0c084fe/172077983/1c0c084fe7bf060d50ef7066eb25138f_max_476x317.jpeg",
- "url": "property-photo/1c0c084fe/172077983/1c0c084fe7bf060d50ef7066eb25138f.jpeg",
- "caption": "15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bb5a33c9/172077983/3bb5a33c96f921553e684321b578d162_max_476x317.jpeg",
- "url": "property-photo/3bb5a33c9/172077983/3bb5a33c96f921553e684321b578d162.jpeg",
- "caption": "16.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c689acff9/172077983/c689acff9f1d25d0595d99049a242157_max_476x317.jpeg",
- "url": "property-photo/c689acff9/172077983/c689acff9f1d25d0595d99049a242157.jpeg",
- "caption": "17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/446f25795/172077983/446f25795776272b87d195afc5024c5f_max_476x317.jpeg",
- "url": "property-photo/446f25795/172077983/446f25795776272b87d195afc5024c5f.jpeg",
- "caption": "20.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f6c73550/172077983/8f6c73550dd06d676c5c869035215922_max_476x317.jpeg",
- "url": "property-photo/8f6c73550/172077983/8f6c73550dd06d676c5c869035215922.jpeg",
- "caption": "21.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c9bb5d7c/172077983/5c9bb5d7c008cde2fcb48de1fdd4cf8a_max_476x317.jpeg",
- "url": "property-photo/5c9bb5d7c/172077983/5c9bb5d7c008cde2fcb48de1fdd4cf8a.jpeg",
- "caption": "22.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a0ac5ffc/172077983/3a0ac5ffc5d412b81ca2f1d2c477eed0_max_476x317.jpeg",
- "url": "property-photo/3a0ac5ffc/172077983/3a0ac5ffc5d412b81ca2f1d2c477eed0.jpeg",
- "caption": "23.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2242cbb62/172077983/2242cbb62b3b08ed2c868c764b8ed5ef_max_476x317.jpeg",
- "url": "property-photo/2242cbb62/172077983/2242cbb62b3b08ed2c868c764b8ed5ef.jpeg",
- "caption": "24.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb9f9dd1c/172077983/cb9f9dd1ca7ab7255075992b93d3790c_max_476x317.jpeg",
- "url": "property-photo/cb9f9dd1c/172077983/cb9f9dd1ca7ab7255075992b93d3790c.jpeg",
- "caption": "25.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/89fc40e58/172077983/89fc40e5886f327980eaded630c2a967_max_476x317.jpeg",
- "url": "property-photo/89fc40e58/172077983/89fc40e5886f327980eaded630c2a967.jpeg",
- "caption": "26.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f7cce9943/172077983/f7cce9943f7068e32f51df3720f18407_max_476x317.jpeg",
- "url": "property-photo/f7cce9943/172077983/f7cce9943f7068e32f51df3720f18407.jpeg",
- "caption": "27.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a1476d180/172077983/a1476d180b566a0f225b4de4c440399b_max_476x317.jpeg",
- "url": "property-photo/a1476d180/172077983/a1476d180b566a0f225b4de4c440399b.jpeg",
- "caption": "28.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a722675ab/172077983/a722675ab11757d5047891c2ef4d06b0_max_476x317.jpeg",
- "url": "property-photo/a722675ab/172077983/a722675ab11757d5047891c2ef4d06b0.jpeg",
- "caption": "29.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7ac333c7f/172077983/7ac333c7f3c6373ea8ed2cb7f1a60e40_max_476x317.jpeg",
- "url": "property-photo/7ac333c7f/172077983/7ac333c7f3c6373ea8ed2cb7f1a60e40.jpeg",
- "caption": "30.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/93e17f65d/172077983/93e17f65d3addd7bbca1fd42b699f4b7_max_476x317.jpeg",
- "url": "property-photo/93e17f65d/172077983/93e17f65d3addd7bbca1fd42b699f4b7.jpeg",
- "caption": "31.jpg"
- }
- ],
- "propertySubType": "Apartment",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T13:14:02Z"
- },
- "price": {
- "amount": 2185,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,185 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£504 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 252785,
- "brandPlusLogoURI": "/company/clogo_rmchoice_78041_0009.png",
- "contactTelephone": "020 8016 0527",
- "branchDisplayName": "Flagstones Property Group, London",
- "branchName": "London",
- "brandTradingName": "Flagstones Property Group",
- "branchLandingPageUrl": "/estate-agents/agent/Flagstones-Property-Group/London-252785.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-12-23T14:39:31Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_rmchoice_78041_0009.png",
- "primaryBrandColour": "#daa351"
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "455 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/172077983#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172077983",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-11T13:08:12Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-13T05:32:17Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Brand new large studio apartment",
- "htmlDescription": "Brand new large studio apartment"
- },
- {
- "order": 2,
- "description": "Larger than the average apartment",
- "htmlDescription": "Larger than the average apartment"
- },
- {
- "order": 3,
- "description": "High-speed WiFi included",
- "htmlDescription": "High-speed WiFi included"
- },
- {
- "order": 4,
- "description": "Modern kitchen with integrated dishwasher, washer & dryer",
- "htmlDescription": "Modern kitchen with integrated dishwasher, washer & dryer"
- },
- {
- "order": 5,
- "description": "Pet friendly",
- "htmlDescription": "Pet friendly"
- },
- {
- "order": 6,
- "description": "Dedicated work from home desk area",
- "htmlDescription": "Dedicated work from home desk area"
- },
- {
- "order": 7,
- "description": "24-hour residents only gym access",
- "htmlDescription": "24-hour residents only gym access"
- },
- {
- "order": 8,
- "description": "On-site concierge available 24/7",
- "htmlDescription": "On-site concierge available 24/7"
- },
- {
- "order": 9,
- "description": "Panoramic views of London",
- "htmlDescription": "Panoramic views of London"
- },
- {
- "order": 10,
- "description": "New Listing",
- "htmlDescription": "New Listing"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fbcc740cc/172077983/fbcc740cc8438b4eea6bc4580a0b46b6_max_476x317.jpeg",
- "url": "property-photo/fbcc740cc/172077983/fbcc740cc8438b4eea6bc4580a0b46b6.jpeg",
- "caption": "1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/66c7178d3/172077983/66c7178d366f451f618913130f7e3f0b_max_476x317.jpeg",
- "url": "property-photo/66c7178d3/172077983/66c7178d366f451f618913130f7e3f0b.jpeg",
- "caption": "2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ffdc8c41f/172077983/ffdc8c41f10367a1db3f5fea3eff31c6_max_476x317.jpeg",
- "url": "property-photo/ffdc8c41f/172077983/ffdc8c41f10367a1db3f5fea3eff31c6.jpeg",
- "caption": "3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f43b5df27/172077983/f43b5df271924a104444e30214a7f57d_max_476x317.jpeg",
- "url": "property-photo/f43b5df27/172077983/f43b5df271924a104444e30214a7f57d.jpeg",
- "caption": "4.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63b082d50/172077983/63b082d50e69d9861b3663d001baeef0_max_476x317.jpeg",
- "url": "property-photo/63b082d50/172077983/63b082d50e69d9861b3663d001baeef0.jpeg",
- "caption": "5.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54543c755/172077983/54543c755e47ba6fc50ca95466b7ead0_max_476x317.jpeg",
- "url": "property-photo/54543c755/172077983/54543c755e47ba6fc50ca95466b7ead0.jpeg",
- "caption": "13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7df3b0661/172077983/7df3b0661be263a6c8723ae77c2d905d_max_476x317.jpeg",
- "url": "property-photo/7df3b0661/172077983/7df3b0661be263a6c8723ae77c2d905d.jpeg",
- "caption": "14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c0c084fe/172077983/1c0c084fe7bf060d50ef7066eb25138f_max_476x317.jpeg",
- "url": "property-photo/1c0c084fe/172077983/1c0c084fe7bf060d50ef7066eb25138f.jpeg",
- "caption": "15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bb5a33c9/172077983/3bb5a33c96f921553e684321b578d162_max_476x317.jpeg",
- "url": "property-photo/3bb5a33c9/172077983/3bb5a33c96f921553e684321b578d162.jpeg",
- "caption": "16.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c689acff9/172077983/c689acff9f1d25d0595d99049a242157_max_476x317.jpeg",
- "url": "property-photo/c689acff9/172077983/c689acff9f1d25d0595d99049a242157.jpeg",
- "caption": "17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/446f25795/172077983/446f25795776272b87d195afc5024c5f_max_476x317.jpeg",
- "url": "property-photo/446f25795/172077983/446f25795776272b87d195afc5024c5f.jpeg",
- "caption": "20.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f6c73550/172077983/8f6c73550dd06d676c5c869035215922_max_476x317.jpeg",
- "url": "property-photo/8f6c73550/172077983/8f6c73550dd06d676c5c869035215922.jpeg",
- "caption": "21.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c9bb5d7c/172077983/5c9bb5d7c008cde2fcb48de1fdd4cf8a_max_476x317.jpeg",
- "url": "property-photo/5c9bb5d7c/172077983/5c9bb5d7c008cde2fcb48de1fdd4cf8a.jpeg",
- "caption": "22.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a0ac5ffc/172077983/3a0ac5ffc5d412b81ca2f1d2c477eed0_max_476x317.jpeg",
- "url": "property-photo/3a0ac5ffc/172077983/3a0ac5ffc5d412b81ca2f1d2c477eed0.jpeg",
- "caption": "23.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2242cbb62/172077983/2242cbb62b3b08ed2c868c764b8ed5ef_max_476x317.jpeg",
- "url": "property-photo/2242cbb62/172077983/2242cbb62b3b08ed2c868c764b8ed5ef.jpeg",
- "caption": "24.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb9f9dd1c/172077983/cb9f9dd1ca7ab7255075992b93d3790c_max_476x317.jpeg",
- "url": "property-photo/cb9f9dd1c/172077983/cb9f9dd1ca7ab7255075992b93d3790c.jpeg",
- "caption": "25.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/89fc40e58/172077983/89fc40e5886f327980eaded630c2a967_max_476x317.jpeg",
- "url": "property-photo/89fc40e58/172077983/89fc40e5886f327980eaded630c2a967.jpeg",
- "caption": "26.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f7cce9943/172077983/f7cce9943f7068e32f51df3720f18407_max_476x317.jpeg",
- "url": "property-photo/f7cce9943/172077983/f7cce9943f7068e32f51df3720f18407.jpeg",
- "caption": "27.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a1476d180/172077983/a1476d180b566a0f225b4de4c440399b_max_476x317.jpeg",
- "url": "property-photo/a1476d180/172077983/a1476d180b566a0f225b4de4c440399b.jpeg",
- "caption": "28.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a722675ab/172077983/a722675ab11757d5047891c2ef4d06b0_max_476x317.jpeg",
- "url": "property-photo/a722675ab/172077983/a722675ab11757d5047891c2ef4d06b0.jpeg",
- "caption": "29.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7ac333c7f/172077983/7ac333c7f3c6373ea8ed2cb7f1a60e40_max_476x317.jpeg",
- "url": "property-photo/7ac333c7f/172077983/7ac333c7f3c6373ea8ed2cb7f1a60e40.jpeg",
- "caption": "30.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/93e17f65d/172077983/93e17f65d3addd7bbca1fd42b699f4b7_max_476x317.jpeg",
- "url": "property-photo/93e17f65d/172077983/93e17f65d3addd7bbca1fd42b699f4b7.jpeg",
- "caption": "31.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fbcc740cc/172077983/fbcc740cc8438b4eea6bc4580a0b46b6_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fbcc740cc/172077983/fbcc740cc8438b4eea6bc4580a0b46b6_max_296x197.jpeg"
- },
- "formattedBranchName": " by Flagstones Property Group, London",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "Studio apartment",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172077971,
- "bedrooms": 1,
- "bathrooms": 1,
- "numberOfImages": 22,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 1,
- "summary": "Limited Time Offer - £1,000 John Lewis voucher provided upon move-in | Brand New Apartment | Panoramic City Views | Private Garden. As a resident, you’ll enjoy all inclusive access to premium amenities such as a 24-hour gym, yoga studio, games room, private work from home suites, and co...",
- "displayAddress": "Selborne Road, London E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.582965,
- "longitude": -0.022422
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b11b9fdf3/172077971/b11b9fdf3a4108bf8d7b5d57378c4bcf_max_476x317.jpeg",
- "url": "property-photo/b11b9fdf3/172077971/b11b9fdf3a4108bf8d7b5d57378c4bcf.jpeg",
- "caption": "1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6957c19da/172077971/6957c19daa9ffd6901088ae16712da80_max_476x317.jpeg",
- "url": "property-photo/6957c19da/172077971/6957c19daa9ffd6901088ae16712da80.jpeg",
- "caption": "2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/59a364d86/172077971/59a364d86d6caf5cb49f17b3bdac8520_max_476x317.jpeg",
- "url": "property-photo/59a364d86/172077971/59a364d86d6caf5cb49f17b3bdac8520.jpeg",
- "caption": "3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3122d7972/172077971/3122d797274ad55eda6a28876bb3911b_max_476x317.jpeg",
- "url": "property-photo/3122d7972/172077971/3122d797274ad55eda6a28876bb3911b.jpeg",
- "caption": "5.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/eac2c1a5b/172077971/eac2c1a5b4d6fa612d91dc31fccbe6e6_max_476x317.jpeg",
- "url": "property-photo/eac2c1a5b/172077971/eac2c1a5b4d6fa612d91dc31fccbe6e6.jpeg",
- "caption": "6.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54543c755/172077971/54543c755e47ba6fc50ca95466b7ead0_max_476x317.jpeg",
- "url": "property-photo/54543c755/172077971/54543c755e47ba6fc50ca95466b7ead0.jpeg",
- "caption": "13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7df3b0661/172077971/7df3b0661be263a6c8723ae77c2d905d_max_476x317.jpeg",
- "url": "property-photo/7df3b0661/172077971/7df3b0661be263a6c8723ae77c2d905d.jpeg",
- "caption": "14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c0c084fe/172077971/1c0c084fe7bf060d50ef7066eb25138f_max_476x317.jpeg",
- "url": "property-photo/1c0c084fe/172077971/1c0c084fe7bf060d50ef7066eb25138f.jpeg",
- "caption": "15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bb5a33c9/172077971/3bb5a33c96f921553e684321b578d162_max_476x317.jpeg",
- "url": "property-photo/3bb5a33c9/172077971/3bb5a33c96f921553e684321b578d162.jpeg",
- "caption": "16.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c689acff9/172077971/c689acff9f1d25d0595d99049a242157_max_476x317.jpeg",
- "url": "property-photo/c689acff9/172077971/c689acff9f1d25d0595d99049a242157.jpeg",
- "caption": "17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/446f25795/172077971/446f25795776272b87d195afc5024c5f_max_476x317.jpeg",
- "url": "property-photo/446f25795/172077971/446f25795776272b87d195afc5024c5f.jpeg",
- "caption": "20.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f6c73550/172077971/8f6c73550dd06d676c5c869035215922_max_476x317.jpeg",
- "url": "property-photo/8f6c73550/172077971/8f6c73550dd06d676c5c869035215922.jpeg",
- "caption": "21.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c9bb5d7c/172077971/5c9bb5d7c008cde2fcb48de1fdd4cf8a_max_476x317.jpeg",
- "url": "property-photo/5c9bb5d7c/172077971/5c9bb5d7c008cde2fcb48de1fdd4cf8a.jpeg",
- "caption": "22.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a0ac5ffc/172077971/3a0ac5ffc5d412b81ca2f1d2c477eed0_max_476x317.jpeg",
- "url": "property-photo/3a0ac5ffc/172077971/3a0ac5ffc5d412b81ca2f1d2c477eed0.jpeg",
- "caption": "23.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2242cbb62/172077971/2242cbb62b3b08ed2c868c764b8ed5ef_max_476x317.jpeg",
- "url": "property-photo/2242cbb62/172077971/2242cbb62b3b08ed2c868c764b8ed5ef.jpeg",
- "caption": "24.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb9f9dd1c/172077971/cb9f9dd1ca7ab7255075992b93d3790c_max_476x317.jpeg",
- "url": "property-photo/cb9f9dd1c/172077971/cb9f9dd1ca7ab7255075992b93d3790c.jpeg",
- "caption": "25.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/89fc40e58/172077971/89fc40e5886f327980eaded630c2a967_max_476x317.jpeg",
- "url": "property-photo/89fc40e58/172077971/89fc40e5886f327980eaded630c2a967.jpeg",
- "caption": "26.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f7cce9943/172077971/f7cce9943f7068e32f51df3720f18407_max_476x317.jpeg",
- "url": "property-photo/f7cce9943/172077971/f7cce9943f7068e32f51df3720f18407.jpeg",
- "caption": "27.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a1476d180/172077971/a1476d180b566a0f225b4de4c440399b_max_476x317.jpeg",
- "url": "property-photo/a1476d180/172077971/a1476d180b566a0f225b4de4c440399b.jpeg",
- "caption": "28.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a722675ab/172077971/a722675ab11757d5047891c2ef4d06b0_max_476x317.jpeg",
- "url": "property-photo/a722675ab/172077971/a722675ab11757d5047891c2ef4d06b0.jpeg",
- "caption": "29.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7ac333c7f/172077971/7ac333c7f3c6373ea8ed2cb7f1a60e40_max_476x317.jpeg",
- "url": "property-photo/7ac333c7f/172077971/7ac333c7f3c6373ea8ed2cb7f1a60e40.jpeg",
- "caption": "30.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/93e17f65d/172077971/93e17f65d3addd7bbca1fd42b699f4b7_max_476x317.jpeg",
- "url": "property-photo/93e17f65d/172077971/93e17f65d3addd7bbca1fd42b699f4b7.jpeg",
- "caption": "31.jpg"
- }
- ],
- "propertySubType": "Apartment",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T13:13:05Z"
- },
- "price": {
- "amount": 2495,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,495 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£576 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 252785,
- "brandPlusLogoURI": "/company/clogo_rmchoice_78041_0009.png",
- "contactTelephone": "020 8016 0527",
- "branchDisplayName": "Flagstones Property Group, London",
- "branchName": "London",
- "brandTradingName": "Flagstones Property Group",
- "branchLandingPageUrl": "/estate-agents/agent/Flagstones-Property-Group/London-252785.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-12-23T14:39:31Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_rmchoice_78041_0009.png",
- "primaryBrandColour": "#daa351"
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "600 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/172077971#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172077971",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-11T13:07:48Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-13T05:32:17Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Brand new luxury apartment",
- "htmlDescription": "Brand new luxury apartment"
- },
- {
- "order": 2,
- "description": "Larger than the average 1-bedroom",
- "htmlDescription": "Larger than the average 1-bedroom"
- },
- {
- "order": 3,
- "description": "High-speed WiFi included",
- "htmlDescription": "High-speed WiFi included"
- },
- {
- "order": 4,
- "description": "Modern kitchen with integrated dishwasher, washer & dryer",
- "htmlDescription": "Modern kitchen with integrated dishwasher, washer & dryer"
- },
- {
- "order": 5,
- "description": "Pet friendly",
- "htmlDescription": "Pet friendly"
- },
- {
- "order": 6,
- "description": "Dedicated work from home desk area",
- "htmlDescription": "Dedicated work from home desk area"
- },
- {
- "order": 7,
- "description": "24-hour residents only gym access",
- "htmlDescription": "24-hour residents only gym access"
- },
- {
- "order": 8,
- "description": "On-site concierge available 24/7",
- "htmlDescription": "On-site concierge available 24/7"
- },
- {
- "order": 9,
- "description": "Panoramic views of London",
- "htmlDescription": "Panoramic views of London"
- },
- {
- "order": 10,
- "description": "£1,000 John Lewis voucher provided upon move-in",
- "htmlDescription": "£1,000 John Lewis voucher provided upon move-in"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b11b9fdf3/172077971/b11b9fdf3a4108bf8d7b5d57378c4bcf_max_476x317.jpeg",
- "url": "property-photo/b11b9fdf3/172077971/b11b9fdf3a4108bf8d7b5d57378c4bcf.jpeg",
- "caption": "1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6957c19da/172077971/6957c19daa9ffd6901088ae16712da80_max_476x317.jpeg",
- "url": "property-photo/6957c19da/172077971/6957c19daa9ffd6901088ae16712da80.jpeg",
- "caption": "2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/59a364d86/172077971/59a364d86d6caf5cb49f17b3bdac8520_max_476x317.jpeg",
- "url": "property-photo/59a364d86/172077971/59a364d86d6caf5cb49f17b3bdac8520.jpeg",
- "caption": "3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3122d7972/172077971/3122d797274ad55eda6a28876bb3911b_max_476x317.jpeg",
- "url": "property-photo/3122d7972/172077971/3122d797274ad55eda6a28876bb3911b.jpeg",
- "caption": "5.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/eac2c1a5b/172077971/eac2c1a5b4d6fa612d91dc31fccbe6e6_max_476x317.jpeg",
- "url": "property-photo/eac2c1a5b/172077971/eac2c1a5b4d6fa612d91dc31fccbe6e6.jpeg",
- "caption": "6.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54543c755/172077971/54543c755e47ba6fc50ca95466b7ead0_max_476x317.jpeg",
- "url": "property-photo/54543c755/172077971/54543c755e47ba6fc50ca95466b7ead0.jpeg",
- "caption": "13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7df3b0661/172077971/7df3b0661be263a6c8723ae77c2d905d_max_476x317.jpeg",
- "url": "property-photo/7df3b0661/172077971/7df3b0661be263a6c8723ae77c2d905d.jpeg",
- "caption": "14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1c0c084fe/172077971/1c0c084fe7bf060d50ef7066eb25138f_max_476x317.jpeg",
- "url": "property-photo/1c0c084fe/172077971/1c0c084fe7bf060d50ef7066eb25138f.jpeg",
- "caption": "15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bb5a33c9/172077971/3bb5a33c96f921553e684321b578d162_max_476x317.jpeg",
- "url": "property-photo/3bb5a33c9/172077971/3bb5a33c96f921553e684321b578d162.jpeg",
- "caption": "16.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c689acff9/172077971/c689acff9f1d25d0595d99049a242157_max_476x317.jpeg",
- "url": "property-photo/c689acff9/172077971/c689acff9f1d25d0595d99049a242157.jpeg",
- "caption": "17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/446f25795/172077971/446f25795776272b87d195afc5024c5f_max_476x317.jpeg",
- "url": "property-photo/446f25795/172077971/446f25795776272b87d195afc5024c5f.jpeg",
- "caption": "20.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8f6c73550/172077971/8f6c73550dd06d676c5c869035215922_max_476x317.jpeg",
- "url": "property-photo/8f6c73550/172077971/8f6c73550dd06d676c5c869035215922.jpeg",
- "caption": "21.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c9bb5d7c/172077971/5c9bb5d7c008cde2fcb48de1fdd4cf8a_max_476x317.jpeg",
- "url": "property-photo/5c9bb5d7c/172077971/5c9bb5d7c008cde2fcb48de1fdd4cf8a.jpeg",
- "caption": "22.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a0ac5ffc/172077971/3a0ac5ffc5d412b81ca2f1d2c477eed0_max_476x317.jpeg",
- "url": "property-photo/3a0ac5ffc/172077971/3a0ac5ffc5d412b81ca2f1d2c477eed0.jpeg",
- "caption": "23.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2242cbb62/172077971/2242cbb62b3b08ed2c868c764b8ed5ef_max_476x317.jpeg",
- "url": "property-photo/2242cbb62/172077971/2242cbb62b3b08ed2c868c764b8ed5ef.jpeg",
- "caption": "24.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb9f9dd1c/172077971/cb9f9dd1ca7ab7255075992b93d3790c_max_476x317.jpeg",
- "url": "property-photo/cb9f9dd1c/172077971/cb9f9dd1ca7ab7255075992b93d3790c.jpeg",
- "caption": "25.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/89fc40e58/172077971/89fc40e5886f327980eaded630c2a967_max_476x317.jpeg",
- "url": "property-photo/89fc40e58/172077971/89fc40e5886f327980eaded630c2a967.jpeg",
- "caption": "26.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f7cce9943/172077971/f7cce9943f7068e32f51df3720f18407_max_476x317.jpeg",
- "url": "property-photo/f7cce9943/172077971/f7cce9943f7068e32f51df3720f18407.jpeg",
- "caption": "27.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a1476d180/172077971/a1476d180b566a0f225b4de4c440399b_max_476x317.jpeg",
- "url": "property-photo/a1476d180/172077971/a1476d180b566a0f225b4de4c440399b.jpeg",
- "caption": "28.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a722675ab/172077971/a722675ab11757d5047891c2ef4d06b0_max_476x317.jpeg",
- "url": "property-photo/a722675ab/172077971/a722675ab11757d5047891c2ef4d06b0.jpeg",
- "caption": "29.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7ac333c7f/172077971/7ac333c7f3c6373ea8ed2cb7f1a60e40_max_476x317.jpeg",
- "url": "property-photo/7ac333c7f/172077971/7ac333c7f3c6373ea8ed2cb7f1a60e40.jpeg",
- "caption": "30.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/93e17f65d/172077971/93e17f65d3addd7bbca1fd42b699f4b7_max_476x317.jpeg",
- "url": "property-photo/93e17f65d/172077971/93e17f65d3addd7bbca1fd42b699f4b7.jpeg",
- "caption": "31.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b11b9fdf3/172077971/b11b9fdf3a4108bf8d7b5d57378c4bcf_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b11b9fdf3/172077971/b11b9fdf3a4108bf8d7b5d57378c4bcf_max_296x197.jpeg"
- },
- "formattedBranchName": " by Flagstones Property Group, London",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "1 bedroom apartment",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172073837,
- "bedrooms": 1,
- "bathrooms": 1,
- "numberOfImages": 16,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Available Now | Large One Bedroom | First Floor Flat | Unfurnished | Large Reception Room | Good Transport Links | Double Glazed | Ample sized bedroom with great storage | Moments away from local amenities | Gas Central Heating",
- "displayAddress": "Forest Road, Walthamstow, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.587574,
- "longitude": -0.035495
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d_max_476x317.jpeg",
- "url": "property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d.jpeg",
- "caption": "110a forest road-1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/96654aba3/172073837/96654aba3d99dd0c2b815d60497978c4_max_476x317.jpeg",
- "url": "property-photo/96654aba3/172073837/96654aba3d99dd0c2b815d60497978c4.jpeg",
- "caption": "110a forest road-2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ad9327de/172073837/9ad9327dedc353da60bdba999be5610b_max_476x317.jpeg",
- "url": "property-photo/9ad9327de/172073837/9ad9327dedc353da60bdba999be5610b.jpeg",
- "caption": "110a forest road-3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/883d1dccc/172073837/883d1dccc08a04494059531309a94b38_max_476x317.jpeg",
- "url": "property-photo/883d1dccc/172073837/883d1dccc08a04494059531309a94b38.jpeg",
- "caption": "110a forest road-4.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c12533762/172073837/c12533762f4e164dc5b7c5a6c40981cb_max_476x317.jpeg",
- "url": "property-photo/c12533762/172073837/c12533762f4e164dc5b7c5a6c40981cb.jpeg",
- "caption": "110a forest road-5.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cd39c79d6/172073837/cd39c79d657b8f424fa704badf30c964_max_476x317.jpeg",
- "url": "property-photo/cd39c79d6/172073837/cd39c79d657b8f424fa704badf30c964.jpeg",
- "caption": "110a forest road-6.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/13f81d8ae/172073837/13f81d8aebcfef777015f25d7216ce51_max_476x317.jpeg",
- "url": "property-photo/13f81d8ae/172073837/13f81d8aebcfef777015f25d7216ce51.jpeg",
- "caption": "110a forest road-7.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ba48444f2/172073837/ba48444f2a6b0741e48b49829b6b5451_max_476x317.jpeg",
- "url": "property-photo/ba48444f2/172073837/ba48444f2a6b0741e48b49829b6b5451.jpeg",
- "caption": "110a forest road-8.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/94b221762/172073837/94b221762b47ba8e28554d6f04c48893_max_476x317.jpeg",
- "url": "property-photo/94b221762/172073837/94b221762b47ba8e28554d6f04c48893.jpeg",
- "caption": "110a forest road-9.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d0f71572/172073837/3d0f71572492fa8e1b4b066287af1cea_max_476x317.jpeg",
- "url": "property-photo/3d0f71572/172073837/3d0f71572492fa8e1b4b066287af1cea.jpeg",
- "caption": "110a forest road-10.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/be71f2281/172073837/be71f22811800f0e59019a7a6c31b20b_max_476x317.jpeg",
- "url": "property-photo/be71f2281/172073837/be71f22811800f0e59019a7a6c31b20b.jpeg",
- "caption": "110a forest road-13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ccf9045f9/172073837/ccf9045f97c50f3dad93f8915a0eb666_max_476x317.jpeg",
- "url": "property-photo/ccf9045f9/172073837/ccf9045f97c50f3dad93f8915a0eb666.jpeg",
- "caption": "110a forest road-14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fd8a54725/172073837/fd8a54725104446e223445722f4ea582_max_476x317.jpeg",
- "url": "property-photo/fd8a54725/172073837/fd8a54725104446e223445722f4ea582.jpeg",
- "caption": "110a forest road-15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db0324566/172073837/db03245664ddb1b5c4830034ba6e1031_max_476x317.jpeg",
- "url": "property-photo/db0324566/172073837/db03245664ddb1b5c4830034ba6e1031.jpeg",
- "caption": "110a forest road-17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c2f6b8997/172073837/c2f6b8997af5c919ef6c951ca0b82123_max_476x317.jpeg",
- "url": "property-photo/c2f6b8997/172073837/c2f6b8997af5c919ef6c951ca0b82123.jpeg",
- "caption": "110a forest road-18.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/baa6b8740/172073837/baa6b874074f50a521b164dd3c0b2507_max_476x317.jpeg",
- "url": "property-photo/baa6b8740/172073837/baa6b874074f50a521b164dd3c0b2507.jpeg",
- "caption": "110a forest road-19.jpg"
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-03-14T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T12:10:05Z"
- },
- "price": {
- "amount": 1800,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,800 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£415 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 10145,
- "brandPlusLogoURI": "/company/clogo_3502_0001.jpeg",
- "contactTelephone": "020 3870 3140",
- "branchDisplayName": "Churchill Estates, Walthamstow & Leyton",
- "branchName": "Walthamstow & Leyton",
- "brandTradingName": "Churchill Estates",
- "branchLandingPageUrl": "/estate-agents/agent/Churchill-Estates/Walthamstow-and-Leyton-10145.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": false,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-17T16:30:56Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_3502_0001.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "
Permitted payments and tenant protection information \n
\nAs well as paying the rent, you may also be required to make the following permitted payments.
\n
\n
Permitted payments \n
\nFor properties in England, the Tenant Fees Act 2019 means that in addition to rent, lettings agents can only charge tenants (or anyone acting on the tenant's behalf) the following permitted payments:\n
Holding deposits (a maximum of 1 week's rent); Deposits (a maximum deposit of 5 weeks' rent for annual rent below £50,000, or 6 weeks' rent for annual rental of £50,000 and above); Payments to change a tenancy agreement eg. change of sharer (capped at £50 or, if higher, any reasonable costs); Payments associated with early termination of a tenancy (capped at the landlord's loss or the agent's reasonably incurred costs); Where required, utilities (electricity, gas or other fuel, water, sewerage), communication services (telephone, internet, cable/satellite television), TV licence; Council tax (payable to the billing authority); Interest payments for the late payment of rent (up to 3% above Bank of England's annual percentage rate); Reasonable costs for replacement of lost keys or other security devices; Contractual damages in the event of the tenant's default of a tenancy agreement; and Any other permitted payments under the Tenant Fees Act 2019 and regulations applicable at the relevant time. \n
\n
Tenant protection. \n\n
Churchill Estates redress scheme: The Property Ombudsman Churchill Estates designated Client Money Protection scheme: Client Money Protection (CMP) provided by Propertymark/ARLA \n",
- "displaySize": "688 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/172073837#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172073837",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-11T12:04:55Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T12:10:05Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Available Now",
- "htmlDescription": "Available Now"
- },
- {
- "order": 2,
- "description": "Large One Bedroom",
- "htmlDescription": "Large One Bedroom"
- },
- {
- "order": 3,
- "description": "First Floor Flat",
- "htmlDescription": "First Floor Flat"
- },
- {
- "order": 4,
- "description": "Unfurnished",
- "htmlDescription": "Unfurnished"
- },
- {
- "order": 5,
- "description": "Large Reception Room",
- "htmlDescription": "Large Reception Room"
- },
- {
- "order": 6,
- "description": "Good Transport Links",
- "htmlDescription": "Good Transport Links"
- },
- {
- "order": 7,
- "description": "Double Glazed",
- "htmlDescription": "Double Glazed"
- },
- {
- "order": 8,
- "description": "Ample sized bedroom with great storage",
- "htmlDescription": "Ample sized bedroom with great storage"
- },
- {
- "order": 9,
- "description": "Moments away from local amenities",
- "htmlDescription": "Moments away from local amenities"
- },
- {
- "order": 10,
- "description": "Gas Central Heating",
- "htmlDescription": "Gas Central Heating"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d_max_476x317.jpeg",
- "url": "property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d.jpeg",
- "caption": "110a forest road-1.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/96654aba3/172073837/96654aba3d99dd0c2b815d60497978c4_max_476x317.jpeg",
- "url": "property-photo/96654aba3/172073837/96654aba3d99dd0c2b815d60497978c4.jpeg",
- "caption": "110a forest road-2.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ad9327de/172073837/9ad9327dedc353da60bdba999be5610b_max_476x317.jpeg",
- "url": "property-photo/9ad9327de/172073837/9ad9327dedc353da60bdba999be5610b.jpeg",
- "caption": "110a forest road-3.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/883d1dccc/172073837/883d1dccc08a04494059531309a94b38_max_476x317.jpeg",
- "url": "property-photo/883d1dccc/172073837/883d1dccc08a04494059531309a94b38.jpeg",
- "caption": "110a forest road-4.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c12533762/172073837/c12533762f4e164dc5b7c5a6c40981cb_max_476x317.jpeg",
- "url": "property-photo/c12533762/172073837/c12533762f4e164dc5b7c5a6c40981cb.jpeg",
- "caption": "110a forest road-5.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cd39c79d6/172073837/cd39c79d657b8f424fa704badf30c964_max_476x317.jpeg",
- "url": "property-photo/cd39c79d6/172073837/cd39c79d657b8f424fa704badf30c964.jpeg",
- "caption": "110a forest road-6.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/13f81d8ae/172073837/13f81d8aebcfef777015f25d7216ce51_max_476x317.jpeg",
- "url": "property-photo/13f81d8ae/172073837/13f81d8aebcfef777015f25d7216ce51.jpeg",
- "caption": "110a forest road-7.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ba48444f2/172073837/ba48444f2a6b0741e48b49829b6b5451_max_476x317.jpeg",
- "url": "property-photo/ba48444f2/172073837/ba48444f2a6b0741e48b49829b6b5451.jpeg",
- "caption": "110a forest road-8.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/94b221762/172073837/94b221762b47ba8e28554d6f04c48893_max_476x317.jpeg",
- "url": "property-photo/94b221762/172073837/94b221762b47ba8e28554d6f04c48893.jpeg",
- "caption": "110a forest road-9.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d0f71572/172073837/3d0f71572492fa8e1b4b066287af1cea_max_476x317.jpeg",
- "url": "property-photo/3d0f71572/172073837/3d0f71572492fa8e1b4b066287af1cea.jpeg",
- "caption": "110a forest road-10.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/be71f2281/172073837/be71f22811800f0e59019a7a6c31b20b_max_476x317.jpeg",
- "url": "property-photo/be71f2281/172073837/be71f22811800f0e59019a7a6c31b20b.jpeg",
- "caption": "110a forest road-13.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ccf9045f9/172073837/ccf9045f97c50f3dad93f8915a0eb666_max_476x317.jpeg",
- "url": "property-photo/ccf9045f9/172073837/ccf9045f97c50f3dad93f8915a0eb666.jpeg",
- "caption": "110a forest road-14.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fd8a54725/172073837/fd8a54725104446e223445722f4ea582_max_476x317.jpeg",
- "url": "property-photo/fd8a54725/172073837/fd8a54725104446e223445722f4ea582.jpeg",
- "caption": "110a forest road-15.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db0324566/172073837/db03245664ddb1b5c4830034ba6e1031_max_476x317.jpeg",
- "url": "property-photo/db0324566/172073837/db03245664ddb1b5c4830034ba6e1031.jpeg",
- "caption": "110a forest road-17.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c2f6b8997/172073837/c2f6b8997af5c919ef6c951ca0b82123_max_476x317.jpeg",
- "url": "property-photo/c2f6b8997/172073837/c2f6b8997af5c919ef6c951ca0b82123.jpeg",
- "caption": "110a forest road-18.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/baa6b8740/172073837/baa6b874074f50a521b164dd3c0b2507_max_476x317.jpeg",
- "url": "property-photo/baa6b8740/172073837/baa6b874074f50a521b164dd3c0b2507.jpeg",
- "caption": "110a forest road-19.jpg"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c37eac8f/172073837/6c37eac8f95b41bd40a7818dedeb989d_max_296x197.jpeg"
- },
- "formattedBranchName": " by Churchill Estates, Walthamstow & Leyton",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "1 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172072550,
- "bedrooms": 1,
- "bathrooms": 1,
- "numberOfImages": 15,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Nestled just moments from the heart of Walthamstow’s much-loved Village, this beautifully presented one-bedroom apartment offers a perfect blend of modern style, period charm, and an unbeatable location. Situated on the sought-after Grosvenor Rise East, this home truly places you at the cen...",
- "displayAddress": "Grosvenor Rise East, London, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.580702,
- "longitude": -0.01232
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/349d31c59/172072550/349d31c59c831f0e87d128c2d3ef0554_max_476x317.jpeg",
- "url": "property-photo/349d31c59/172072550/349d31c59c831f0e87d128c2d3ef0554.jpeg",
- "caption": "Picture No. 03"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3b5c6ab5b/172072550/3b5c6ab5b1815f61e904533a9a8556d1_max_476x317.jpeg",
- "url": "property-photo/3b5c6ab5b/172072550/3b5c6ab5b1815f61e904533a9a8556d1.jpeg",
- "caption": "Picture No. 15"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fc2dcd92c/172072550/fc2dcd92cbba3ef157996a0686186136_max_476x317.jpeg",
- "url": "property-photo/fc2dcd92c/172072550/fc2dcd92cbba3ef157996a0686186136.jpeg",
- "caption": "Picture No. 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b4d86709/172072550/5b4d867095ca8db222eeb02a0a4179a1_max_476x317.jpeg",
- "url": "property-photo/5b4d86709/172072550/5b4d867095ca8db222eeb02a0a4179a1.jpeg",
- "caption": "Picture No. 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a784b582/172072550/1a784b582817eba923ae6b0caceae50d_max_476x317.jpeg",
- "url": "property-photo/1a784b582/172072550/1a784b582817eba923ae6b0caceae50d.jpeg",
- "caption": "Picture No. 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d90bb4e0/172072550/3d90bb4e0ff49c1da6c4098b68efeb81_max_476x317.jpeg",
- "url": "property-photo/3d90bb4e0/172072550/3d90bb4e0ff49c1da6c4098b68efeb81.jpeg",
- "caption": "Picture No. 06"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/76f827af4/172072550/76f827af4ff522ca51a4599a9bda4e44_max_476x317.jpeg",
- "url": "property-photo/76f827af4/172072550/76f827af4ff522ca51a4599a9bda4e44.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/77af26161/172072550/77af2616193f4bca62fd5f6d1472b4d6_max_476x317.jpeg",
- "url": "property-photo/77af26161/172072550/77af2616193f4bca62fd5f6d1472b4d6.jpeg",
- "caption": "Picture No. 08"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ddff7a0fe/172072550/ddff7a0feab66c1c3e6938b3b94391a4_max_476x317.jpeg",
- "url": "property-photo/ddff7a0fe/172072550/ddff7a0feab66c1c3e6938b3b94391a4.jpeg",
- "caption": "Picture No. 09"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bf84b3291/172072550/bf84b32918f76b7d1e80e5712ffd44ea_max_476x317.jpeg",
- "url": "property-photo/bf84b3291/172072550/bf84b32918f76b7d1e80e5712ffd44ea.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c018f711/172072550/8c018f7119c2b903470962d303ee2228_max_476x317.jpeg",
- "url": "property-photo/8c018f711/172072550/8c018f7119c2b903470962d303ee2228.jpeg",
- "caption": "Picture No. 10"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a20c3f8e/172072550/3a20c3f8e77c75b3c6feb4cbdb8cf09b_max_476x317.jpeg",
- "url": "property-photo/3a20c3f8e/172072550/3a20c3f8e77c75b3c6feb4cbdb8cf09b.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4c363b593/172072550/4c363b59301f765d386f395d8c995e48_max_476x317.jpeg",
- "url": "property-photo/4c363b593/172072550/4c363b59301f765d386f395d8c995e48.jpeg",
- "caption": "Picture No. 04"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/92da02181/172072550/92da02181cc316e10e328f90e651ecbd_max_476x317.jpeg",
- "url": "property-photo/92da02181/172072550/92da02181cc316e10e328f90e651ecbd.jpeg",
- "caption": "Picture No. 01"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5895cfb2f/172072550/5895cfb2fd21ecdf09836d53bb523120_max_476x317.jpeg",
- "url": "property-photo/5895cfb2f/172072550/5895cfb2fd21ecdf09836d53bb523120.jpeg",
- "caption": "Picture No. 02"
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-03-13T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-11T11:53:05Z"
- },
- "price": {
- "amount": 1600,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,600 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£369 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 81876,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_103919_0000.jpeg",
- "contactTelephone": "020 4538 4745",
- "branchDisplayName": "Your Move Sales & Lettings, Walthamstow",
- "branchName": "Walthamstow",
- "brandTradingName": "Your Move Sales & Lettings",
- "branchLandingPageUrl": "/estate-agents/agent/Your-Move-Sales-and-Lettings/Walthamstow-81876.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-02T10:39:59Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_103919_0000.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "
Tenancy Information \r
What permitted payments can I expect to pay if I rent a property with Your Move? \rWhen you have agreed on the property of your choice, Your Move will provide you with a Tenancy Application Form. This helps explain not only the next stages of your application but any permitted payments which are due before you sign your Tenancy Agreement and any which may become payable during and after the tenancy. This will also include confirmation of the agreed rent and the deposit.
\rBelow is a list of our current permitted payments. At any time you are interested in a property, please ask a member of staff for a full breakdown of permitted payments that may be payable before, during and after a tenancy.
\r
Holding Deposit (per tenancy) One week's rent. This is to reserve a property. Please Note: This will be withheld if any relevant person (including any guarantor(s)) withdraw from the tenancy, fail a Right-to-Rent check, provide materially significant false or misleading information, or fail to sign their tenancy agreement (and / or Deed of Guarantee) within 15 calendar days (or other Deadline for Agreement as mutually agreed in writing).
\r
Security Deposit (per tenancy. Rent under £50,000 per year) Five weeks' rent. This covers damages or defaults on the part of the tenant during the tenancy and applies to Assured Shorthold Tenancies (AST).
\r
Security Deposit (per tenancy. Rent of £50,000 or over per year) Six weeks' rent. This covers damages or defaults on the part of the tenant during the tenancy and applies to Assured Shorthold Tenancies (AST).
\r
Unpaid Rent. Interest at 3% above the Bank of England Base Rate from Rent Due Date until paid in order to pursue non-payment of rent. Please Note: This will not be levied until the rent is more than 14 days in arrears.
\r
Lost Key(s) or other Security Device(s). Tenants are liable to the actual cost of replacing any lost key(s) or other security device(s). If the loss results in locks needing to be changed, the actual costs of a locksmith, new lock and replacement keys for the tenant, landlord any other persons requiring keys will be charged to the tenant. If extra costs are incurred there will be a charge of £15 per hour (inc. VAT) for the time taken replacing lost key(s) or other security device(s).
\r
Variation of Contract (Tenant's Request) £50 (inc. VAT) per agreed variation. To cover the costs associated with taking landlord's instructions as well as the preparation and execution of new legal documents.
\r
Change of Sharer (Tenant's Request) £50 (inc. VAT) per replacement tenant or any reasonable costs incurred if higher. To cover the costs associated with taking landlord's instructions, new tenant referencing and Right-to-Rent checks, deposit registration as well as the preparation and execution of new legal documents.
\r
Early Termination (Tenant's Request). Should the tenant wish to leave their contract early, they shall be liable to the landlord's costs in re-letting the property as well as all rent due under the tenancy until the start date of the replacement tenancy. These costs will be no more than the maximum amount of rent outstanding on the tenancy.
\rClient Money Protection is provided by Propertymark. Redress through The Property Ombudsman Scheme.
",
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/172072550#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172072550",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-11T11:47:26Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T13:38:14Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Walthamstow Village Area",
- "htmlDescription": "Walthamstow Village Area"
- },
- {
- "order": 2,
- "description": "Large One Bedroom Apartment",
- "htmlDescription": "Large One Bedroom Apartment"
- },
- {
- "order": 3,
- "description": "Premier Turning Of E17",
- "htmlDescription": "Premier Turning Of E17"
- },
- {
- "order": 4,
- "description": "Separate Living Area",
- "htmlDescription": "Separate Living Area"
- },
- {
- "order": 5,
- "description": "12 Month Tenancy +",
- "htmlDescription": "12 Month Tenancy +"
- },
- {
- "order": 6,
- "description": "Unfurnished Property",
- "htmlDescription": "Unfurnished Property"
- },
- {
- "order": 7,
- "description": "Council Tax Band B",
- "htmlDescription": "Council Tax Band B"
- },
- {
- "order": 8,
- "description": "EPC Rating C",
- "htmlDescription": "EPC Rating C"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/349d31c59/172072550/349d31c59c831f0e87d128c2d3ef0554_max_476x317.jpeg",
- "url": "property-photo/349d31c59/172072550/349d31c59c831f0e87d128c2d3ef0554.jpeg",
- "caption": "Picture No. 03"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3b5c6ab5b/172072550/3b5c6ab5b1815f61e904533a9a8556d1_max_476x317.jpeg",
- "url": "property-photo/3b5c6ab5b/172072550/3b5c6ab5b1815f61e904533a9a8556d1.jpeg",
- "caption": "Picture No. 15"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fc2dcd92c/172072550/fc2dcd92cbba3ef157996a0686186136_max_476x317.jpeg",
- "url": "property-photo/fc2dcd92c/172072550/fc2dcd92cbba3ef157996a0686186136.jpeg",
- "caption": "Picture No. 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5b4d86709/172072550/5b4d867095ca8db222eeb02a0a4179a1_max_476x317.jpeg",
- "url": "property-photo/5b4d86709/172072550/5b4d867095ca8db222eeb02a0a4179a1.jpeg",
- "caption": "Picture No. 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a784b582/172072550/1a784b582817eba923ae6b0caceae50d_max_476x317.jpeg",
- "url": "property-photo/1a784b582/172072550/1a784b582817eba923ae6b0caceae50d.jpeg",
- "caption": "Picture No. 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3d90bb4e0/172072550/3d90bb4e0ff49c1da6c4098b68efeb81_max_476x317.jpeg",
- "url": "property-photo/3d90bb4e0/172072550/3d90bb4e0ff49c1da6c4098b68efeb81.jpeg",
- "caption": "Picture No. 06"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/76f827af4/172072550/76f827af4ff522ca51a4599a9bda4e44_max_476x317.jpeg",
- "url": "property-photo/76f827af4/172072550/76f827af4ff522ca51a4599a9bda4e44.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/77af26161/172072550/77af2616193f4bca62fd5f6d1472b4d6_max_476x317.jpeg",
- "url": "property-photo/77af26161/172072550/77af2616193f4bca62fd5f6d1472b4d6.jpeg",
- "caption": "Picture No. 08"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ddff7a0fe/172072550/ddff7a0feab66c1c3e6938b3b94391a4_max_476x317.jpeg",
- "url": "property-photo/ddff7a0fe/172072550/ddff7a0feab66c1c3e6938b3b94391a4.jpeg",
- "caption": "Picture No. 09"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bf84b3291/172072550/bf84b32918f76b7d1e80e5712ffd44ea_max_476x317.jpeg",
- "url": "property-photo/bf84b3291/172072550/bf84b32918f76b7d1e80e5712ffd44ea.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c018f711/172072550/8c018f7119c2b903470962d303ee2228_max_476x317.jpeg",
- "url": "property-photo/8c018f711/172072550/8c018f7119c2b903470962d303ee2228.jpeg",
- "caption": "Picture No. 10"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a20c3f8e/172072550/3a20c3f8e77c75b3c6feb4cbdb8cf09b_max_476x317.jpeg",
- "url": "property-photo/3a20c3f8e/172072550/3a20c3f8e77c75b3c6feb4cbdb8cf09b.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4c363b593/172072550/4c363b59301f765d386f395d8c995e48_max_476x317.jpeg",
- "url": "property-photo/4c363b593/172072550/4c363b59301f765d386f395d8c995e48.jpeg",
- "caption": "Picture No. 04"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/92da02181/172072550/92da02181cc316e10e328f90e651ecbd_max_476x317.jpeg",
- "url": "property-photo/92da02181/172072550/92da02181cc316e10e328f90e651ecbd.jpeg",
- "caption": "Picture No. 01"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5895cfb2f/172072550/5895cfb2fd21ecdf09836d53bb523120_max_476x317.jpeg",
- "url": "property-photo/5895cfb2f/172072550/5895cfb2fd21ecdf09836d53bb523120.jpeg",
- "caption": "Picture No. 02"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/349d31c59/172072550/349d31c59c831f0e87d128c2d3ef0554_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/349d31c59/172072550/349d31c59c831f0e87d128c2d3ef0554_max_296x197.jpeg"
- },
- "formattedBranchName": " by Your Move Sales & Lettings, Walthamstow",
- "addedOrReduced": "Added on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "1 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 170909705,
- "bedrooms": 2,
- "bathrooms": 1,
- "numberOfImages": 9,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "An exciting two bedroom split level apartment located in the heart of E17. Boasting two bedrooms separated over two floors, separate living area, laminate flooring, modern tiled kitchen and a large bathroom. The property has recently been renovated throughout. Location? Carisbrooke Ro...",
- "displayAddress": "Carisbrooke Road, Walthamstow, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.582376,
- "longitude": -0.032474
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a59a2a198/170909705/a59a2a19826ea3b954bd053d7449e629_max_476x317.jpeg",
- "url": "property-photo/a59a2a198/170909705/a59a2a19826ea3b954bd053d7449e629.jpeg",
- "caption": "Picture No. 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e2dce024b/170909705/e2dce024b518294813c87ada81f74ba2_max_476x317.jpeg",
- "url": "property-photo/e2dce024b/170909705/e2dce024b518294813c87ada81f74ba2.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f0d36e45f/170909705/f0d36e45f5da97916f493aab0d5acd4a_max_476x317.jpeg",
- "url": "property-photo/f0d36e45f/170909705/f0d36e45f5da97916f493aab0d5acd4a.jpeg",
- "caption": "Picture No. 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0866c24a1/170909705/0866c24a19a551ace35af0bc76d6ba16_max_476x317.jpeg",
- "url": "property-photo/0866c24a1/170909705/0866c24a19a551ace35af0bc76d6ba16.jpeg",
- "caption": "Picture No. 03"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/84a9c961c/170909705/84a9c961c7bf6fd354a3af7fc29b1103_max_476x317.jpeg",
- "url": "property-photo/84a9c961c/170909705/84a9c961c7bf6fd354a3af7fc29b1103.jpeg",
- "caption": "Picture No. 02"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0ab8b4bbd/170909705/0ab8b4bbdfd8083d46f06491141572a2_max_476x317.jpeg",
- "url": "property-photo/0ab8b4bbd/170909705/0ab8b4bbdfd8083d46f06491141572a2.jpeg",
- "caption": "Picture No. 04"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ee6b98a8c/170909705/ee6b98a8c3fb4e7f055a482f4260b4d9_max_476x317.jpeg",
- "url": "property-photo/ee6b98a8c/170909705/ee6b98a8c3fb4e7f055a482f4260b4d9.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c068da1b0/170909705/c068da1b0cddf7ec481bff75864e0f5b_max_476x317.jpeg",
- "url": "property-photo/c068da1b0/170909705/c068da1b0cddf7ec481bff75864e0f5b.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d812a477f/170909705/d812a477fdcb4b836d190f8670c06907_max_476x317.jpeg",
- "url": "property-photo/d812a477f/170909705/d812a477fdcb4b836d190f8670c06907.jpeg",
- "caption": "Picture No. 08"
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-02-11T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2026-02-11T10:40:56Z"
- },
- "price": {
- "amount": 1900,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,900 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£438 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 81876,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_103919_0000.jpeg",
- "contactTelephone": "020 4538 4745",
- "branchDisplayName": "Your Move Sales & Lettings, Walthamstow",
- "branchName": "Walthamstow",
- "brandTradingName": "Your Move Sales & Lettings",
- "branchLandingPageUrl": "/estate-agents/agent/Your-Move-Sales-and-Lettings/Walthamstow-81876.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-02T10:39:59Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_103919_0000.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "
Tenancy Information \r
What permitted payments can I expect to pay if I rent a property with Your Move? \rWhen you have agreed on the property of your choice, Your Move will provide you with a Tenancy Application Form. This helps explain not only the next stages of your application but any permitted payments which are due before you sign your Tenancy Agreement and any which may become payable during and after the tenancy. This will also include confirmation of the agreed rent and the deposit.
\rBelow is a list of our current permitted payments. At any time you are interested in a property, please ask a member of staff for a full breakdown of permitted payments that may be payable before, during and after a tenancy.
\r
Holding Deposit (per tenancy) One week's rent. This is to reserve a property. Please Note: This will be withheld if any relevant person (including any guarantor(s)) withdraw from the tenancy, fail a Right-to-Rent check, provide materially significant false or misleading information, or fail to sign their tenancy agreement (and / or Deed of Guarantee) within 15 calendar days (or other Deadline for Agreement as mutually agreed in writing).
\r
Security Deposit (per tenancy. Rent under £50,000 per year) Five weeks' rent. This covers damages or defaults on the part of the tenant during the tenancy and applies to Assured Shorthold Tenancies (AST).
\r
Security Deposit (per tenancy. Rent of £50,000 or over per year) Six weeks' rent. This covers damages or defaults on the part of the tenant during the tenancy and applies to Assured Shorthold Tenancies (AST).
\r
Unpaid Rent. Interest at 3% above the Bank of England Base Rate from Rent Due Date until paid in order to pursue non-payment of rent. Please Note: This will not be levied until the rent is more than 14 days in arrears.
\r
Lost Key(s) or other Security Device(s). Tenants are liable to the actual cost of replacing any lost key(s) or other security device(s). If the loss results in locks needing to be changed, the actual costs of a locksmith, new lock and replacement keys for the tenant, landlord any other persons requiring keys will be charged to the tenant. If extra costs are incurred there will be a charge of £15 per hour (inc. VAT) for the time taken replacing lost key(s) or other security device(s).
\r
Variation of Contract (Tenant's Request) £50 (inc. VAT) per agreed variation. To cover the costs associated with taking landlord's instructions as well as the preparation and execution of new legal documents.
\r
Change of Sharer (Tenant's Request) £50 (inc. VAT) per replacement tenant or any reasonable costs incurred if higher. To cover the costs associated with taking landlord's instructions, new tenant referencing and Right-to-Rent checks, deposit registration as well as the preparation and execution of new legal documents.
\r
Early Termination (Tenant's Request). Should the tenant wish to leave their contract early, they shall be liable to the landlord's costs in re-letting the property as well as all rent due under the tenancy until the start date of the replacement tenancy. These costs will be no more than the maximum amount of rent outstanding on the tenancy.
\rClient Money Protection is provided by Propertymark. Redress through The Property Ombudsman Scheme.
",
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/170909705#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=170909705",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-01-07T09:46:28Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T10:40:59Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Split Level Apartment",
- "htmlDescription": "Split Level Apartment"
- },
- {
- "order": 2,
- "description": "Located In The Heart Of E17",
- "htmlDescription": "Located In The Heart Of E17"
- },
- {
- "order": 3,
- "description": "Unfurnished Property",
- "htmlDescription": "Unfurnished Property"
- },
- {
- "order": 4,
- "description": "Recently Renovated Throughout",
- "htmlDescription": "Recently Renovated Throughout"
- },
- {
- "order": 5,
- "description": "Perfect For Commuters",
- "htmlDescription": "Perfect For Commuters"
- },
- {
- "order": 6,
- "description": "EPC Rating D",
- "htmlDescription": "EPC Rating D"
- },
- {
- "order": 7,
- "description": "Council Tax Band B",
- "htmlDescription": "Council Tax Band B"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a59a2a198/170909705/a59a2a19826ea3b954bd053d7449e629_max_476x317.jpeg",
- "url": "property-photo/a59a2a198/170909705/a59a2a19826ea3b954bd053d7449e629.jpeg",
- "caption": "Picture No. 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e2dce024b/170909705/e2dce024b518294813c87ada81f74ba2_max_476x317.jpeg",
- "url": "property-photo/e2dce024b/170909705/e2dce024b518294813c87ada81f74ba2.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f0d36e45f/170909705/f0d36e45f5da97916f493aab0d5acd4a_max_476x317.jpeg",
- "url": "property-photo/f0d36e45f/170909705/f0d36e45f5da97916f493aab0d5acd4a.jpeg",
- "caption": "Picture No. 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0866c24a1/170909705/0866c24a19a551ace35af0bc76d6ba16_max_476x317.jpeg",
- "url": "property-photo/0866c24a1/170909705/0866c24a19a551ace35af0bc76d6ba16.jpeg",
- "caption": "Picture No. 03"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/84a9c961c/170909705/84a9c961c7bf6fd354a3af7fc29b1103_max_476x317.jpeg",
- "url": "property-photo/84a9c961c/170909705/84a9c961c7bf6fd354a3af7fc29b1103.jpeg",
- "caption": "Picture No. 02"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0ab8b4bbd/170909705/0ab8b4bbdfd8083d46f06491141572a2_max_476x317.jpeg",
- "url": "property-photo/0ab8b4bbd/170909705/0ab8b4bbdfd8083d46f06491141572a2.jpeg",
- "caption": "Picture No. 04"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ee6b98a8c/170909705/ee6b98a8c3fb4e7f055a482f4260b4d9_max_476x317.jpeg",
- "url": "property-photo/ee6b98a8c/170909705/ee6b98a8c3fb4e7f055a482f4260b4d9.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c068da1b0/170909705/c068da1b0cddf7ec481bff75864e0f5b_max_476x317.jpeg",
- "url": "property-photo/c068da1b0/170909705/c068da1b0cddf7ec481bff75864e0f5b.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d812a477f/170909705/d812a477fdcb4b836d190f8670c06907_max_476x317.jpeg",
- "url": "property-photo/d812a477f/170909705/d812a477fdcb4b836d190f8670c06907.jpeg",
- "caption": "Picture No. 08"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a59a2a198/170909705/a59a2a19826ea3b954bd053d7449e629_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a59a2a198/170909705/a59a2a19826ea3b954bd053d7449e629_max_296x197.jpeg"
- },
- "formattedBranchName": " by Your Move Sales & Lettings, Walthamstow",
- "addedOrReduced": "Reduced on 11/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 171503729,
- "bedrooms": 2,
- "bathrooms": 1,
- "numberOfImages": 9,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Available February is this two bedroom first floor flat. The property has a bright and airy feel throughout and in a superb location. Offering two good sized bedrooms, light and spacious living room, separate kitchen and three piece bathroom. The property is located on Hazelwood Road, ...",
- "displayAddress": "Hazelwood Road, Walthamstow, London, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.581806,
- "longitude": -0.036607
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/364c1a3f4/171503729/364c1a3f49800a489fed482dffca9020_max_476x317.jpeg",
- "url": "property-photo/364c1a3f4/171503729/364c1a3f49800a489fed482dffca9020.jpeg",
- "caption": "Picture No. 19"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54b640db3/171503729/54b640db3b108c6f308b9733ad9c961c_max_476x317.jpeg",
- "url": "property-photo/54b640db3/171503729/54b640db3b108c6f308b9733ad9c961c.jpeg",
- "caption": "Picture No. 17"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c95f2d83/171503729/8c95f2d83911a08bec9a4c3bb47d61b0_max_476x317.jpeg",
- "url": "property-photo/8c95f2d83/171503729/8c95f2d83911a08bec9a4c3bb47d61b0.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/43712a86a/171503729/43712a86a634f615e3dcc8b43cae5622_max_476x317.jpeg",
- "url": "property-photo/43712a86a/171503729/43712a86a634f615e3dcc8b43cae5622.jpeg",
- "caption": "Picture No. 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8abfc70c3/171503729/8abfc70c3f65ecda98e093b9c5b3b0f2_max_476x317.jpeg",
- "url": "property-photo/8abfc70c3/171503729/8abfc70c3f65ecda98e093b9c5b3b0f2.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/301f5e1c3/171503729/301f5e1c3be5a184fc7389e1c4c31af7_max_476x317.jpeg",
- "url": "property-photo/301f5e1c3/171503729/301f5e1c3be5a184fc7389e1c4c31af7.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8abfc70c3/171503729/8abfc70c3f65ecda98e093b9c5b3b0f2_max_476x317.jpeg",
- "url": "property-photo/8abfc70c3/171503729/8abfc70c3f65ecda98e093b9c5b3b0f2.jpeg",
- "caption": "Picture No. 06"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2eff59e0d/171503729/2eff59e0d4f60024451559174818ffd2_max_476x317.jpeg",
- "url": "property-photo/2eff59e0d/171503729/2eff59e0d4f60024451559174818ffd2.jpeg",
- "caption": "Picture No. 09"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a3741db6/171503729/1a3741db682e54e0629d7549f246866b_max_476x317.jpeg",
- "url": "property-photo/1a3741db6/171503729/1a3741db682e54e0629d7549f246866b.jpeg",
- "caption": "Picture No. 02"
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-02-28T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2026-02-11T09:41:45Z"
- },
- "price": {
- "amount": 1800,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,800 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£415 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 6323,
- "brandPlusLogoURI": "/company/clogo_rmchoice_1992_0002.png",
- "contactTelephone": "020 3909 6714",
- "branchDisplayName": "Central Estate Agents, Walthamstow",
- "branchName": "Walthamstow",
- "brandTradingName": "Central Estate Agents",
- "branchLandingPageUrl": "/estate-agents/agent/Central-Estate-Agents/Walthamstow-6323.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": false,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-16T17:08:08Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_rmchoice_1992_0002.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/171503729#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=171503729",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-01-27T15:40:26Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T09:41:48Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "First floor flat",
- "htmlDescription": "First floor flat"
- },
- {
- "order": 2,
- "description": "Two bedrooms",
- "htmlDescription": "Two bedrooms"
- },
- {
- "order": 3,
- "description": "Large living room",
- "htmlDescription": "Large living room"
- },
- {
- "order": 4,
- "description": "Kitchen",
- "htmlDescription": "Kitchen"
- },
- {
- "order": 5,
- "description": "Three piece bathroom",
- "htmlDescription": "Three piece bathroom"
- },
- {
- "order": 6,
- "description": "Unfurnished",
- "htmlDescription": "Unfurnished"
- },
- {
- "order": 7,
- "description": "Few minutes walk to St James Street Station and Walthamstow High Street",
- "htmlDescription": "Few minutes walk to St James Street Station and Walthamstow High Street"
- },
- {
- "order": 8,
- "description": "Available February",
- "htmlDescription": "Available February"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/364c1a3f4/171503729/364c1a3f49800a489fed482dffca9020_max_476x317.jpeg",
- "url": "property-photo/364c1a3f4/171503729/364c1a3f49800a489fed482dffca9020.jpeg",
- "caption": "Picture No. 19"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/54b640db3/171503729/54b640db3b108c6f308b9733ad9c961c_max_476x317.jpeg",
- "url": "property-photo/54b640db3/171503729/54b640db3b108c6f308b9733ad9c961c.jpeg",
- "caption": "Picture No. 17"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c95f2d83/171503729/8c95f2d83911a08bec9a4c3bb47d61b0_max_476x317.jpeg",
- "url": "property-photo/8c95f2d83/171503729/8c95f2d83911a08bec9a4c3bb47d61b0.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/43712a86a/171503729/43712a86a634f615e3dcc8b43cae5622_max_476x317.jpeg",
- "url": "property-photo/43712a86a/171503729/43712a86a634f615e3dcc8b43cae5622.jpeg",
- "caption": "Picture No. 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8abfc70c3/171503729/8abfc70c3f65ecda98e093b9c5b3b0f2_max_476x317.jpeg",
- "url": "property-photo/8abfc70c3/171503729/8abfc70c3f65ecda98e093b9c5b3b0f2.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/301f5e1c3/171503729/301f5e1c3be5a184fc7389e1c4c31af7_max_476x317.jpeg",
- "url": "property-photo/301f5e1c3/171503729/301f5e1c3be5a184fc7389e1c4c31af7.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8abfc70c3/171503729/8abfc70c3f65ecda98e093b9c5b3b0f2_max_476x317.jpeg",
- "url": "property-photo/8abfc70c3/171503729/8abfc70c3f65ecda98e093b9c5b3b0f2.jpeg",
- "caption": "Picture No. 06"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2eff59e0d/171503729/2eff59e0d4f60024451559174818ffd2_max_476x317.jpeg",
- "url": "property-photo/2eff59e0d/171503729/2eff59e0d4f60024451559174818ffd2.jpeg",
- "caption": "Picture No. 09"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1a3741db6/171503729/1a3741db682e54e0629d7549f246866b_max_476x317.jpeg",
- "url": "property-photo/1a3741db6/171503729/1a3741db682e54e0629d7549f246866b.jpeg",
- "caption": "Picture No. 02"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/364c1a3f4/171503729/364c1a3f49800a489fed482dffca9020_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/364c1a3f4/171503729/364c1a3f49800a489fed482dffca9020_max_296x197.jpeg"
- },
- "formattedBranchName": " by Central Estate Agents, Walthamstow",
- "addedOrReduced": "Added on 27/01/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172054589,
- "bedrooms": 2,
- "bathrooms": 1,
- "numberOfImages": 16,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "An exceptional two-bedroom apartment, ideally located in the heart of the sought-after Lloyd Park conservation area. Positioned on the ground floor, the property further benefits from shared rear garden. Location? You're on one of Walthamstow most popular streets, You're just minutes f...",
- "displayAddress": "Carr Road, London, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.594893,
- "longitude": -0.023066
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b6fee9b9/172054589/6b6fee9b93f9a6f81fb8e9244e556514_max_476x317.jpeg",
- "url": "property-photo/6b6fee9b9/172054589/6b6fee9b93f9a6f81fb8e9244e556514.jpeg",
- "caption": "Picture No. 01"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/340032b68/172054589/340032b6811fab044b3e77c92dbb0655_max_476x317.jpeg",
- "url": "property-photo/340032b68/172054589/340032b6811fab044b3e77c92dbb0655.jpeg",
- "caption": "Picture No. 15"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4b2729572/172054589/4b2729572e8e43eb0689e0ad7548beeb_max_476x317.jpeg",
- "url": "property-photo/4b2729572/172054589/4b2729572e8e43eb0689e0ad7548beeb.jpeg",
- "caption": "Picture No. 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/18be395ac/172054589/18be395ac8a87e5a4142f43ad336ad68_max_476x317.jpeg",
- "url": "property-photo/18be395ac/172054589/18be395ac8a87e5a4142f43ad336ad68.jpeg",
- "caption": "Picture No. 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d91bcd70c/172054589/d91bcd70cda63ef92383257abc415737_max_476x317.jpeg",
- "url": "property-photo/d91bcd70c/172054589/d91bcd70cda63ef92383257abc415737.jpeg",
- "caption": "Picture No. 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/36a907738/172054589/36a907738165c32b1ffe0d71a63d359d_max_476x317.jpeg",
- "url": "property-photo/36a907738/172054589/36a907738165c32b1ffe0d71a63d359d.jpeg",
- "caption": "Picture No. 02"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e5c59e629/172054589/e5c59e629dab68972ce8fc200ae41393_max_476x317.jpeg",
- "url": "property-photo/e5c59e629/172054589/e5c59e629dab68972ce8fc200ae41393.jpeg",
- "caption": "Picture No. 03"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/56d06a179/172054589/56d06a1792e2fedc6227f5c10b756032_max_476x317.jpeg",
- "url": "property-photo/56d06a179/172054589/56d06a1792e2fedc6227f5c10b756032.jpeg",
- "caption": "Picture No. 04"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0816d9059/172054589/0816d9059bd7ac13c9c6d4fc7b0c7db6_max_476x317.jpeg",
- "url": "property-photo/0816d9059/172054589/0816d9059bd7ac13c9c6d4fc7b0c7db6.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dda9ef83e/172054589/dda9ef83ef3848c687fd99e6030527ea_max_476x317.jpeg",
- "url": "property-photo/dda9ef83e/172054589/dda9ef83ef3848c687fd99e6030527ea.jpeg",
- "caption": "Picture No. 06"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b174bb615/172054589/b174bb615f4954c2d12a95a1e4bafc70_max_476x317.jpeg",
- "url": "property-photo/b174bb615/172054589/b174bb615f4954c2d12a95a1e4bafc70.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/543c90ca4/172054589/543c90ca4b6e0f50865e923ddadfd4aa_max_476x317.jpeg",
- "url": "property-photo/543c90ca4/172054589/543c90ca4b6e0f50865e923ddadfd4aa.jpeg",
- "caption": "Picture No. 08"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/90dd6918a/172054589/90dd6918a5b0bc629d825c8543e5f116_max_476x317.jpeg",
- "url": "property-photo/90dd6918a/172054589/90dd6918a5b0bc629d825c8543e5f116.jpeg",
- "caption": "Picture No. 09"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f5668976e/172054589/f5668976e8283b0946ff8cab0699b6fa_max_476x317.jpeg",
- "url": "property-photo/f5668976e/172054589/f5668976e8283b0946ff8cab0699b6fa.jpeg",
- "caption": "Picture No. 10"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7f69052af/172054589/7f69052af6f5cfd5a066dc4104104dfa_max_476x317.jpeg",
- "url": "property-photo/7f69052af/172054589/7f69052af6f5cfd5a066dc4104104dfa.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d3a8d15df/172054589/d3a8d15dfff54aa34c9672a2076aad78_max_476x317.jpeg",
- "url": "property-photo/d3a8d15df/172054589/d3a8d15dfff54aa34c9672a2076aad78.jpeg",
- "caption": "Picture No. 17"
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-02-10T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T16:29:04Z"
- },
- "price": {
- "amount": 1900,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,900 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£438 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 81876,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_103919_0000.jpeg",
- "contactTelephone": "020 4538 4745",
- "branchDisplayName": "Your Move Sales & Lettings, Walthamstow",
- "branchName": "Walthamstow",
- "brandTradingName": "Your Move Sales & Lettings",
- "branchLandingPageUrl": "/estate-agents/agent/Your-Move-Sales-and-Lettings/Walthamstow-81876.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-02T10:39:59Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_103919_0000.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "
Tenancy Information \r
What permitted payments can I expect to pay if I rent a property with Your Move? \rWhen you have agreed on the property of your choice, Your Move will provide you with a Tenancy Application Form. This helps explain not only the next stages of your application but any permitted payments which are due before you sign your Tenancy Agreement and any which may become payable during and after the tenancy. This will also include confirmation of the agreed rent and the deposit.
\rBelow is a list of our current permitted payments. At any time you are interested in a property, please ask a member of staff for a full breakdown of permitted payments that may be payable before, during and after a tenancy.
\r
Holding Deposit (per tenancy) One week's rent. This is to reserve a property. Please Note: This will be withheld if any relevant person (including any guarantor(s)) withdraw from the tenancy, fail a Right-to-Rent check, provide materially significant false or misleading information, or fail to sign their tenancy agreement (and / or Deed of Guarantee) within 15 calendar days (or other Deadline for Agreement as mutually agreed in writing).
\r
Security Deposit (per tenancy. Rent under £50,000 per year) Five weeks' rent. This covers damages or defaults on the part of the tenant during the tenancy and applies to Assured Shorthold Tenancies (AST).
\r
Security Deposit (per tenancy. Rent of £50,000 or over per year) Six weeks' rent. This covers damages or defaults on the part of the tenant during the tenancy and applies to Assured Shorthold Tenancies (AST).
\r
Unpaid Rent. Interest at 3% above the Bank of England Base Rate from Rent Due Date until paid in order to pursue non-payment of rent. Please Note: This will not be levied until the rent is more than 14 days in arrears.
\r
Lost Key(s) or other Security Device(s). Tenants are liable to the actual cost of replacing any lost key(s) or other security device(s). If the loss results in locks needing to be changed, the actual costs of a locksmith, new lock and replacement keys for the tenant, landlord any other persons requiring keys will be charged to the tenant. If extra costs are incurred there will be a charge of £15 per hour (inc. VAT) for the time taken replacing lost key(s) or other security device(s).
\r
Variation of Contract (Tenant's Request) £50 (inc. VAT) per agreed variation. To cover the costs associated with taking landlord's instructions as well as the preparation and execution of new legal documents.
\r
Change of Sharer (Tenant's Request) £50 (inc. VAT) per replacement tenant or any reasonable costs incurred if higher. To cover the costs associated with taking landlord's instructions, new tenant referencing and Right-to-Rent checks, deposit registration as well as the preparation and execution of new legal documents.
\r
Early Termination (Tenant's Request). Should the tenant wish to leave their contract early, they shall be liable to the landlord's costs in re-letting the property as well as all rent due under the tenancy until the start date of the replacement tenancy. These costs will be no more than the maximum amount of rent outstanding on the tenancy.
\rClient Money Protection is provided by Propertymark. Redress through The Property Ombudsman Scheme.
",
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/172054589#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172054589",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T16:22:00Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T12:19:54Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Ground Floor",
- "htmlDescription": "Ground Floor"
- },
- {
- "order": 2,
- "description": "Wooden Flooring",
- "htmlDescription": "Wooden Flooring"
- },
- {
- "order": 3,
- "description": "Two Double Bedrooms",
- "htmlDescription": "Two Double Bedrooms"
- },
- {
- "order": 4,
- "description": "Separate Reception Area",
- "htmlDescription": "Separate Reception Area"
- },
- {
- "order": 5,
- "description": "Popular Lloyd Park Area",
- "htmlDescription": "Popular Lloyd Park Area"
- },
- {
- "order": 6,
- "description": "12 Month Tenancy+",
- "htmlDescription": "12 Month Tenancy+"
- },
- {
- "order": 7,
- "description": "Council Tax Band C",
- "htmlDescription": "Council Tax Band C"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b6fee9b9/172054589/6b6fee9b93f9a6f81fb8e9244e556514_max_476x317.jpeg",
- "url": "property-photo/6b6fee9b9/172054589/6b6fee9b93f9a6f81fb8e9244e556514.jpeg",
- "caption": "Picture No. 01"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/340032b68/172054589/340032b6811fab044b3e77c92dbb0655_max_476x317.jpeg",
- "url": "property-photo/340032b68/172054589/340032b6811fab044b3e77c92dbb0655.jpeg",
- "caption": "Picture No. 15"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4b2729572/172054589/4b2729572e8e43eb0689e0ad7548beeb_max_476x317.jpeg",
- "url": "property-photo/4b2729572/172054589/4b2729572e8e43eb0689e0ad7548beeb.jpeg",
- "caption": "Picture No. 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/18be395ac/172054589/18be395ac8a87e5a4142f43ad336ad68_max_476x317.jpeg",
- "url": "property-photo/18be395ac/172054589/18be395ac8a87e5a4142f43ad336ad68.jpeg",
- "caption": "Picture No. 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d91bcd70c/172054589/d91bcd70cda63ef92383257abc415737_max_476x317.jpeg",
- "url": "property-photo/d91bcd70c/172054589/d91bcd70cda63ef92383257abc415737.jpeg",
- "caption": "Picture No. 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/36a907738/172054589/36a907738165c32b1ffe0d71a63d359d_max_476x317.jpeg",
- "url": "property-photo/36a907738/172054589/36a907738165c32b1ffe0d71a63d359d.jpeg",
- "caption": "Picture No. 02"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e5c59e629/172054589/e5c59e629dab68972ce8fc200ae41393_max_476x317.jpeg",
- "url": "property-photo/e5c59e629/172054589/e5c59e629dab68972ce8fc200ae41393.jpeg",
- "caption": "Picture No. 03"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/56d06a179/172054589/56d06a1792e2fedc6227f5c10b756032_max_476x317.jpeg",
- "url": "property-photo/56d06a179/172054589/56d06a1792e2fedc6227f5c10b756032.jpeg",
- "caption": "Picture No. 04"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0816d9059/172054589/0816d9059bd7ac13c9c6d4fc7b0c7db6_max_476x317.jpeg",
- "url": "property-photo/0816d9059/172054589/0816d9059bd7ac13c9c6d4fc7b0c7db6.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/dda9ef83e/172054589/dda9ef83ef3848c687fd99e6030527ea_max_476x317.jpeg",
- "url": "property-photo/dda9ef83e/172054589/dda9ef83ef3848c687fd99e6030527ea.jpeg",
- "caption": "Picture No. 06"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b174bb615/172054589/b174bb615f4954c2d12a95a1e4bafc70_max_476x317.jpeg",
- "url": "property-photo/b174bb615/172054589/b174bb615f4954c2d12a95a1e4bafc70.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/543c90ca4/172054589/543c90ca4b6e0f50865e923ddadfd4aa_max_476x317.jpeg",
- "url": "property-photo/543c90ca4/172054589/543c90ca4b6e0f50865e923ddadfd4aa.jpeg",
- "caption": "Picture No. 08"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/90dd6918a/172054589/90dd6918a5b0bc629d825c8543e5f116_max_476x317.jpeg",
- "url": "property-photo/90dd6918a/172054589/90dd6918a5b0bc629d825c8543e5f116.jpeg",
- "caption": "Picture No. 09"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f5668976e/172054589/f5668976e8283b0946ff8cab0699b6fa_max_476x317.jpeg",
- "url": "property-photo/f5668976e/172054589/f5668976e8283b0946ff8cab0699b6fa.jpeg",
- "caption": "Picture No. 10"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7f69052af/172054589/7f69052af6f5cfd5a066dc4104104dfa_max_476x317.jpeg",
- "url": "property-photo/7f69052af/172054589/7f69052af6f5cfd5a066dc4104104dfa.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d3a8d15df/172054589/d3a8d15dfff54aa34c9672a2076aad78_max_476x317.jpeg",
- "url": "property-photo/d3a8d15df/172054589/d3a8d15dfff54aa34c9672a2076aad78.jpeg",
- "caption": "Picture No. 17"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b6fee9b9/172054589/6b6fee9b93f9a6f81fb8e9244e556514_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b6fee9b9/172054589/6b6fee9b93f9a6f81fb8e9244e556514_max_296x197.jpeg"
- },
- "formattedBranchName": " by Your Move Sales & Lettings, Walthamstow",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172053365,
- "bedrooms": 1,
- "bathrooms": 1,
- "numberOfImages": 7,
- "numberOfFloorplans": 0,
- "numberOfVirtualTours": 0,
- "summary": "Strettons Residential is delighted to present this charming second-floor flat located on Poplars Road in the desirable Bakers Arms area of Walthamstow, London. This one-bedroom apartment offers a perfect blend of comfort and convenience, making it an ideal choice for individuals or couples seekin...",
- "displayAddress": "Poplars Road , Walthamstow, London",
- "countryCode": "GB",
- "location": {
- "latitude": 51.576423,
- "longitude": -0.012665
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/941c2d77a/172053365/941c2d77a5a52d6424e5ffeac8895a5a_max_476x317.jpeg",
- "url": "property-photo/941c2d77a/172053365/941c2d77a5a52d6424e5ffeac8895a5a.jpeg",
- "caption": "Main Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d456e2e1f/172053365/d456e2e1fc7149131bb4c52c7453106a_max_476x317.jpeg",
- "url": "property-photo/d456e2e1f/172053365/d456e2e1fc7149131bb4c52c7453106a.jpeg",
- "caption": "Third Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/672123688/172053365/67212368869877f3926c8b98badc839c_max_476x317.jpeg",
- "url": "property-photo/672123688/172053365/67212368869877f3926c8b98badc839c.jpeg",
- "caption": "Fourth Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3c91b2d97/172053365/3c91b2d9776c5dd9b4bb648faf0a4879_max_476x317.jpeg",
- "url": "property-photo/3c91b2d97/172053365/3c91b2d9776c5dd9b4bb648faf0a4879.jpeg",
- "caption": "Seventh Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/92531f4ab/172053365/92531f4ab9b6dbe289d82ab0a7e36f51_max_476x317.jpeg",
- "url": "property-photo/92531f4ab/172053365/92531f4ab9b6dbe289d82ab0a7e36f51.jpeg",
- "caption": "Second Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/aa2dddb6d/172053365/aa2dddb6dd3c42ae8a3d1d861a1ddc8a_max_476x317.jpeg",
- "url": "property-photo/aa2dddb6d/172053365/aa2dddb6dd3c42ae8a3d1d861a1ddc8a.jpeg",
- "caption": "Fifth Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a26da7c2c/172053365/a26da7c2ce2fa5cb923923ff898a53ca_max_476x317.jpeg",
- "url": "property-photo/a26da7c2c/172053365/a26da7c2ce2fa5cb923923ff898a53ca.jpeg",
- "caption": "Sixth Image"
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-02-23T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T16:14:36Z"
- },
- "price": {
- "amount": 1400,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,400 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£323 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 11245,
- "brandPlusLogoURI": "/12k/11245/branch_rmchoice_logo_11245_0001.png",
- "contactTelephone": "020 3907 2666",
- "branchDisplayName": "Strettons, Strettons Residential Agency",
- "branchName": "Strettons Residential Agency",
- "brandTradingName": "Strettons",
- "branchLandingPageUrl": "/estate-agents/agent/Strettons/Strettons-Residential-Agency-11245.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-10-21T09:40:59Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/12k/11245/branch_rmchoice_logo_11245_0001.png",
- "primaryBrandColour": "#ffffff"
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/172053365#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172053365",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T16:08:35Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-10T16:14:36Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Second Floor Apartment",
- "htmlDescription": "Second Floor Apartment"
- },
- {
- "order": 2,
- "description": "One Double Bedroom",
- "htmlDescription": "One Double Bedroom"
- },
- {
- "order": 3,
- "description": "Unfurnished",
- "htmlDescription": "Unfurnished"
- },
- {
- "order": 4,
- "description": "Open Plan Lounge/ Kitchen",
- "htmlDescription": "Open Plan Lounge/ Kitchen"
- },
- {
- "order": 5,
- "description": "Three Piece Bathroom Suite",
- "htmlDescription": "Three Piece Bathroom Suite"
- },
- {
- "order": 6,
- "description": "Modern Fitted Kitchen",
- "htmlDescription": "Modern Fitted Kitchen"
- },
- {
- "order": 7,
- "description": "Security Entry-Phone System",
- "htmlDescription": "Security Entry-Phone System"
- },
- {
- "order": 8,
- "description": "Located within 0.5 mile to Both Walthamstow Central underground Station (Victoria Line) & Leyton Midlands Overground Station",
- "htmlDescription": "Located within 0.5 mile to Both Walthamstow Central underground Station (Victoria Line) & Leyton Midlands Overground Station"
- },
- {
- "order": 9,
- "description": "Available 23/02/2026",
- "htmlDescription": "Available 23/02/2026"
- },
- {
- "order": 10,
- "description": "EPC Rating: D",
- "htmlDescription": "EPC Rating: D"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/941c2d77a/172053365/941c2d77a5a52d6424e5ffeac8895a5a_max_476x317.jpeg",
- "url": "property-photo/941c2d77a/172053365/941c2d77a5a52d6424e5ffeac8895a5a.jpeg",
- "caption": "Main Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d456e2e1f/172053365/d456e2e1fc7149131bb4c52c7453106a_max_476x317.jpeg",
- "url": "property-photo/d456e2e1f/172053365/d456e2e1fc7149131bb4c52c7453106a.jpeg",
- "caption": "Third Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/672123688/172053365/67212368869877f3926c8b98badc839c_max_476x317.jpeg",
- "url": "property-photo/672123688/172053365/67212368869877f3926c8b98badc839c.jpeg",
- "caption": "Fourth Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3c91b2d97/172053365/3c91b2d9776c5dd9b4bb648faf0a4879_max_476x317.jpeg",
- "url": "property-photo/3c91b2d97/172053365/3c91b2d9776c5dd9b4bb648faf0a4879.jpeg",
- "caption": "Seventh Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/92531f4ab/172053365/92531f4ab9b6dbe289d82ab0a7e36f51_max_476x317.jpeg",
- "url": "property-photo/92531f4ab/172053365/92531f4ab9b6dbe289d82ab0a7e36f51.jpeg",
- "caption": "Second Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/aa2dddb6d/172053365/aa2dddb6dd3c42ae8a3d1d861a1ddc8a_max_476x317.jpeg",
- "url": "property-photo/aa2dddb6d/172053365/aa2dddb6dd3c42ae8a3d1d861a1ddc8a.jpeg",
- "caption": "Fifth Image"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a26da7c2c/172053365/a26da7c2ce2fa5cb923923ff898a53ca_max_476x317.jpeg",
- "url": "property-photo/a26da7c2c/172053365/a26da7c2ce2fa5cb923923ff898a53ca.jpeg",
- "caption": "Sixth Image"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/941c2d77a/172053365/941c2d77a5a52d6424e5ffeac8895a5a_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/941c2d77a/172053365/941c2d77a5a52d6424e5ffeac8895a5a_max_296x197.jpeg"
- },
- "formattedBranchName": " by Strettons, Strettons Residential Agency",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "1 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172050146,
- "bedrooms": 2,
- "bathrooms": 2,
- "numberOfImages": 9,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "AVAILABLE FEBRUARY 2026 - 2-BEDROOM, 2-BATHROOM FLAT - RALLY BUILDING, WALTHAMSTOW, E17 A Stylish Home in a Thriving Location Metra Living is delighted to present this two-bedroom, two-bathroom apartment located within the sought-after Rally Building development in Walthamstow. Situated on ...",
- "displayAddress": "Rally Building, South Grove, Walthamstow, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.5814,
- "longitude": -0.028399
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e2167f873/172050146/e2167f8732af36728fa78d231eac0f17_max_476x317.jpeg",
- "url": "property-photo/e2167f873/172050146/e2167f8732af36728fa78d231eac0f17.jpeg",
- "caption": "Photo 9"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cc974bc35/172050146/cc974bc357133a905c4a5f89c5f88d88_max_476x317.jpeg",
- "url": "property-photo/cc974bc35/172050146/cc974bc357133a905c4a5f89c5f88d88.jpeg",
- "caption": "Photo 7"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e2125efcb/172050146/e2125efcb3e85953207188372d94f203_max_476x317.jpeg",
- "url": "property-photo/e2125efcb/172050146/e2125efcb3e85953207188372d94f203.jpeg",
- "caption": "Photo 8"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7dcae6e0a/172050146/7dcae6e0a98978d799734ba79bed64c6_max_476x317.jpeg",
- "url": "property-photo/7dcae6e0a/172050146/7dcae6e0a98978d799734ba79bed64c6.jpeg",
- "caption": "Photo 6"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/324705b4a/172050146/324705b4a06a458f603bf820c011e158_max_476x317.jpeg",
- "url": "property-photo/324705b4a/172050146/324705b4a06a458f603bf820c011e158.jpeg",
- "caption": "Photo 3"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0e9e7bfca/172050146/0e9e7bfcace18182aacb1e4242682559_max_476x317.jpeg",
- "url": "property-photo/0e9e7bfca/172050146/0e9e7bfcace18182aacb1e4242682559.jpeg",
- "caption": "Photo 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2c4cc64dd/172050146/2c4cc64dd6de47cb0a380549bbd85726_max_476x317.jpeg",
- "url": "property-photo/2c4cc64dd/172050146/2c4cc64dd6de47cb0a380549bbd85726.jpeg",
- "caption": "Photo 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e97dcba50/172050146/e97dcba5065a1ce516fafcea49c655c1_max_476x317.jpeg",
- "url": "property-photo/e97dcba50/172050146/e97dcba5065a1ce516fafcea49c655c1.jpeg",
- "caption": "Photo 4"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3eea8573e/172050146/3eea8573e5cfa9fa30b652880db5ab5d_max_476x317.jpeg",
- "url": "property-photo/3eea8573e/172050146/3eea8573e5cfa9fa30b652880db5ab5d.jpeg",
- "caption": "Photo 5"
- }
- ],
- "propertySubType": "Apartment",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-02-25T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T15:35:12Z"
- },
- "price": {
- "amount": 2149,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,149 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£496 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 102784,
- "brandPlusLogoURI": "/103k/102784/branch_rmchoice_logo_102784_0001.png",
- "contactTelephone": "020 3857 8022",
- "branchDisplayName": "L&Q, Metra Living",
- "branchName": "Metra Living",
- "brandTradingName": "L&Q",
- "branchLandingPageUrl": "/estate-agents/agent/LandQ/Metra-Living-102784.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-10T16:01:59Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/103k/102784/branch_rmchoice_logo_102784_0001.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": true,
- "auction": false,
- "feesApply": false,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/172050146#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172050146",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T15:29:39Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-10T15:38:37Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "EPC Rating: B",
- "htmlDescription": "EPC Rating: B"
- },
- {
- "order": 2,
- "description": "Bedrooms: 2",
- "htmlDescription": "Bedrooms: 2"
- },
- {
- "order": 3,
- "description": "Bathrooms: 2",
- "htmlDescription": "Bathrooms: 2"
- },
- {
- "order": 4,
- "description": "Parking: Not available",
- "htmlDescription": "Parking: Not available"
- },
- {
- "order": 5,
- "description": "Outdoor Space: Balcony",
- "htmlDescription": "Outdoor Space: Balcony"
- },
- {
- "order": 6,
- "description": "Development Features: Pet friendly, modern design, on-site maintenance, excellent transport links",
- "htmlDescription": "Development Features: Pet friendly, modern design, on-site maintenance, excellent transport links"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e2167f873/172050146/e2167f8732af36728fa78d231eac0f17_max_476x317.jpeg",
- "url": "property-photo/e2167f873/172050146/e2167f8732af36728fa78d231eac0f17.jpeg",
- "caption": "Photo 9"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cc974bc35/172050146/cc974bc357133a905c4a5f89c5f88d88_max_476x317.jpeg",
- "url": "property-photo/cc974bc35/172050146/cc974bc357133a905c4a5f89c5f88d88.jpeg",
- "caption": "Photo 7"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e2125efcb/172050146/e2125efcb3e85953207188372d94f203_max_476x317.jpeg",
- "url": "property-photo/e2125efcb/172050146/e2125efcb3e85953207188372d94f203.jpeg",
- "caption": "Photo 8"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7dcae6e0a/172050146/7dcae6e0a98978d799734ba79bed64c6_max_476x317.jpeg",
- "url": "property-photo/7dcae6e0a/172050146/7dcae6e0a98978d799734ba79bed64c6.jpeg",
- "caption": "Photo 6"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/324705b4a/172050146/324705b4a06a458f603bf820c011e158_max_476x317.jpeg",
- "url": "property-photo/324705b4a/172050146/324705b4a06a458f603bf820c011e158.jpeg",
- "caption": "Photo 3"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0e9e7bfca/172050146/0e9e7bfcace18182aacb1e4242682559_max_476x317.jpeg",
- "url": "property-photo/0e9e7bfca/172050146/0e9e7bfcace18182aacb1e4242682559.jpeg",
- "caption": "Photo 2"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2c4cc64dd/172050146/2c4cc64dd6de47cb0a380549bbd85726_max_476x317.jpeg",
- "url": "property-photo/2c4cc64dd/172050146/2c4cc64dd6de47cb0a380549bbd85726.jpeg",
- "caption": "Photo 1"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e97dcba50/172050146/e97dcba5065a1ce516fafcea49c655c1_max_476x317.jpeg",
- "url": "property-photo/e97dcba50/172050146/e97dcba5065a1ce516fafcea49c655c1.jpeg",
- "caption": "Photo 4"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3eea8573e/172050146/3eea8573e5cfa9fa30b652880db5ab5d_max_476x317.jpeg",
- "url": "property-photo/3eea8573e/172050146/3eea8573e5cfa9fa30b652880db5ab5d.jpeg",
- "caption": "Photo 5"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e2167f873/172050146/e2167f8732af36728fa78d231eac0f17_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e2167f873/172050146/e2167f8732af36728fa78d231eac0f17_max_296x197.jpeg"
- },
- "formattedBranchName": " by L&Q, Metra Living",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom apartment",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172050053,
- "bedrooms": 1,
- "bathrooms": 1,
- "numberOfImages": 13,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Available Now | Unfurnished | First Floor Modern Apartment | One Double Bedroom | Modern Kitchen | Modern Bathroom | Security Entrance Phone | Walthamstow Central | Local Bus / Cycle Routes | High Energy Efficiency B rating | Walthamstow Village",
- "displayAddress": "Stowbridge Apartments, 823 Lea Bridge Road, Walthamstow",
- "countryCode": "GB",
- "location": {
- "latitude": 51.580333,
- "longitude": -0.002447
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7ac4f865/172050053/b7ac4f865d7d35a77ef966c8e860ca51_max_476x317.jpeg",
- "url": "property-photo/b7ac4f865/172050053/b7ac4f865d7d35a77ef966c8e860ca51.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f25c89504/172050053/f25c89504e8649953ddaf4a493522fa2_max_476x317.jpeg",
- "url": "property-photo/f25c89504/172050053/f25c89504e8649953ddaf4a493522fa2.jpeg",
- "caption": "Flat 3, Stowbridge Apartments-17_web.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c820e051e/172050053/c820e051e7e23627f121f10a424906b6_max_476x317.jpeg",
- "url": "property-photo/c820e051e/172050053/c820e051e7e23627f121f10a424906b6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9a068ae05/172050053/9a068ae053903ac133eff4fefb92a339_max_476x317.jpeg",
- "url": "property-photo/9a068ae05/172050053/9a068ae053903ac133eff4fefb92a339.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/409a84d79/172050053/409a84d798758ead9dd595f06ac26334_max_476x317.jpeg",
- "url": "property-photo/409a84d79/172050053/409a84d798758ead9dd595f06ac26334.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c37d25e0/172050053/8c37d25e01beeb5044f9da1513ba7400_max_476x317.jpeg",
- "url": "property-photo/8c37d25e0/172050053/8c37d25e01beeb5044f9da1513ba7400.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fa5c503bf/172050053/fa5c503bf1b1a010329c969c33df7c6f_max_476x317.jpeg",
- "url": "property-photo/fa5c503bf/172050053/fa5c503bf1b1a010329c969c33df7c6f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/988967bf1/172050053/988967bf12744a9a7324fb5a39cf803a_max_476x317.jpeg",
- "url": "property-photo/988967bf1/172050053/988967bf12744a9a7324fb5a39cf803a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e323b05ce/172050053/e323b05cebc5f77edd9a7f9ac5ef162a_max_476x317.jpeg",
- "url": "property-photo/e323b05ce/172050053/e323b05cebc5f77edd9a7f9ac5ef162a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9131de691/172050053/9131de691c6b59e67276445319dc6ddf_max_476x317.jpeg",
- "url": "property-photo/9131de691/172050053/9131de691c6b59e67276445319dc6ddf.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4915f3c1c/172050053/4915f3c1c6a8ce267f91801d26db1f80_max_476x317.jpeg",
- "url": "property-photo/4915f3c1c/172050053/4915f3c1c6a8ce267f91801d26db1f80.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/593ba9abf/172050053/593ba9abff91b5105f9b7bcdf14546f7_max_476x317.jpeg",
- "url": "property-photo/593ba9abf/172050053/593ba9abff91b5105f9b7bcdf14546f7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7dcba78a0/172050053/7dcba78a0549727fae8582e94b2a7f91_max_476x317.jpeg",
- "url": "property-photo/7dcba78a0/172050053/7dcba78a0549727fae8582e94b2a7f91.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-02-21T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T15:34:08Z"
- },
- "price": {
- "amount": 1575,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,575 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£363 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 10145,
- "brandPlusLogoURI": "/company/clogo_3502_0001.jpeg",
- "contactTelephone": "020 3870 3140",
- "branchDisplayName": "Churchill Estates, Walthamstow & Leyton",
- "branchName": "Walthamstow & Leyton",
- "brandTradingName": "Churchill Estates",
- "branchLandingPageUrl": "/estate-agents/agent/Churchill-Estates/Walthamstow-and-Leyton-10145.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": false,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-17T16:30:56Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_3502_0001.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "
Permitted payments and tenant protection information \n
\nAs well as paying the rent, you may also be required to make the following permitted payments.
\n
\n
Permitted payments \n
\nFor properties in England, the Tenant Fees Act 2019 means that in addition to rent, lettings agents can only charge tenants (or anyone acting on the tenant's behalf) the following permitted payments:\n
Holding deposits (a maximum of 1 week's rent); Deposits (a maximum deposit of 5 weeks' rent for annual rent below £50,000, or 6 weeks' rent for annual rental of £50,000 and above); Payments to change a tenancy agreement eg. change of sharer (capped at £50 or, if higher, any reasonable costs); Payments associated with early termination of a tenancy (capped at the landlord's loss or the agent's reasonably incurred costs); Where required, utilities (electricity, gas or other fuel, water, sewerage), communication services (telephone, internet, cable/satellite television), TV licence; Council tax (payable to the billing authority); Interest payments for the late payment of rent (up to 3% above Bank of England's annual percentage rate); Reasonable costs for replacement of lost keys or other security devices; Contractual damages in the event of the tenant's default of a tenancy agreement; and Any other permitted payments under the Tenant Fees Act 2019 and regulations applicable at the relevant time. \n
\n
Tenant protection. \n\n
Churchill Estates redress scheme: The Property Ombudsman Churchill Estates designated Client Money Protection scheme: Client Money Protection (CMP) provided by Propertymark/ARLA \n",
- "displaySize": "484 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/172050053#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172050053",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T15:28:40Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-10T15:34:08Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Available Now",
- "htmlDescription": "Available Now"
- },
- {
- "order": 2,
- "description": "Unfurnished",
- "htmlDescription": "Unfurnished"
- },
- {
- "order": 3,
- "description": "First Floor",
- "htmlDescription": "First Floor"
- },
- {
- "order": 4,
- "description": "Modern One Bedroom Apartment",
- "htmlDescription": "Modern One Bedroom Apartment"
- },
- {
- "order": 5,
- "description": "Walthamstow Central Station",
- "htmlDescription": "Walthamstow Central Station"
- },
- {
- "order": 6,
- "description": "Modern Bathroom",
- "htmlDescription": "Modern Bathroom"
- },
- {
- "order": 7,
- "description": "Open Plan Living & Kitchen",
- "htmlDescription": "Open Plan Living & Kitchen"
- },
- {
- "order": 8,
- "description": "High Energy Efficiency B rating",
- "htmlDescription": "High Energy Efficiency B rating"
- },
- {
- "order": 9,
- "description": "Security Entrance Phone",
- "htmlDescription": "Security Entrance Phone"
- },
- {
- "order": 10,
- "description": "Walthamstow Village",
- "htmlDescription": "Walthamstow Village"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7ac4f865/172050053/b7ac4f865d7d35a77ef966c8e860ca51_max_476x317.jpeg",
- "url": "property-photo/b7ac4f865/172050053/b7ac4f865d7d35a77ef966c8e860ca51.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f25c89504/172050053/f25c89504e8649953ddaf4a493522fa2_max_476x317.jpeg",
- "url": "property-photo/f25c89504/172050053/f25c89504e8649953ddaf4a493522fa2.jpeg",
- "caption": "Flat 3, Stowbridge Apartments-17_web.jpg"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c820e051e/172050053/c820e051e7e23627f121f10a424906b6_max_476x317.jpeg",
- "url": "property-photo/c820e051e/172050053/c820e051e7e23627f121f10a424906b6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9a068ae05/172050053/9a068ae053903ac133eff4fefb92a339_max_476x317.jpeg",
- "url": "property-photo/9a068ae05/172050053/9a068ae053903ac133eff4fefb92a339.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/409a84d79/172050053/409a84d798758ead9dd595f06ac26334_max_476x317.jpeg",
- "url": "property-photo/409a84d79/172050053/409a84d798758ead9dd595f06ac26334.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8c37d25e0/172050053/8c37d25e01beeb5044f9da1513ba7400_max_476x317.jpeg",
- "url": "property-photo/8c37d25e0/172050053/8c37d25e01beeb5044f9da1513ba7400.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fa5c503bf/172050053/fa5c503bf1b1a010329c969c33df7c6f_max_476x317.jpeg",
- "url": "property-photo/fa5c503bf/172050053/fa5c503bf1b1a010329c969c33df7c6f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/988967bf1/172050053/988967bf12744a9a7324fb5a39cf803a_max_476x317.jpeg",
- "url": "property-photo/988967bf1/172050053/988967bf12744a9a7324fb5a39cf803a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e323b05ce/172050053/e323b05cebc5f77edd9a7f9ac5ef162a_max_476x317.jpeg",
- "url": "property-photo/e323b05ce/172050053/e323b05cebc5f77edd9a7f9ac5ef162a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9131de691/172050053/9131de691c6b59e67276445319dc6ddf_max_476x317.jpeg",
- "url": "property-photo/9131de691/172050053/9131de691c6b59e67276445319dc6ddf.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4915f3c1c/172050053/4915f3c1c6a8ce267f91801d26db1f80_max_476x317.jpeg",
- "url": "property-photo/4915f3c1c/172050053/4915f3c1c6a8ce267f91801d26db1f80.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/593ba9abf/172050053/593ba9abff91b5105f9b7bcdf14546f7_max_476x317.jpeg",
- "url": "property-photo/593ba9abf/172050053/593ba9abff91b5105f9b7bcdf14546f7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7dcba78a0/172050053/7dcba78a0549727fae8582e94b2a7f91_max_476x317.jpeg",
- "url": "property-photo/7dcba78a0/172050053/7dcba78a0549727fae8582e94b2a7f91.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7ac4f865/172050053/b7ac4f865d7d35a77ef966c8e860ca51_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7ac4f865/172050053/b7ac4f865d7d35a77ef966c8e860ca51_max_296x197.jpeg"
- },
- "formattedBranchName": " by Churchill Estates, Walthamstow & Leyton",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "1 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172049801,
- "bedrooms": 1,
- "bathrooms": 1,
- "numberOfImages": 16,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "In great condition throughout is this one bedroom ground floor flat located on Hazelwood Road. The property has a bay windowed living room, double bedroom, large kitchen, three piece bathroom and rear private garden with an outbuilding. Landlord is flexible with furnishings to be stor...",
- "displayAddress": "Hazelwood Road, London, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.581655,
- "longitude": -0.03608
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5586cf2ce/172049801/5586cf2cef1347caa8a9b055ff5ee9fc_max_476x317.jpeg",
- "url": "property-photo/5586cf2ce/172049801/5586cf2cef1347caa8a9b055ff5ee9fc.jpeg",
- "caption": "Picture No. 03"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5d3cb8d4a/172049801/5d3cb8d4ac98806316a3f8cb09e1686a_max_476x317.jpeg",
- "url": "property-photo/5d3cb8d4a/172049801/5d3cb8d4ac98806316a3f8cb09e1686a.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3371d0415/172049801/3371d0415e71dd831c04fc90e09b5fb5_max_476x317.jpeg",
- "url": "property-photo/3371d0415/172049801/3371d0415e71dd831c04fc90e09b5fb5.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/002179b8a/172049801/002179b8ab22334da95ded6904026dd0_max_476x317.jpeg",
- "url": "property-photo/002179b8a/172049801/002179b8ab22334da95ded6904026dd0.jpeg",
- "caption": "Picture No. 06"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4fda4383f/172049801/4fda4383f1f72800b257670bc1d32f0a_max_476x317.jpeg",
- "url": "property-photo/4fda4383f/172049801/4fda4383f1f72800b257670bc1d32f0a.jpeg",
- "caption": "Picture No. 08"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63da7c165/172049801/63da7c1653d30a9ad8745d931e31da5e_max_476x317.jpeg",
- "url": "property-photo/63da7c165/172049801/63da7c1653d30a9ad8745d931e31da5e.jpeg",
- "caption": "Picture No. 09"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc1365173/172049801/bc1365173596253f97a95b82b96d4561_max_476x317.jpeg",
- "url": "property-photo/bc1365173/172049801/bc1365173596253f97a95b82b96d4561.jpeg",
- "caption": "Picture No. 10"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/296e42ef8/172049801/296e42ef8a6b3c0cab4ee78e6128d693_max_476x317.jpeg",
- "url": "property-photo/296e42ef8/172049801/296e42ef8a6b3c0cab4ee78e6128d693.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/800e4c175/172049801/800e4c175e4f93be359efaa53792b879_max_476x317.jpeg",
- "url": "property-photo/800e4c175/172049801/800e4c175e4f93be359efaa53792b879.jpeg",
- "caption": "Picture No. 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c1b7f2d2/172049801/6c1b7f2d2064ac2ccad9a2da201a09aa_max_476x317.jpeg",
- "url": "property-photo/6c1b7f2d2/172049801/6c1b7f2d2064ac2ccad9a2da201a09aa.jpeg",
- "caption": "Picture No. 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b14c8efff/172049801/b14c8efff60bf6a4acdfc626d417b6ac_max_476x317.jpeg",
- "url": "property-photo/b14c8efff/172049801/b14c8efff60bf6a4acdfc626d417b6ac.jpeg",
- "caption": "Picture No. 15"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7e835d91/172049801/b7e835d91ede9b18bde02a1480d3add8_max_476x317.jpeg",
- "url": "property-photo/b7e835d91/172049801/b7e835d91ede9b18bde02a1480d3add8.jpeg",
- "caption": "Picture No. 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0a6ba22a7/172049801/0a6ba22a7b19f16d850daca1b83c2dea_max_476x317.jpeg",
- "url": "property-photo/0a6ba22a7/172049801/0a6ba22a7b19f16d850daca1b83c2dea.jpeg",
- "caption": "Picture No. 16"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2c64d4618/172049801/2c64d461830aef7006f98dd1efea9e8f_max_476x317.jpeg",
- "url": "property-photo/2c64d4618/172049801/2c64d461830aef7006f98dd1efea9e8f.jpeg",
- "caption": "Picture No. 17"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c8057fb0a/172049801/c8057fb0a61fccf6ba4358c9043c543e_max_476x317.jpeg",
- "url": "property-photo/c8057fb0a/172049801/c8057fb0a61fccf6ba4358c9043c543e.jpeg",
- "caption": "Picture No. 18"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb9288784/172049801/cb9288784619151d8412660300dfe496_max_476x317.jpeg",
- "url": "property-photo/cb9288784/172049801/cb9288784619151d8412660300dfe496.jpeg",
- "caption": "Picture No. 04"
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-02-28T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T15:30:14Z"
- },
- "price": {
- "amount": 1600,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,600 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£369 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 6323,
- "brandPlusLogoURI": "/company/clogo_rmchoice_1992_0002.png",
- "contactTelephone": "020 3909 6714",
- "branchDisplayName": "Central Estate Agents, Walthamstow",
- "branchName": "Walthamstow",
- "brandTradingName": "Central Estate Agents",
- "branchLandingPageUrl": "/estate-agents/agent/Central-Estate-Agents/Walthamstow-6323.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": false,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-16T17:08:08Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_rmchoice_1992_0002.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/172049801#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172049801",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T15:25:10Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-13T03:32:44Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Ground floor flat",
- "htmlDescription": "Ground floor flat"
- },
- {
- "order": 2,
- "description": "Double bedroom",
- "htmlDescription": "Double bedroom"
- },
- {
- "order": 3,
- "description": "Living room",
- "htmlDescription": "Living room"
- },
- {
- "order": 4,
- "description": "Large kitchen",
- "htmlDescription": "Large kitchen"
- },
- {
- "order": 5,
- "description": "Three piece bathroom",
- "htmlDescription": "Three piece bathroom"
- },
- {
- "order": 6,
- "description": "Private garden with outbuilding",
- "htmlDescription": "Private garden with outbuilding"
- },
- {
- "order": 7,
- "description": "Furnished",
- "htmlDescription": "Furnished"
- },
- {
- "order": 8,
- "description": "Next to St James Street Station",
- "htmlDescription": "Next to St James Street Station"
- },
- {
- "order": 9,
- "description": "Available end February",
- "htmlDescription": "Available end February"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5586cf2ce/172049801/5586cf2cef1347caa8a9b055ff5ee9fc_max_476x317.jpeg",
- "url": "property-photo/5586cf2ce/172049801/5586cf2cef1347caa8a9b055ff5ee9fc.jpeg",
- "caption": "Picture No. 03"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5d3cb8d4a/172049801/5d3cb8d4ac98806316a3f8cb09e1686a_max_476x317.jpeg",
- "url": "property-photo/5d3cb8d4a/172049801/5d3cb8d4ac98806316a3f8cb09e1686a.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3371d0415/172049801/3371d0415e71dd831c04fc90e09b5fb5_max_476x317.jpeg",
- "url": "property-photo/3371d0415/172049801/3371d0415e71dd831c04fc90e09b5fb5.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/002179b8a/172049801/002179b8ab22334da95ded6904026dd0_max_476x317.jpeg",
- "url": "property-photo/002179b8a/172049801/002179b8ab22334da95ded6904026dd0.jpeg",
- "caption": "Picture No. 06"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4fda4383f/172049801/4fda4383f1f72800b257670bc1d32f0a_max_476x317.jpeg",
- "url": "property-photo/4fda4383f/172049801/4fda4383f1f72800b257670bc1d32f0a.jpeg",
- "caption": "Picture No. 08"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63da7c165/172049801/63da7c1653d30a9ad8745d931e31da5e_max_476x317.jpeg",
- "url": "property-photo/63da7c165/172049801/63da7c1653d30a9ad8745d931e31da5e.jpeg",
- "caption": "Picture No. 09"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bc1365173/172049801/bc1365173596253f97a95b82b96d4561_max_476x317.jpeg",
- "url": "property-photo/bc1365173/172049801/bc1365173596253f97a95b82b96d4561.jpeg",
- "caption": "Picture No. 10"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/296e42ef8/172049801/296e42ef8a6b3c0cab4ee78e6128d693_max_476x317.jpeg",
- "url": "property-photo/296e42ef8/172049801/296e42ef8a6b3c0cab4ee78e6128d693.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/800e4c175/172049801/800e4c175e4f93be359efaa53792b879_max_476x317.jpeg",
- "url": "property-photo/800e4c175/172049801/800e4c175e4f93be359efaa53792b879.jpeg",
- "caption": "Picture No. 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c1b7f2d2/172049801/6c1b7f2d2064ac2ccad9a2da201a09aa_max_476x317.jpeg",
- "url": "property-photo/6c1b7f2d2/172049801/6c1b7f2d2064ac2ccad9a2da201a09aa.jpeg",
- "caption": "Picture No. 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b14c8efff/172049801/b14c8efff60bf6a4acdfc626d417b6ac_max_476x317.jpeg",
- "url": "property-photo/b14c8efff/172049801/b14c8efff60bf6a4acdfc626d417b6ac.jpeg",
- "caption": "Picture No. 15"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b7e835d91/172049801/b7e835d91ede9b18bde02a1480d3add8_max_476x317.jpeg",
- "url": "property-photo/b7e835d91/172049801/b7e835d91ede9b18bde02a1480d3add8.jpeg",
- "caption": "Picture No. 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0a6ba22a7/172049801/0a6ba22a7b19f16d850daca1b83c2dea_max_476x317.jpeg",
- "url": "property-photo/0a6ba22a7/172049801/0a6ba22a7b19f16d850daca1b83c2dea.jpeg",
- "caption": "Picture No. 16"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2c64d4618/172049801/2c64d461830aef7006f98dd1efea9e8f_max_476x317.jpeg",
- "url": "property-photo/2c64d4618/172049801/2c64d461830aef7006f98dd1efea9e8f.jpeg",
- "caption": "Picture No. 17"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c8057fb0a/172049801/c8057fb0a61fccf6ba4358c9043c543e_max_476x317.jpeg",
- "url": "property-photo/c8057fb0a/172049801/c8057fb0a61fccf6ba4358c9043c543e.jpeg",
- "caption": "Picture No. 18"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cb9288784/172049801/cb9288784619151d8412660300dfe496_max_476x317.jpeg",
- "url": "property-photo/cb9288784/172049801/cb9288784619151d8412660300dfe496.jpeg",
- "caption": "Picture No. 04"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5586cf2ce/172049801/5586cf2cef1347caa8a9b055ff5ee9fc_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5586cf2ce/172049801/5586cf2cef1347caa8a9b055ff5ee9fc_max_296x197.jpeg"
- },
- "formattedBranchName": " by Central Estate Agents, Walthamstow",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "1 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172049780,
- "bedrooms": 2,
- "bathrooms": 1,
- "numberOfImages": 13,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Located next to Blackhorse Station is this two double bedroom ground floor flat. The property offers an open plan kitchen / living room, three piece bathroom and private garden. You couldn't be any closer to Blackhorse Road station giving easy access to both the Victoria Line and the o...",
- "displayAddress": "Tavistock Avenue, Walthamstow, London, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.589196,
- "longitude": -0.038691
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8efec2d73/172049780/8efec2d73a48effba57b322b8a4e1e2e_max_476x317.jpeg",
- "url": "property-photo/8efec2d73/172049780/8efec2d73a48effba57b322b8a4e1e2e.jpeg",
- "caption": "Picture No. 15"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1ab9547bc/172049780/1ab9547bcc34fa1766c25d0cd9068c71_max_476x317.jpeg",
- "url": "property-photo/1ab9547bc/172049780/1ab9547bcc34fa1766c25d0cd9068c71.jpeg",
- "caption": "Picture No. 06"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f85d9b5ef/172049780/f85d9b5ef1549cb2b7779c9fee3838af_max_476x317.jpeg",
- "url": "property-photo/f85d9b5ef/172049780/f85d9b5ef1549cb2b7779c9fee3838af.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4f56a6fd8/172049780/4f56a6fd8ff64306678187e69c16f826_max_476x317.jpeg",
- "url": "property-photo/4f56a6fd8/172049780/4f56a6fd8ff64306678187e69c16f826.jpeg",
- "caption": "Picture No. 08"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3af43486b/172049780/3af43486bc0b08a9c66c542ddd7a0434_max_476x317.jpeg",
- "url": "property-photo/3af43486b/172049780/3af43486bc0b08a9c66c542ddd7a0434.jpeg",
- "caption": "Picture No. 09"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b6495b162/172049780/b6495b16244cfb33c4360752670f7e0e_max_476x317.jpeg",
- "url": "property-photo/b6495b162/172049780/b6495b16244cfb33c4360752670f7e0e.jpeg",
- "caption": "Picture No. 03"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/06083763c/172049780/06083763cc67310f9d2cc47f3ce61e99_max_476x317.jpeg",
- "url": "property-photo/06083763c/172049780/06083763cc67310f9d2cc47f3ce61e99.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/237ac69a1/172049780/237ac69a1d870074af7912d4e59e38d0_max_476x317.jpeg",
- "url": "property-photo/237ac69a1/172049780/237ac69a1d870074af7912d4e59e38d0.jpeg",
- "caption": "Picture No. 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7f88e7878/172049780/7f88e7878a098d98798c27b4c536a964_max_476x317.jpeg",
- "url": "property-photo/7f88e7878/172049780/7f88e7878a098d98798c27b4c536a964.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0f9ea45f7/172049780/0f9ea45f7703098bb32fb643c6785913_max_476x317.jpeg",
- "url": "property-photo/0f9ea45f7/172049780/0f9ea45f7703098bb32fb643c6785913.jpeg",
- "caption": "Picture No. 10"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fd8061efb/172049780/fd8061efbf2264a8e49ef325d39e1ffd_max_476x317.jpeg",
- "url": "property-photo/fd8061efb/172049780/fd8061efbf2264a8e49ef325d39e1ffd.jpeg",
- "caption": "Picture No. 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e576e0e01/172049780/e576e0e019ee43f05813437201b4443f_max_476x317.jpeg",
- "url": "property-photo/e576e0e01/172049780/e576e0e019ee43f05813437201b4443f.jpeg",
- "caption": "Picture No. 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/158e8f3d3/172049780/158e8f3d3055cdd46a770c36122f1cfa_max_476x317.jpeg",
- "url": "property-photo/158e8f3d3/172049780/158e8f3d3055cdd46a770c36122f1cfa.jpeg",
- "caption": "Picture No. 17"
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-02-28T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T15:30:13Z"
- },
- "price": {
- "amount": 1900,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,900 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£438 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 6323,
- "brandPlusLogoURI": "/company/clogo_rmchoice_1992_0002.png",
- "contactTelephone": "020 3909 6714",
- "branchDisplayName": "Central Estate Agents, Walthamstow",
- "branchName": "Walthamstow",
- "brandTradingName": "Central Estate Agents",
- "branchLandingPageUrl": "/estate-agents/agent/Central-Estate-Agents/Walthamstow-6323.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": false,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-16T17:08:08Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_rmchoice_1992_0002.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/172049780#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172049780",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T15:24:53Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-10T21:40:31Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Ground floor flat",
- "htmlDescription": "Ground floor flat"
- },
- {
- "order": 2,
- "description": "Two double bedrooms",
- "htmlDescription": "Two double bedrooms"
- },
- {
- "order": 3,
- "description": "Open plan kitchen / living room",
- "htmlDescription": "Open plan kitchen / living room"
- },
- {
- "order": 4,
- "description": "Three piece bathroom",
- "htmlDescription": "Three piece bathroom"
- },
- {
- "order": 5,
- "description": "Private garden",
- "htmlDescription": "Private garden"
- },
- {
- "order": 6,
- "description": "Unfurnished",
- "htmlDescription": "Unfurnished"
- },
- {
- "order": 7,
- "description": "Available end February",
- "htmlDescription": "Available end February"
- },
- {
- "order": 8,
- "description": "Few minutes walk to Blackhorse Station",
- "htmlDescription": "Few minutes walk to Blackhorse Station"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8efec2d73/172049780/8efec2d73a48effba57b322b8a4e1e2e_max_476x317.jpeg",
- "url": "property-photo/8efec2d73/172049780/8efec2d73a48effba57b322b8a4e1e2e.jpeg",
- "caption": "Picture No. 15"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1ab9547bc/172049780/1ab9547bcc34fa1766c25d0cd9068c71_max_476x317.jpeg",
- "url": "property-photo/1ab9547bc/172049780/1ab9547bcc34fa1766c25d0cd9068c71.jpeg",
- "caption": "Picture No. 06"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f85d9b5ef/172049780/f85d9b5ef1549cb2b7779c9fee3838af_max_476x317.jpeg",
- "url": "property-photo/f85d9b5ef/172049780/f85d9b5ef1549cb2b7779c9fee3838af.jpeg",
- "caption": "Picture No. 07"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4f56a6fd8/172049780/4f56a6fd8ff64306678187e69c16f826_max_476x317.jpeg",
- "url": "property-photo/4f56a6fd8/172049780/4f56a6fd8ff64306678187e69c16f826.jpeg",
- "caption": "Picture No. 08"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3af43486b/172049780/3af43486bc0b08a9c66c542ddd7a0434_max_476x317.jpeg",
- "url": "property-photo/3af43486b/172049780/3af43486bc0b08a9c66c542ddd7a0434.jpeg",
- "caption": "Picture No. 09"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b6495b162/172049780/b6495b16244cfb33c4360752670f7e0e_max_476x317.jpeg",
- "url": "property-photo/b6495b162/172049780/b6495b16244cfb33c4360752670f7e0e.jpeg",
- "caption": "Picture No. 03"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/06083763c/172049780/06083763cc67310f9d2cc47f3ce61e99_max_476x317.jpeg",
- "url": "property-photo/06083763c/172049780/06083763cc67310f9d2cc47f3ce61e99.jpeg",
- "caption": "Picture No. 05"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/237ac69a1/172049780/237ac69a1d870074af7912d4e59e38d0_max_476x317.jpeg",
- "url": "property-photo/237ac69a1/172049780/237ac69a1d870074af7912d4e59e38d0.jpeg",
- "caption": "Picture No. 12"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7f88e7878/172049780/7f88e7878a098d98798c27b4c536a964_max_476x317.jpeg",
- "url": "property-photo/7f88e7878/172049780/7f88e7878a098d98798c27b4c536a964.jpeg",
- "caption": "Picture No. 11"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/0f9ea45f7/172049780/0f9ea45f7703098bb32fb643c6785913_max_476x317.jpeg",
- "url": "property-photo/0f9ea45f7/172049780/0f9ea45f7703098bb32fb643c6785913.jpeg",
- "caption": "Picture No. 10"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fd8061efb/172049780/fd8061efbf2264a8e49ef325d39e1ffd_max_476x317.jpeg",
- "url": "property-photo/fd8061efb/172049780/fd8061efbf2264a8e49ef325d39e1ffd.jpeg",
- "caption": "Picture No. 14"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e576e0e01/172049780/e576e0e019ee43f05813437201b4443f_max_476x317.jpeg",
- "url": "property-photo/e576e0e01/172049780/e576e0e019ee43f05813437201b4443f.jpeg",
- "caption": "Picture No. 13"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/158e8f3d3/172049780/158e8f3d3055cdd46a770c36122f1cfa_max_476x317.jpeg",
- "url": "property-photo/158e8f3d3/172049780/158e8f3d3055cdd46a770c36122f1cfa.jpeg",
- "caption": "Picture No. 17"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8efec2d73/172049780/8efec2d73a48effba57b322b8a4e1e2e_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8efec2d73/172049780/8efec2d73a48effba57b322b8a4e1e2e_max_296x197.jpeg"
- },
- "formattedBranchName": " by Central Estate Agents, Walthamstow",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 172047497,
- "bedrooms": 0,
- "bathrooms": 1,
- "numberOfImages": 7,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "LIMITED TIME OFFER. SAVE £3,000* Be the first to live at the Altham. Pet friendly, bills included, furnished studios 1 min from the tube. With co-working lounges, a fitness studio, cinema and rooftop terrace, you can smash the deadline, nail the deadlift or just unwind with friends. ",
- "displayAddress": "Altham House, 1 Blackhorse Lane, London, E17 6DS",
- "countryCode": "GB",
- "location": {
- "latitude": 51.58909,
- "longitude": -0.03982
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/48d403687/172047497/48d403687219cd7c7e9f1095e801c94f_max_476x317.jpeg",
- "url": "property-photo/48d403687/172047497/48d403687219cd7c7e9f1095e801c94f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f612fd1b1/172047497/f612fd1b10dee296194bed713656a07b_max_476x317.jpeg",
- "url": "property-photo/f612fd1b1/172047497/f612fd1b10dee296194bed713656a07b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bae6d6ee1/172047497/bae6d6ee12d583ef5edf5a2e451808ae_max_476x317.jpeg",
- "url": "property-photo/bae6d6ee1/172047497/bae6d6ee12d583ef5edf5a2e451808ae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/342d2b96a/172047497/342d2b96aeb5a5ada225c9d053e14468_max_476x317.jpeg",
- "url": "property-photo/342d2b96a/172047497/342d2b96aeb5a5ada225c9d053e14468.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c5180205/172047497/5c5180205dfee74503c0a765466756b0_max_476x317.jpeg",
- "url": "property-photo/5c5180205/172047497/5c5180205dfee74503c0a765466756b0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7ad6cc0e6/172047497/7ad6cc0e6376ae46a7b096ab070d6e9f_max_476x317.jpeg",
- "url": "property-photo/7ad6cc0e6/172047497/7ad6cc0e6376ae46a7b096ab070d6e9f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d7d884253/172047497/d7d8842531cb98b84750e3dbec8197ac_max_476x317.jpeg",
- "url": "property-photo/d7d884253/172047497/d7d8842531cb98b84750e3dbec8197ac.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Studio",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-04-15T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T15:05:11Z"
- },
- "price": {
- "amount": 2080,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,080 pcm",
- "displayPriceQualifier": "Fixed Price"
- },
- {
- "displayPrice": "£480 pw",
- "displayPriceQualifier": "Fixed Price"
- }
- ]
- },
- "premiumListing": true,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 296024,
- "brandPlusLogoURI": "/297k/296024/branch_rmchoice_logo_296024_0000.png",
- "contactTelephone": "020 4634 1484",
- "branchDisplayName": "The Altham by Morro, London",
- "branchName": "London",
- "brandTradingName": "The Altham by Morro",
- "branchLandingPageUrl": "/estate-agents/agent/The-Altham-by-Morro/London-296024.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": true,
- "buildToRentBenefits": [
- {
- "id": 11,
- "label": "Bills included",
- "icon": "bills-included",
- "positionOnPage": 1
- },
- {
- "id": 24,
- "label": "Pets allowed",
- "icon": "dog",
- "positionOnPage": 2
- },
- {
- "id": 18,
- "label": "Flexible tenancies",
- "icon": "note",
- "positionOnPage": 3
- },
- {
- "id": 4,
- "label": "Gym",
- "icon": "gym",
- "positionOnPage": 4
- },
- {
- "id": 38,
- "label": "Co-working",
- "icon": "co-working",
- "positionOnPage": 5
- },
- {
- "id": 1,
- "label": "WiFi included",
- "icon": "wifi-included",
- "positionOnPage": 6
- },
- {
- "id": 29,
- "label": "Roof terrace",
- "icon": "roof-terrace",
- "positionOnPage": 7
- },
- {
- "id": 28,
- "label": "Residents lounge",
- "icon": "sofa",
- "positionOnPage": 8
- },
- {
- "id": 26,
- "label": "Private dining room",
- "icon": "dining-room",
- "positionOnPage": 9
- },
- {
- "id": 34,
- "label": "Transport links",
- "icon": "train",
- "positionOnPage": 10
- },
- {
- "id": 2,
- "label": "Concierge",
- "icon": "concierge",
- "positionOnPage": 11
- },
- {
- "id": 5,
- "label": "Security",
- "icon": "lock",
- "positionOnPage": 12
- },
- {
- "id": 32,
- "label": "Social activities",
- "icon": "social-activities",
- "positionOnPage": 13
- },
- {
- "id": 6,
- "label": "On site maintenance",
- "icon": "maintenance",
- "positionOnPage": 14
- },
- {
- "id": 7,
- "label": "24hr maintenance",
- "icon": "maintenance",
- "positionOnPage": 15
- },
- {
- "id": 10,
- "label": "Bike storage",
- "icon": "bike-storage",
- "positionOnPage": 16
- },
- {
- "id": 13,
- "label": "Cinema",
- "icon": "cinema",
- "positionOnPage": 17
- },
- {
- "id": 19,
- "label": "Fully managed",
- "icon": "seal-tick",
- "positionOnPage": 18
- },
- {
- "id": 27,
- "label": "Professional management",
- "icon": "seal-tick",
- "positionOnPage": 19
- }
- ],
- "updateDate": "2026-01-16T14:55:24Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/297k/296024/branch_rmchoice_logo_296024_0000.png",
- "primaryBrandColour": "#4d502b"
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": "Built for renters",
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "Morro is a members of the property redress scheme, membership number PRS026959.",
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/172047497#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=172047497",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T14:59:52Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": [
- {
- "type": "BUILT_FOR_RENTERS",
- "priority": 3
- }
- ]
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-10T15:05:11Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "All utility bills included",
- "htmlDescription": "All utility bills included"
- },
- {
- "order": 2,
- "description": "Brand new studios",
- "htmlDescription": "Brand new studios"
- },
- {
- "order": 3,
- "description": "Pet friendly",
- "htmlDescription": "Pet friendly"
- },
- {
- "order": 4,
- "description": "Flexible contract lengths",
- "htmlDescription": "Flexible contract lengths"
- },
- {
- "order": 5,
- "description": "24/7 gym",
- "htmlDescription": "24/7 gym"
- },
- {
- "order": 6,
- "description": "Cinema room",
- "htmlDescription": "Cinema room"
- },
- {
- "order": 7,
- "description": "24/7 concierge",
- "htmlDescription": "24/7 concierge"
- },
- {
- "order": 8,
- "description": "250mb High-speed Wi-Fi",
- "htmlDescription": "250mb High-speed Wi-Fi"
- },
- {
- "order": 9,
- "description": "Co-working spaces",
- "htmlDescription": "Co-working spaces"
- },
- {
- "order": 10,
- "description": "20 minutes to Central London",
- "htmlDescription": "20 minutes to Central London"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/48d403687/172047497/48d403687219cd7c7e9f1095e801c94f_max_476x317.jpeg",
- "url": "property-photo/48d403687/172047497/48d403687219cd7c7e9f1095e801c94f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f612fd1b1/172047497/f612fd1b10dee296194bed713656a07b_max_476x317.jpeg",
- "url": "property-photo/f612fd1b1/172047497/f612fd1b10dee296194bed713656a07b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bae6d6ee1/172047497/bae6d6ee12d583ef5edf5a2e451808ae_max_476x317.jpeg",
- "url": "property-photo/bae6d6ee1/172047497/bae6d6ee12d583ef5edf5a2e451808ae.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/342d2b96a/172047497/342d2b96aeb5a5ada225c9d053e14468_max_476x317.jpeg",
- "url": "property-photo/342d2b96a/172047497/342d2b96aeb5a5ada225c9d053e14468.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c5180205/172047497/5c5180205dfee74503c0a765466756b0_max_476x317.jpeg",
- "url": "property-photo/5c5180205/172047497/5c5180205dfee74503c0a765466756b0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7ad6cc0e6/172047497/7ad6cc0e6376ae46a7b096ab070d6e9f_max_476x317.jpeg",
- "url": "property-photo/7ad6cc0e6/172047497/7ad6cc0e6376ae46a7b096ab070d6e9f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d7d884253/172047497/d7d8842531cb98b84750e3dbec8197ac_max_476x317.jpeg",
- "url": "property-photo/d7d884253/172047497/d7d8842531cb98b84750e3dbec8197ac.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/48d403687/172047497/48d403687219cd7c7e9f1095e801c94f_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/48d403687/172047497/48d403687219cd7c7e9f1095e801c94f_max_296x197.jpeg"
- },
- "formattedBranchName": " by The Altham by Morro, London",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "Studio flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 87606243,
- "bedrooms": 0,
- "bathrooms": 1,
- "numberOfImages": 6,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "*EARLYBIRD OFFER. SAVE £3,000* Welcome to the Altham, new studios designed for however you want to live. Whether you're looking to settle down or for spontaneity, a buzzing community or quiet corner, our studios all come with bills included, flexible contracts and design-led furnishings. ",
- "displayAddress": "Altham House, 1 Blackhorse Lane, London, E17 6DS",
- "countryCode": "GB",
- "location": {
- "latitude": 51.58909,
- "longitude": -0.03982
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1508e67b1/87606243/1508e67b1cb9210cc325604dd185ad71_max_476x317.jpeg",
- "url": "property-photo/1508e67b1/87606243/1508e67b1cb9210cc325604dd185ad71.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f5661d2a1/87606243/f5661d2a16dc556d4881951cd61d15ad_max_476x317.jpeg",
- "url": "property-photo/f5661d2a1/87606243/f5661d2a16dc556d4881951cd61d15ad.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cdf1d0bb2/87606243/cdf1d0bb29803db43b105979cdf92fdd_max_476x317.jpeg",
- "url": "property-photo/cdf1d0bb2/87606243/cdf1d0bb29803db43b105979cdf92fdd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a18dcc957/87606243/a18dcc957be2b102fe7aef729ed8d8eb_max_476x317.jpeg",
- "url": "property-photo/a18dcc957/87606243/a18dcc957be2b102fe7aef729ed8d8eb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4ac8b3497/87606243/4ac8b3497c3b0225d67fcd8a206a53e9_max_476x317.jpeg",
- "url": "property-photo/4ac8b3497/87606243/4ac8b3497c3b0225d67fcd8a206a53e9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2411311b5/87606243/2411311b56af944b2ce3a02b3738d52f_max_476x317.jpeg",
- "url": "property-photo/2411311b5/87606243/2411311b56af944b2ce3a02b3738d52f.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Studio",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-04-13T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T14:51:08Z"
- },
- "price": {
- "amount": 1995,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,995 pcm",
- "displayPriceQualifier": "Fixed Price"
- },
- {
- "displayPrice": "£460 pw",
- "displayPriceQualifier": "Fixed Price"
- }
- ]
- },
- "premiumListing": true,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 296024,
- "brandPlusLogoURI": "/297k/296024/branch_rmchoice_logo_296024_0000.png",
- "contactTelephone": "020 4634 1484",
- "branchDisplayName": "The Altham by Morro, London",
- "branchName": "London",
- "brandTradingName": "The Altham by Morro",
- "branchLandingPageUrl": "/estate-agents/agent/The-Altham-by-Morro/London-296024.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": true,
- "buildToRentBenefits": [
- {
- "id": 11,
- "label": "Bills included",
- "icon": "bills-included",
- "positionOnPage": 1
- },
- {
- "id": 24,
- "label": "Pets allowed",
- "icon": "dog",
- "positionOnPage": 2
- },
- {
- "id": 18,
- "label": "Flexible tenancies",
- "icon": "note",
- "positionOnPage": 3
- },
- {
- "id": 4,
- "label": "Gym",
- "icon": "gym",
- "positionOnPage": 4
- },
- {
- "id": 38,
- "label": "Co-working",
- "icon": "co-working",
- "positionOnPage": 5
- },
- {
- "id": 1,
- "label": "WiFi included",
- "icon": "wifi-included",
- "positionOnPage": 6
- },
- {
- "id": 29,
- "label": "Roof terrace",
- "icon": "roof-terrace",
- "positionOnPage": 7
- },
- {
- "id": 28,
- "label": "Residents lounge",
- "icon": "sofa",
- "positionOnPage": 8
- },
- {
- "id": 26,
- "label": "Private dining room",
- "icon": "dining-room",
- "positionOnPage": 9
- },
- {
- "id": 34,
- "label": "Transport links",
- "icon": "train",
- "positionOnPage": 10
- },
- {
- "id": 2,
- "label": "Concierge",
- "icon": "concierge",
- "positionOnPage": 11
- },
- {
- "id": 5,
- "label": "Security",
- "icon": "lock",
- "positionOnPage": 12
- },
- {
- "id": 32,
- "label": "Social activities",
- "icon": "social-activities",
- "positionOnPage": 13
- },
- {
- "id": 6,
- "label": "On site maintenance",
- "icon": "maintenance",
- "positionOnPage": 14
- },
- {
- "id": 7,
- "label": "24hr maintenance",
- "icon": "maintenance",
- "positionOnPage": 15
- },
- {
- "id": 10,
- "label": "Bike storage",
- "icon": "bike-storage",
- "positionOnPage": 16
- },
- {
- "id": 13,
- "label": "Cinema",
- "icon": "cinema",
- "positionOnPage": 17
- },
- {
- "id": 19,
- "label": "Fully managed",
- "icon": "seal-tick",
- "positionOnPage": 18
- },
- {
- "id": 27,
- "label": "Professional management",
- "icon": "seal-tick",
- "positionOnPage": 19
- }
- ],
- "updateDate": "2026-01-16T14:55:24Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/297k/296024/branch_rmchoice_logo_296024_0000.png",
- "primaryBrandColour": "#4d502b"
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": "Built for renters",
- "spotlightLabel": false
- },
- "commercial": false,
- "development": true,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "Morro is a members of the property redress scheme, membership number PRS026959.",
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/87606243#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=87606243",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T14:46:02Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": [
- {
- "type": "BUILT_FOR_RENTERS",
- "priority": 3
- },
- {
- "type": "NEW_HOME",
- "priority": 4
- }
- ]
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-10T14:51:08Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "All utility bills included",
- "htmlDescription": "All utility bills included "
- },
- {
- "order": 2,
- "description": "Brand new studios",
- "htmlDescription": "Brand new studios"
- },
- {
- "order": 3,
- "description": "Flexible contract lengths",
- "htmlDescription": "Flexible contract lengths"
- },
- {
- "order": 4,
- "description": "Pet friendly",
- "htmlDescription": "Pet friendly"
- },
- {
- "order": 5,
- "description": "24/7 gym",
- "htmlDescription": "24/7 gym"
- },
- {
- "order": 6,
- "description": "Cinema room",
- "htmlDescription": "Cinema room"
- },
- {
- "order": 7,
- "description": "24/7 concierge",
- "htmlDescription": "24/7 concierge"
- },
- {
- "order": 8,
- "description": "High-speed Wi-Fi",
- "htmlDescription": "High-speed Wi-Fi"
- },
- {
- "order": 9,
- "description": "Co-working spaces",
- "htmlDescription": "Co-working spaces"
- },
- {
- "order": 10,
- "description": "20 minutes to Central London",
- "htmlDescription": "20 minutes to Central London"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1508e67b1/87606243/1508e67b1cb9210cc325604dd185ad71_max_476x317.jpeg",
- "url": "property-photo/1508e67b1/87606243/1508e67b1cb9210cc325604dd185ad71.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f5661d2a1/87606243/f5661d2a16dc556d4881951cd61d15ad_max_476x317.jpeg",
- "url": "property-photo/f5661d2a1/87606243/f5661d2a16dc556d4881951cd61d15ad.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cdf1d0bb2/87606243/cdf1d0bb29803db43b105979cdf92fdd_max_476x317.jpeg",
- "url": "property-photo/cdf1d0bb2/87606243/cdf1d0bb29803db43b105979cdf92fdd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a18dcc957/87606243/a18dcc957be2b102fe7aef729ed8d8eb_max_476x317.jpeg",
- "url": "property-photo/a18dcc957/87606243/a18dcc957be2b102fe7aef729ed8d8eb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4ac8b3497/87606243/4ac8b3497c3b0225d67fcd8a206a53e9_max_476x317.jpeg",
- "url": "property-photo/4ac8b3497/87606243/4ac8b3497c3b0225d67fcd8a206a53e9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2411311b5/87606243/2411311b56af944b2ce3a02b3738d52f_max_476x317.jpeg",
- "url": "property-photo/2411311b5/87606243/2411311b56af944b2ce3a02b3738d52f.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1508e67b1/87606243/1508e67b1cb9210cc325604dd185ad71_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/1508e67b1/87606243/1508e67b1cb9210cc325604dd185ad71_max_296x197.jpeg"
- },
- "formattedBranchName": " by The Altham by Morro, London",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "Studio flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 87604779,
- "bedrooms": 2,
- "bathrooms": 2,
- "numberOfImages": 29,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "Situated in a lovely corner of E17, this bright and modern two-bedroom apartment offers all the convenience you’d expect from a contemporary development. Highlights include a spacious living area, a south-facing balcony, and two stylishly finished bathrooms (one an ensuite) The location ...",
- "displayAddress": "Cunard Apartments, Walthamstow",
- "countryCode": "GB",
- "location": {
- "latitude": 51.584255,
- "longitude": -0.000604
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/032d4910c/87604779/032d4910ceacbb1122a7884d6a953a19_max_476x317.jpeg",
- "url": "property-photo/032d4910c/87604779/032d4910ceacbb1122a7884d6a953a19.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/930b24066/87604779/930b24066f8d0d23e4efa2ffaa48bfab_max_476x317.jpeg",
- "url": "property-photo/930b24066/87604779/930b24066f8d0d23e4efa2ffaa48bfab.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/70996fad1/87604779/70996fad1182872a0fd3c67219015311_max_476x317.jpeg",
- "url": "property-photo/70996fad1/87604779/70996fad1182872a0fd3c67219015311.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d23b25e4b/87604779/d23b25e4b71fba9dc0e27cabf6840c1f_max_476x317.jpeg",
- "url": "property-photo/d23b25e4b/87604779/d23b25e4b71fba9dc0e27cabf6840c1f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b44970ef1/87604779/b44970ef10e385c81a34a56994191ec0_max_476x317.jpeg",
- "url": "property-photo/b44970ef1/87604779/b44970ef10e385c81a34a56994191ec0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a460f3d9/87604779/3a460f3d96fd39757556e1a89bd040fc_max_476x317.jpeg",
- "url": "property-photo/3a460f3d9/87604779/3a460f3d96fd39757556e1a89bd040fc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3f24f17e6/87604779/3f24f17e6f2f26d8d4ebe1861fa045da_max_476x317.jpeg",
- "url": "property-photo/3f24f17e6/87604779/3f24f17e6f2f26d8d4ebe1861fa045da.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63658d6f3/87604779/63658d6f3b4811232ecf07213b88aed6_max_476x317.jpeg",
- "url": "property-photo/63658d6f3/87604779/63658d6f3b4811232ecf07213b88aed6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bd10cd20/87604779/3bd10cd2073eb55d7f408275f66a901a_max_476x317.jpeg",
- "url": "property-photo/3bd10cd20/87604779/3bd10cd2073eb55d7f408275f66a901a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/79a4dedaf/87604779/79a4dedaf37533ce958d5047943b0761_max_476x317.jpeg",
- "url": "property-photo/79a4dedaf/87604779/79a4dedaf37533ce958d5047943b0761.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e676f5425/87604779/e676f5425cc36833306840ccd2aabafd_max_476x317.jpeg",
- "url": "property-photo/e676f5425/87604779/e676f5425cc36833306840ccd2aabafd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e25471aef/87604779/e25471aeff811bb1b028ba18ae19258e_max_476x317.jpeg",
- "url": "property-photo/e25471aef/87604779/e25471aeff811bb1b028ba18ae19258e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5dd51847b/87604779/5dd51847b80aad9f787bb8f6826e3df4_max_476x317.jpeg",
- "url": "property-photo/5dd51847b/87604779/5dd51847b80aad9f787bb8f6826e3df4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a29651a08/87604779/a29651a08e854ae21c27be711a863aef_max_476x317.jpeg",
- "url": "property-photo/a29651a08/87604779/a29651a08e854ae21c27be711a863aef.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8a0d35f0b/87604779/8a0d35f0b6c28a58de997f49a129c223_max_476x317.jpeg",
- "url": "property-photo/8a0d35f0b/87604779/8a0d35f0b6c28a58de997f49a129c223.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3065d796d/87604779/3065d796d603f5cb2e06d6dd53acc45b_max_476x317.jpeg",
- "url": "property-photo/3065d796d/87604779/3065d796d603f5cb2e06d6dd53acc45b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5a259883b/87604779/5a259883bf0d09779bf505e6b905a85e_max_476x317.jpeg",
- "url": "property-photo/5a259883b/87604779/5a259883bf0d09779bf505e6b905a85e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c7bdbd54/87604779/5c7bdbd54eed2c32095c0cb7d985cafe_max_476x317.jpeg",
- "url": "property-photo/5c7bdbd54/87604779/5c7bdbd54eed2c32095c0cb7d985cafe.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b802124ed/87604779/b802124ede6e1a06ea0e207a9d2a5086_max_476x317.jpeg",
- "url": "property-photo/b802124ed/87604779/b802124ede6e1a06ea0e207a9d2a5086.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/787687842/87604779/78768784272d3535c8eb981302d79c06_max_476x317.jpeg",
- "url": "property-photo/787687842/87604779/78768784272d3535c8eb981302d79c06.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f71fd84f3/87604779/f71fd84f32d88b1743cbd44a9747b776_max_476x317.jpeg",
- "url": "property-photo/f71fd84f3/87604779/f71fd84f32d88b1743cbd44a9747b776.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8041c4309/87604779/8041c4309f36b8adf11e13cfd502bd13_max_476x317.jpeg",
- "url": "property-photo/8041c4309/87604779/8041c4309f36b8adf11e13cfd502bd13.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a5ed695cb/87604779/a5ed695cb7457b1267cc5a0ade012a0a_max_476x317.jpeg",
- "url": "property-photo/a5ed695cb/87604779/a5ed695cb7457b1267cc5a0ade012a0a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/108726bd6/87604779/108726bd6e6db5c810fca2bca78354ad_max_476x317.jpeg",
- "url": "property-photo/108726bd6/87604779/108726bd6e6db5c810fca2bca78354ad.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f16cbf223/87604779/f16cbf2230077646f643f0c6a5cd964b_max_476x317.jpeg",
- "url": "property-photo/f16cbf223/87604779/f16cbf2230077646f643f0c6a5cd964b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a6711709/87604779/3a67117092e8396e3a0bbba641d70f75_max_476x317.jpeg",
- "url": "property-photo/3a6711709/87604779/3a67117092e8396e3a0bbba641d70f75.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fa1184f73/87604779/fa1184f73c0454dbd79c4793147d39ee_max_476x317.jpeg",
- "url": "property-photo/fa1184f73/87604779/fa1184f73c0454dbd79c4793147d39ee.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9c78427f7/87604779/9c78427f7fa5ba9fb7eb360585fe89fb_max_476x317.jpeg",
- "url": "property-photo/9c78427f7/87604779/9c78427f7fa5ba9fb7eb360585fe89fb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cafc839fd/87604779/cafc839fdb5208c8150654c1b1d54a80_max_476x317.jpeg",
- "url": "property-photo/cafc839fd/87604779/cafc839fdb5208c8150654c1b1d54a80.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Apartment",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-03-21T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T14:06:08Z"
- },
- "price": {
- "amount": 2200,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,200 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£508 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 114391,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_49357_0001.png",
- "contactTelephone": "020 3889 9166",
- "branchDisplayName": "The Stow Brothers, Walthamstow & Leyton",
- "branchName": "Walthamstow & Leyton",
- "brandTradingName": "The Stow Brothers",
- "branchLandingPageUrl": "/estate-agents/agent/The-Stow-Brothers/Walthamstow-and-Leyton-114391.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-13T13:11:56Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_49357_0001.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "797 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/87604779#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=87604779",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T14:00:35Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-11T11:59:03Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "New Build Development",
- "htmlDescription": "New Build Development"
- },
- {
- "order": 2,
- "description": "Stylish Living",
- "htmlDescription": "Stylish Living"
- },
- {
- "order": 3,
- "description": "Two Bedroom Apartment",
- "htmlDescription": "Two Bedroom Apartment"
- },
- {
- "order": 4,
- "description": "Two Bathrooms",
- "htmlDescription": "Two Bathrooms"
- },
- {
- "order": 5,
- "description": "Large Living Space",
- "htmlDescription": "Large Living Space"
- },
- {
- "order": 6,
- "description": "Set Back from the Main Road",
- "htmlDescription": "Set Back from the Main Road"
- },
- {
- "order": 7,
- "description": "Private Balcony",
- "htmlDescription": "Private Balcony"
- },
- {
- "order": 8,
- "description": "Communal Roof Terrace",
- "htmlDescription": "Communal Roof Terrace"
- },
- {
- "order": 9,
- "description": "Good Transport Links",
- "htmlDescription": "Good Transport Links"
- },
- {
- "order": 10,
- "description": "A Plethora of Amenities on Your Doorstep",
- "htmlDescription": "A Plethora of Amenities on Your Doorstep"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/032d4910c/87604779/032d4910ceacbb1122a7884d6a953a19_max_476x317.jpeg",
- "url": "property-photo/032d4910c/87604779/032d4910ceacbb1122a7884d6a953a19.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/930b24066/87604779/930b24066f8d0d23e4efa2ffaa48bfab_max_476x317.jpeg",
- "url": "property-photo/930b24066/87604779/930b24066f8d0d23e4efa2ffaa48bfab.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/70996fad1/87604779/70996fad1182872a0fd3c67219015311_max_476x317.jpeg",
- "url": "property-photo/70996fad1/87604779/70996fad1182872a0fd3c67219015311.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d23b25e4b/87604779/d23b25e4b71fba9dc0e27cabf6840c1f_max_476x317.jpeg",
- "url": "property-photo/d23b25e4b/87604779/d23b25e4b71fba9dc0e27cabf6840c1f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b44970ef1/87604779/b44970ef10e385c81a34a56994191ec0_max_476x317.jpeg",
- "url": "property-photo/b44970ef1/87604779/b44970ef10e385c81a34a56994191ec0.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a460f3d9/87604779/3a460f3d96fd39757556e1a89bd040fc_max_476x317.jpeg",
- "url": "property-photo/3a460f3d9/87604779/3a460f3d96fd39757556e1a89bd040fc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3f24f17e6/87604779/3f24f17e6f2f26d8d4ebe1861fa045da_max_476x317.jpeg",
- "url": "property-photo/3f24f17e6/87604779/3f24f17e6f2f26d8d4ebe1861fa045da.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/63658d6f3/87604779/63658d6f3b4811232ecf07213b88aed6_max_476x317.jpeg",
- "url": "property-photo/63658d6f3/87604779/63658d6f3b4811232ecf07213b88aed6.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3bd10cd20/87604779/3bd10cd2073eb55d7f408275f66a901a_max_476x317.jpeg",
- "url": "property-photo/3bd10cd20/87604779/3bd10cd2073eb55d7f408275f66a901a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/79a4dedaf/87604779/79a4dedaf37533ce958d5047943b0761_max_476x317.jpeg",
- "url": "property-photo/79a4dedaf/87604779/79a4dedaf37533ce958d5047943b0761.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e676f5425/87604779/e676f5425cc36833306840ccd2aabafd_max_476x317.jpeg",
- "url": "property-photo/e676f5425/87604779/e676f5425cc36833306840ccd2aabafd.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/e25471aef/87604779/e25471aeff811bb1b028ba18ae19258e_max_476x317.jpeg",
- "url": "property-photo/e25471aef/87604779/e25471aeff811bb1b028ba18ae19258e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5dd51847b/87604779/5dd51847b80aad9f787bb8f6826e3df4_max_476x317.jpeg",
- "url": "property-photo/5dd51847b/87604779/5dd51847b80aad9f787bb8f6826e3df4.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a29651a08/87604779/a29651a08e854ae21c27be711a863aef_max_476x317.jpeg",
- "url": "property-photo/a29651a08/87604779/a29651a08e854ae21c27be711a863aef.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8a0d35f0b/87604779/8a0d35f0b6c28a58de997f49a129c223_max_476x317.jpeg",
- "url": "property-photo/8a0d35f0b/87604779/8a0d35f0b6c28a58de997f49a129c223.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3065d796d/87604779/3065d796d603f5cb2e06d6dd53acc45b_max_476x317.jpeg",
- "url": "property-photo/3065d796d/87604779/3065d796d603f5cb2e06d6dd53acc45b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5a259883b/87604779/5a259883bf0d09779bf505e6b905a85e_max_476x317.jpeg",
- "url": "property-photo/5a259883b/87604779/5a259883bf0d09779bf505e6b905a85e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/5c7bdbd54/87604779/5c7bdbd54eed2c32095c0cb7d985cafe_max_476x317.jpeg",
- "url": "property-photo/5c7bdbd54/87604779/5c7bdbd54eed2c32095c0cb7d985cafe.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b802124ed/87604779/b802124ede6e1a06ea0e207a9d2a5086_max_476x317.jpeg",
- "url": "property-photo/b802124ed/87604779/b802124ede6e1a06ea0e207a9d2a5086.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/787687842/87604779/78768784272d3535c8eb981302d79c06_max_476x317.jpeg",
- "url": "property-photo/787687842/87604779/78768784272d3535c8eb981302d79c06.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f71fd84f3/87604779/f71fd84f32d88b1743cbd44a9747b776_max_476x317.jpeg",
- "url": "property-photo/f71fd84f3/87604779/f71fd84f32d88b1743cbd44a9747b776.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8041c4309/87604779/8041c4309f36b8adf11e13cfd502bd13_max_476x317.jpeg",
- "url": "property-photo/8041c4309/87604779/8041c4309f36b8adf11e13cfd502bd13.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a5ed695cb/87604779/a5ed695cb7457b1267cc5a0ade012a0a_max_476x317.jpeg",
- "url": "property-photo/a5ed695cb/87604779/a5ed695cb7457b1267cc5a0ade012a0a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/108726bd6/87604779/108726bd6e6db5c810fca2bca78354ad_max_476x317.jpeg",
- "url": "property-photo/108726bd6/87604779/108726bd6e6db5c810fca2bca78354ad.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f16cbf223/87604779/f16cbf2230077646f643f0c6a5cd964b_max_476x317.jpeg",
- "url": "property-photo/f16cbf223/87604779/f16cbf2230077646f643f0c6a5cd964b.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3a6711709/87604779/3a67117092e8396e3a0bbba641d70f75_max_476x317.jpeg",
- "url": "property-photo/3a6711709/87604779/3a67117092e8396e3a0bbba641d70f75.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/fa1184f73/87604779/fa1184f73c0454dbd79c4793147d39ee_max_476x317.jpeg",
- "url": "property-photo/fa1184f73/87604779/fa1184f73c0454dbd79c4793147d39ee.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9c78427f7/87604779/9c78427f7fa5ba9fb7eb360585fe89fb_max_476x317.jpeg",
- "url": "property-photo/9c78427f7/87604779/9c78427f7fa5ba9fb7eb360585fe89fb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/cafc839fd/87604779/cafc839fdb5208c8150654c1b1d54a80_max_476x317.jpeg",
- "url": "property-photo/cafc839fd/87604779/cafc839fdb5208c8150654c1b1d54a80.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/032d4910c/87604779/032d4910ceacbb1122a7884d6a953a19_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/032d4910c/87604779/032d4910ceacbb1122a7884d6a953a19_max_296x197.jpeg"
- },
- "formattedBranchName": " by The Stow Brothers, Walthamstow & Leyton",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom apartment",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 171498221,
- "bedrooms": 3,
- "bathrooms": 2,
- "numberOfImages": 21,
- "numberOfFloorplans": 1,
- "numberOfVirtualTours": 0,
- "summary": "*AVAILABLE FOR A FAMILY OR 2 SHARERS* Located just a 10 minute walk to Wood Street Station is this 3 bedroom house on Fulbourne Road. On the ground floor you will find two reception rooms, one for a living room and the second one as a dining room, kitchen and three piece bathroom....",
- "displayAddress": "Fulbourne Road, Walthamstow, London, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.592428,
- "longitude": -0.005282
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3f319146f/171498221/3f319146ff0db47da686ba0406cb9430_max_476x317.jpeg",
- "url": "property-photo/3f319146f/171498221/3f319146ff0db47da686ba0406cb9430.jpeg",
- "caption": "Picture No. 39"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3392483d1/171498221/3392483d1c45f66069c82110ed4b28bc_max_476x317.jpeg",
- "url": "property-photo/3392483d1/171498221/3392483d1c45f66069c82110ed4b28bc.jpeg",
- "caption": "Picture No. 42"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/360932dc2/171498221/360932dc25e23ffd95dc31a59ab6a6eb_max_476x317.jpeg",
- "url": "property-photo/360932dc2/171498221/360932dc25e23ffd95dc31a59ab6a6eb.jpeg",
- "caption": "Picture No. 41"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/df0564a5d/171498221/df0564a5d76712ad87cf02b06f42d9f4_max_476x317.jpeg",
- "url": "property-photo/df0564a5d/171498221/df0564a5d76712ad87cf02b06f42d9f4.jpeg",
- "caption": "Picture No. 43"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ca7b6697/171498221/9ca7b6697d0fc23dcdfdf4cb6d16c99f_max_476x317.jpeg",
- "url": "property-photo/9ca7b6697/171498221/9ca7b6697d0fc23dcdfdf4cb6d16c99f.jpeg",
- "caption": "Picture No. 45"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6019794d6/171498221/6019794d620caf93975cb2ed9281a3c2_max_476x317.jpeg",
- "url": "property-photo/6019794d6/171498221/6019794d620caf93975cb2ed9281a3c2.jpeg",
- "caption": "Picture No. 44"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/032d13c29/171498221/032d13c290ce2f6d3201ade0dbb21547_max_476x317.jpeg",
- "url": "property-photo/032d13c29/171498221/032d13c290ce2f6d3201ade0dbb21547.jpeg",
- "caption": "Picture No. 46"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/51372f935/171498221/51372f9351d42920c5c5ede504fdaab4_max_476x317.jpeg",
- "url": "property-photo/51372f935/171498221/51372f9351d42920c5c5ede504fdaab4.jpeg",
- "caption": "Picture No. 47"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d2b27ef60/171498221/d2b27ef604b206236842548a689a8c7d_max_476x317.jpeg",
- "url": "property-photo/d2b27ef60/171498221/d2b27ef604b206236842548a689a8c7d.jpeg",
- "caption": "Picture No. 48"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b67c6306/171498221/6b67c630636e96bbb4983209bd9ac1ad_max_476x317.jpeg",
- "url": "property-photo/6b67c6306/171498221/6b67c630636e96bbb4983209bd9ac1ad.jpeg",
- "caption": "Picture No. 49"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ac5ff7291/171498221/ac5ff7291fb742e579c527c6cbf8d7b7_max_476x317.jpeg",
- "url": "property-photo/ac5ff7291/171498221/ac5ff7291fb742e579c527c6cbf8d7b7.jpeg",
- "caption": "Picture No. 56"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/637cdfc5c/171498221/637cdfc5ce1a14e7bbfaecf07f5c22a6_max_476x317.jpeg",
- "url": "property-photo/637cdfc5c/171498221/637cdfc5ce1a14e7bbfaecf07f5c22a6.jpeg",
- "caption": "Picture No. 55"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f3d8515f6/171498221/f3d8515f628de5dd72dfd77d31784b1b_max_476x317.jpeg",
- "url": "property-photo/f3d8515f6/171498221/f3d8515f628de5dd72dfd77d31784b1b.jpeg",
- "caption": "Picture No. 52"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/00dd0e57a/171498221/00dd0e57a1aae4143b52c18582af7de0_max_476x317.jpeg",
- "url": "property-photo/00dd0e57a/171498221/00dd0e57a1aae4143b52c18582af7de0.jpeg",
- "caption": "Picture No. 53"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/25cea2145/171498221/25cea214538290451ad3dd35edfa9eec_max_476x317.jpeg",
- "url": "property-photo/25cea2145/171498221/25cea214538290451ad3dd35edfa9eec.jpeg",
- "caption": "Picture No. 50"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7ab5be80c/171498221/7ab5be80cad3761717daa90d472630da_max_476x317.jpeg",
- "url": "property-photo/7ab5be80c/171498221/7ab5be80cad3761717daa90d472630da.jpeg",
- "caption": "Picture No. 51"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bdc0cd507/171498221/bdc0cd507b18531b64af92d63159b567_max_476x317.jpeg",
- "url": "property-photo/bdc0cd507/171498221/bdc0cd507b18531b64af92d63159b567.jpeg",
- "caption": "Picture No. 54"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c87514a1/171498221/6c87514a1d5804987691725fbec1e652_max_476x317.jpeg",
- "url": "property-photo/6c87514a1/171498221/6c87514a1d5804987691725fbec1e652.jpeg",
- "caption": "Picture No. 58"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8bb9687ae/171498221/8bb9687ae4b88e5e2317b4e7362521d6_max_476x317.jpeg",
- "url": "property-photo/8bb9687ae/171498221/8bb9687ae4b88e5e2317b4e7362521d6.jpeg",
- "caption": "Picture No. 59"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/778b99af3/171498221/778b99af365a30601b6d24ba66886479_max_476x317.jpeg",
- "url": "property-photo/778b99af3/171498221/778b99af365a30601b6d24ba66886479.jpeg",
- "caption": "Picture No. 60"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/547ceda6b/171498221/547ceda6bc67d8a3d5e1b020384607f1_max_476x317.jpeg",
- "url": "property-photo/547ceda6b/171498221/547ceda6bc67d8a3d5e1b020384607f1.jpeg",
- "caption": "Picture No. 61"
- }
- ],
- "propertySubType": "Terraced",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-02-28T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "price_reduced",
- "listingUpdateDate": "2026-02-10T13:53:20Z"
- },
- "price": {
- "amount": 2100,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,100 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£485 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 6323,
- "brandPlusLogoURI": "/company/clogo_rmchoice_1992_0002.png",
- "contactTelephone": "020 3909 6714",
- "branchDisplayName": "Central Estate Agents, Walthamstow",
- "branchName": "Walthamstow",
- "brandTradingName": "Central Estate Agents",
- "branchLandingPageUrl": "/estate-agents/agent/Central-Estate-Agents/Walthamstow-6323.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": false,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2026-01-16T17:08:08Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_rmchoice_1992_0002.png",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/171498221#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=171498221",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-01-27T14:26:01Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-10T21:40:30Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Terraced House",
- "htmlDescription": "Terraced House"
- },
- {
- "order": 2,
- "description": "2 Double bedrooms / 1 smaller double bedroom",
- "htmlDescription": "2 Double bedrooms / 1 smaller double bedroom"
- },
- {
- "order": 3,
- "description": "2 Reception rooms",
- "htmlDescription": "2 Reception rooms"
- },
- {
- "order": 4,
- "description": "2 Bathrooms",
- "htmlDescription": "2 Bathrooms"
- },
- {
- "order": 5,
- "description": "Kitchen",
- "htmlDescription": "Kitchen"
- },
- {
- "order": 6,
- "description": "Private garden",
- "htmlDescription": "Private garden"
- },
- {
- "order": 7,
- "description": "Unfurnished",
- "htmlDescription": "Unfurnished"
- },
- {
- "order": 8,
- "description": "10 minutes walk to Wood Street Station",
- "htmlDescription": "10 minutes walk to Wood Street Station"
- },
- {
- "order": 9,
- "description": "Available February",
- "htmlDescription": "Available February"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3f319146f/171498221/3f319146ff0db47da686ba0406cb9430_max_476x317.jpeg",
- "url": "property-photo/3f319146f/171498221/3f319146ff0db47da686ba0406cb9430.jpeg",
- "caption": "Picture No. 39"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3392483d1/171498221/3392483d1c45f66069c82110ed4b28bc_max_476x317.jpeg",
- "url": "property-photo/3392483d1/171498221/3392483d1c45f66069c82110ed4b28bc.jpeg",
- "caption": "Picture No. 42"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/360932dc2/171498221/360932dc25e23ffd95dc31a59ab6a6eb_max_476x317.jpeg",
- "url": "property-photo/360932dc2/171498221/360932dc25e23ffd95dc31a59ab6a6eb.jpeg",
- "caption": "Picture No. 41"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/df0564a5d/171498221/df0564a5d76712ad87cf02b06f42d9f4_max_476x317.jpeg",
- "url": "property-photo/df0564a5d/171498221/df0564a5d76712ad87cf02b06f42d9f4.jpeg",
- "caption": "Picture No. 43"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/9ca7b6697/171498221/9ca7b6697d0fc23dcdfdf4cb6d16c99f_max_476x317.jpeg",
- "url": "property-photo/9ca7b6697/171498221/9ca7b6697d0fc23dcdfdf4cb6d16c99f.jpeg",
- "caption": "Picture No. 45"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6019794d6/171498221/6019794d620caf93975cb2ed9281a3c2_max_476x317.jpeg",
- "url": "property-photo/6019794d6/171498221/6019794d620caf93975cb2ed9281a3c2.jpeg",
- "caption": "Picture No. 44"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/032d13c29/171498221/032d13c290ce2f6d3201ade0dbb21547_max_476x317.jpeg",
- "url": "property-photo/032d13c29/171498221/032d13c290ce2f6d3201ade0dbb21547.jpeg",
- "caption": "Picture No. 46"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/51372f935/171498221/51372f9351d42920c5c5ede504fdaab4_max_476x317.jpeg",
- "url": "property-photo/51372f935/171498221/51372f9351d42920c5c5ede504fdaab4.jpeg",
- "caption": "Picture No. 47"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/d2b27ef60/171498221/d2b27ef604b206236842548a689a8c7d_max_476x317.jpeg",
- "url": "property-photo/d2b27ef60/171498221/d2b27ef604b206236842548a689a8c7d.jpeg",
- "caption": "Picture No. 48"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6b67c6306/171498221/6b67c630636e96bbb4983209bd9ac1ad_max_476x317.jpeg",
- "url": "property-photo/6b67c6306/171498221/6b67c630636e96bbb4983209bd9ac1ad.jpeg",
- "caption": "Picture No. 49"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ac5ff7291/171498221/ac5ff7291fb742e579c527c6cbf8d7b7_max_476x317.jpeg",
- "url": "property-photo/ac5ff7291/171498221/ac5ff7291fb742e579c527c6cbf8d7b7.jpeg",
- "caption": "Picture No. 56"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/637cdfc5c/171498221/637cdfc5ce1a14e7bbfaecf07f5c22a6_max_476x317.jpeg",
- "url": "property-photo/637cdfc5c/171498221/637cdfc5ce1a14e7bbfaecf07f5c22a6.jpeg",
- "caption": "Picture No. 55"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f3d8515f6/171498221/f3d8515f628de5dd72dfd77d31784b1b_max_476x317.jpeg",
- "url": "property-photo/f3d8515f6/171498221/f3d8515f628de5dd72dfd77d31784b1b.jpeg",
- "caption": "Picture No. 52"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/00dd0e57a/171498221/00dd0e57a1aae4143b52c18582af7de0_max_476x317.jpeg",
- "url": "property-photo/00dd0e57a/171498221/00dd0e57a1aae4143b52c18582af7de0.jpeg",
- "caption": "Picture No. 53"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/25cea2145/171498221/25cea214538290451ad3dd35edfa9eec_max_476x317.jpeg",
- "url": "property-photo/25cea2145/171498221/25cea214538290451ad3dd35edfa9eec.jpeg",
- "caption": "Picture No. 50"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7ab5be80c/171498221/7ab5be80cad3761717daa90d472630da_max_476x317.jpeg",
- "url": "property-photo/7ab5be80c/171498221/7ab5be80cad3761717daa90d472630da.jpeg",
- "caption": "Picture No. 51"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bdc0cd507/171498221/bdc0cd507b18531b64af92d63159b567_max_476x317.jpeg",
- "url": "property-photo/bdc0cd507/171498221/bdc0cd507b18531b64af92d63159b567.jpeg",
- "caption": "Picture No. 54"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6c87514a1/171498221/6c87514a1d5804987691725fbec1e652_max_476x317.jpeg",
- "url": "property-photo/6c87514a1/171498221/6c87514a1d5804987691725fbec1e652.jpeg",
- "caption": "Picture No. 58"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/8bb9687ae/171498221/8bb9687ae4b88e5e2317b4e7362521d6_max_476x317.jpeg",
- "url": "property-photo/8bb9687ae/171498221/8bb9687ae4b88e5e2317b4e7362521d6.jpeg",
- "caption": "Picture No. 59"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/778b99af3/171498221/778b99af365a30601b6d24ba66886479_max_476x317.jpeg",
- "url": "property-photo/778b99af3/171498221/778b99af365a30601b6d24ba66886479.jpeg",
- "caption": "Picture No. 60"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/547ceda6b/171498221/547ceda6bc67d8a3d5e1b020384607f1_max_476x317.jpeg",
- "url": "property-photo/547ceda6b/171498221/547ceda6bc67d8a3d5e1b020384607f1.jpeg",
- "caption": "Picture No. 61"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3f319146f/171498221/3f319146ff0db47da686ba0406cb9430_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/3f319146f/171498221/3f319146ff0db47da686ba0406cb9430_max_296x197.jpeg"
- },
- "formattedBranchName": " by Central Estate Agents, Walthamstow",
- "addedOrReduced": "Added on 27/01/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "3 bedroom terraced house",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 70921937,
- "bedrooms": 0,
- "bathrooms": null,
- "numberOfImages": 5,
- "numberOfFloorplans": 0,
- "numberOfVirtualTours": 0,
- "summary": "Eastway Property Services are proud to offer this small first floor self contained studio flat located close to all amenities on High Street Walthamstow. Situated a ten minute walk to Walthamstow Central Station and footsteps away from the market. Ideal for a single person. ",
- "displayAddress": "High Street, London, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.58268,
- "longitude": -0.02957
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/852160f82/70921937/852160f8215c4a970d1dc1d77b320bc8_max_476x317.jpeg",
- "url": "property-photo/852160f82/70921937/852160f8215c4a970d1dc1d77b320bc8.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/031c23841/70921937/031c238416297e63dcc2c47267fce820_max_476x317.jpeg",
- "url": "property-photo/031c23841/70921937/031c238416297e63dcc2c47267fce820.jpeg",
- "caption": "Kitchen"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ca49b3664/70921937/ca49b366407a36cc10fadd781002e601_max_476x317.jpeg",
- "url": "property-photo/ca49b3664/70921937/ca49b366407a36cc10fadd781002e601.jpeg",
- "caption": "Shower/WC"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b286f3410/70921937/b286f34105906748c4ea540c149f05e1_max_476x317.jpeg",
- "url": "property-photo/b286f3410/70921937/b286f34105906748c4ea540c149f05e1.jpeg",
- "caption": "Shower/WC"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db6d09ac5/70921937/db6d09ac5a14976074b929fe7eacc246_max_476x317.jpeg",
- "url": "property-photo/db6d09ac5/70921937/db6d09ac5a14976074b929fe7eacc246.jpeg",
- "caption": "Studio"
- }
- ],
- "propertySubType": "Studio",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-03-08T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T13:49:01Z"
- },
- "price": {
- "amount": 900,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£900 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£208 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 56722,
- "brandPlusLogoURI": "/company/clogo_22345_0003.jpeg",
- "contactTelephone": "020 3835 5302",
- "branchDisplayName": "Eastway Property Services, London",
- "branchName": "London",
- "brandTradingName": "Eastway Property Services",
- "branchLandingPageUrl": "/estate-agents/agent/Eastway-Property-Services/London-56722.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-11-19T09:42:29Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_22345_0003.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": true,
- "auction": false,
- "feesApply": true,
- "feesApplyText": null,
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/70921937#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=70921937",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2018-01-10T12:31:38Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-10T13:50:48Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Minutes walk to Walthamstow Central",
- "htmlDescription": "Minutes walk to Walthamstow Central"
- },
- {
- "order": 2,
- "description": "Laminate flooring",
- "htmlDescription": "Laminate flooring"
- },
- {
- "order": 3,
- "description": "Self contained",
- "htmlDescription": "Self contained"
- },
- {
- "order": 4,
- "description": "White goods",
- "htmlDescription": "White goods"
- },
- {
- "order": 5,
- "description": "Close to all amenities",
- "htmlDescription": "Close to all amenities"
- },
- {
- "order": 6,
- "description": "Footsteps away from Walthamstow Market",
- "htmlDescription": "Footsteps away from Walthamstow Market"
- },
- {
- "order": 7,
- "description": "Fully tiled shower room",
- "htmlDescription": "Fully tiled shower room"
- },
- {
- "order": 8,
- "description": "Ideal for single person",
- "htmlDescription": "Ideal for single person"
- },
- {
- "order": 9,
- "description": "Double glazed",
- "htmlDescription": "Double glazed"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/852160f82/70921937/852160f8215c4a970d1dc1d77b320bc8_max_476x317.jpeg",
- "url": "property-photo/852160f82/70921937/852160f8215c4a970d1dc1d77b320bc8.jpeg",
- "caption": "Bedroom"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/031c23841/70921937/031c238416297e63dcc2c47267fce820_max_476x317.jpeg",
- "url": "property-photo/031c23841/70921937/031c238416297e63dcc2c47267fce820.jpeg",
- "caption": "Kitchen"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ca49b3664/70921937/ca49b366407a36cc10fadd781002e601_max_476x317.jpeg",
- "url": "property-photo/ca49b3664/70921937/ca49b366407a36cc10fadd781002e601.jpeg",
- "caption": "Shower/WC"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/b286f3410/70921937/b286f34105906748c4ea540c149f05e1_max_476x317.jpeg",
- "url": "property-photo/b286f3410/70921937/b286f34105906748c4ea540c149f05e1.jpeg",
- "caption": "Shower/WC"
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/db6d09ac5/70921937/db6d09ac5a14976074b929fe7eacc246_max_476x317.jpeg",
- "url": "property-photo/db6d09ac5/70921937/db6d09ac5a14976074b929fe7eacc246.jpeg",
- "caption": "Studio"
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/852160f82/70921937/852160f8215c4a970d1dc1d77b320bc8_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/852160f82/70921937/852160f8215c4a970d1dc1d77b320bc8_max_296x197.jpeg"
- },
- "formattedBranchName": " by Eastway Property Services, London",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "Studio flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 87599340,
- "bedrooms": 2,
- "bathrooms": 1,
- "numberOfImages": 6,
- "numberOfFloorplans": 2,
- "numberOfVirtualTours": 0,
- "summary": "ZERO DEPOSIT AVAILABLE. LONG LET. A superb 2 bedroom apartment set on the first floor of a charming period conversion, boasting light filled living and entertaining space with contemporary fixtures and access to a charming rear garden.",
- "displayAddress": "Chingford Road, Walthamstow, London, E17",
- "countryCode": "GB",
- "location": {
- "latitude": 51.596973,
- "longitude": -0.015873
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2dfdc4d7c/87599340/2dfdc4d7c246125d3047dd37e5b3c8fb_max_476x317.jpeg",
- "url": "property-photo/2dfdc4d7c/87599340/2dfdc4d7c246125d3047dd37e5b3c8fb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6a1edbf7b/87599340/6a1edbf7bc49382a98c17c9bd9c4430e_max_476x317.jpeg",
- "url": "property-photo/6a1edbf7b/87599340/6a1edbf7bc49382a98c17c9bd9c4430e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2743cf495/87599340/2743cf49553c97161e2e7fa29b7f599a_max_476x317.jpeg",
- "url": "property-photo/2743cf495/87599340/2743cf49553c97161e2e7fa29b7f599a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ad8bcd5fc/87599340/ad8bcd5fc61a41c5111c865a415747a9_max_476x317.jpeg",
- "url": "property-photo/ad8bcd5fc/87599340/ad8bcd5fc61a41c5111c865a415747a9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c09dfc5d4/87599340/c09dfc5d417014718c4debc482a6af2a_max_476x317.jpeg",
- "url": "property-photo/c09dfc5d4/87599340/c09dfc5d417014718c4debc482a6af2a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/33c6a0db7/87599340/33c6a0db7482487740470262d70387b6_max_476x317.jpeg",
- "url": "property-photo/33c6a0db7/87599340/33c6a0db7482487740470262d70387b6.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Maisonette",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": null,
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T12:56:06Z"
- },
- "price": {
- "amount": 2100,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£2,100 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£485 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 137369,
- "brandPlusLogoURI": "/brand/brand_rmchoice_logo_6585_0000.jpeg",
- "contactTelephone": "020 3840 3515",
- "branchDisplayName": "Foxtons, Walthamstow",
- "branchName": "Walthamstow",
- "brandTradingName": "Foxtons",
- "branchLandingPageUrl": "/estate-agents/agent/Foxtons/Walthamstow-137369.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-12-19T13:57:12Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/brand/brand_rmchoice_logo_6585_0000.jpeg",
- "primaryBrandColour": "#017163"
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "
Deposit: £2,424
Other fees Contract variation, novation, amendment or change of occupant at the tenant's request within an existing tenancy: £50.
Default fee of interest on late rent: 3% above Bank of England base rate applicable if rent is more than 14 days overdue.
Default fee for lost keys or other respective security devices: actual cost of replacement.
Fees for non-Assured Shorthold Tenancies / non-Licences Tenant fee: £250 per person.
This is fixed-cost fee that can cover a variety of works depending on the individual circumstances of each tenancy,including but not limited to conducting viewings, negotiating the tenancy, verifying references, undertaking Right to Rentchecks (if applicable) and drawing up contracts. It is charged on a per individual basis - not per tenancy. The charge will not exceed £250 inc VAT per individual and will only be applied to the first four individuals entering into the tenancy wherethere are more than four individuals taking occupation of the property. The charge will not exceed this sum unless yourequest or cause one of the specific additional services or fees set out elsewhere in this document.
Tenant protection Foxtons' Client Money Protection Scheme is provided by Propertymark. Foxtons is a member of The Property Ombudsman Redress Scheme and subject to its codes of practice and redress scheme.
",
- "displaySize": "925 sq. ft.",
- "showOnMap": true,
- "propertyUrl": "/properties/87599340#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=87599340",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T12:50:43Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-13T07:01:44Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "A beautifully presented 2 bedroom flat",
- "htmlDescription": "A beautifully presented 2 bedroom flat"
- },
- {
- "order": 2,
- "description": "Located on the first floor with private entrance",
- "htmlDescription": "Located on the first floor with private entrance"
- },
- {
- "order": 3,
- "description": "Large reception room flooded with natural light",
- "htmlDescription": "Large reception room flooded with natural light"
- },
- {
- "order": 4,
- "description": "Offering space to dine and entertain",
- "htmlDescription": "Offering space to dine and entertain"
- },
- {
- "order": 5,
- "description": "Fully fitted kitchen with stairs leading to a ground floor garden",
- "htmlDescription": "Fully fitted kitchen with stairs leading to a ground floor garden"
- },
- {
- "order": 6,
- "description": "2 well proportioned bedrooms with storage space",
- "htmlDescription": "2 well proportioned bedrooms with storage space"
- },
- {
- "order": 7,
- "description": "Bathroom with white suite",
- "htmlDescription": "Bathroom with white suite"
- },
- {
- "order": 8,
- "description": "Excellent location on the doorstep to amenities",
- "htmlDescription": "Excellent location on the doorstep to amenities"
- },
- {
- "order": 9,
- "description": "Available with Zero Deposit",
- "htmlDescription": "Available with Zero Deposit"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2dfdc4d7c/87599340/2dfdc4d7c246125d3047dd37e5b3c8fb_max_476x317.jpeg",
- "url": "property-photo/2dfdc4d7c/87599340/2dfdc4d7c246125d3047dd37e5b3c8fb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6a1edbf7b/87599340/6a1edbf7bc49382a98c17c9bd9c4430e_max_476x317.jpeg",
- "url": "property-photo/6a1edbf7b/87599340/6a1edbf7bc49382a98c17c9bd9c4430e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2743cf495/87599340/2743cf49553c97161e2e7fa29b7f599a_max_476x317.jpeg",
- "url": "property-photo/2743cf495/87599340/2743cf49553c97161e2e7fa29b7f599a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ad8bcd5fc/87599340/ad8bcd5fc61a41c5111c865a415747a9_max_476x317.jpeg",
- "url": "property-photo/ad8bcd5fc/87599340/ad8bcd5fc61a41c5111c865a415747a9.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/c09dfc5d4/87599340/c09dfc5d417014718c4debc482a6af2a_max_476x317.jpeg",
- "url": "property-photo/c09dfc5d4/87599340/c09dfc5d417014718c4debc482a6af2a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/33c6a0db7/87599340/33c6a0db7482487740470262d70387b6_max_476x317.jpeg",
- "url": "property-photo/33c6a0db7/87599340/33c6a0db7482487740470262d70387b6.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2dfdc4d7c/87599340/2dfdc4d7c246125d3047dd37e5b3c8fb_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/2dfdc4d7c/87599340/2dfdc4d7c246125d3047dd37e5b3c8fb_max_296x197.jpeg"
- },
- "formattedBranchName": " by Foxtons, Walthamstow",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom maisonette",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- },
- {
- "id": 87598815,
- "bedrooms": 2,
- "bathrooms": 1,
- "numberOfImages": 17,
- "numberOfFloorplans": 0,
- "numberOfVirtualTours": 0,
- "summary": "A well-proportioned two bedroom flat set within Hainault Court on Forest Rise, offering bright accommodation with high ceilings and large windows. Conveniently located close to local amenities and Wood Street Station, with easy access to Hollow Ponds and surrounding green spaces.",
- "displayAddress": "Hainault Court, Forest Rise, London, E17 ",
- "countryCode": "GB",
- "location": {
- "latitude": 51.58354,
- "longitude": 0.00439
- },
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4ac78bdfe/87598815/4ac78bdfe83e068c530f92d4919120cc_max_476x317.jpeg",
- "url": "property-photo/4ac78bdfe/87598815/4ac78bdfe83e068c530f92d4919120cc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4e9ec759c/87598815/4e9ec759c253fea3e1c8d3b6da1c93c5_max_476x317.jpeg",
- "url": "property-photo/4e9ec759c/87598815/4e9ec759c253fea3e1c8d3b6da1c93c5.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/21ee86fe6/87598815/21ee86fe6f85f3b6efa412652ccac945_max_476x317.jpeg",
- "url": "property-photo/21ee86fe6/87598815/21ee86fe6f85f3b6efa412652ccac945.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/62e71570d/87598815/62e71570de7839718bb39c8e6f0fb2ce_max_476x317.jpeg",
- "url": "property-photo/62e71570d/87598815/62e71570de7839718bb39c8e6f0fb2ce.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f5587950/87598815/6f5587950419d33518ab20ee538d9dcc_max_476x317.jpeg",
- "url": "property-photo/6f5587950/87598815/6f5587950419d33518ab20ee538d9dcc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/588f17001/87598815/588f170011b050e34b2297aa84b772a7_max_476x317.jpeg",
- "url": "property-photo/588f17001/87598815/588f170011b050e34b2297aa84b772a7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/41ce2f7a9/87598815/41ce2f7a97cb148709c6aa302955992f_max_476x317.jpeg",
- "url": "property-photo/41ce2f7a9/87598815/41ce2f7a97cb148709c6aa302955992f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/41ce2f7a9/87598815/41ce2f7a97cb148709c6aa302955992f_max_476x317.jpeg",
- "url": "property-photo/41ce2f7a9/87598815/41ce2f7a97cb148709c6aa302955992f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a43770332/87598815/a43770332b8271a503d5fc75f1d698cb_max_476x317.jpeg",
- "url": "property-photo/a43770332/87598815/a43770332b8271a503d5fc75f1d698cb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f47a2082f/87598815/f47a2082f118e654acf5d56709a64d2a_max_476x317.jpeg",
- "url": "property-photo/f47a2082f/87598815/f47a2082f118e654acf5d56709a64d2a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/806fa40c9/87598815/806fa40c983f09881dc6ab4f9582b42f_max_476x317.jpeg",
- "url": "property-photo/806fa40c9/87598815/806fa40c983f09881dc6ab4f9582b42f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/04b1878a6/87598815/04b1878a6fd0ef580af9e03e9627099a_max_476x317.jpeg",
- "url": "property-photo/04b1878a6/87598815/04b1878a6fd0ef580af9e03e9627099a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7e05e3d5b/87598815/7e05e3d5b92f3460a04bc1ca8bace450_max_476x317.jpeg",
- "url": "property-photo/7e05e3d5b/87598815/7e05e3d5b92f3460a04bc1ca8bace450.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7e05e3d5b/87598815/7e05e3d5b92f3460a04bc1ca8bace450_max_476x317.jpeg",
- "url": "property-photo/7e05e3d5b/87598815/7e05e3d5b92f3460a04bc1ca8bace450.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ee8aa92d2/87598815/ee8aa92d2200634e4ac6257b5bc6761a_max_476x317.jpeg",
- "url": "property-photo/ee8aa92d2/87598815/ee8aa92d2200634e4ac6257b5bc6761a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bfdd07a5d/87598815/bfdd07a5dcd54fd41e692ad2c8d6636e_max_476x317.jpeg",
- "url": "property-photo/bfdd07a5d/87598815/bfdd07a5dcd54fd41e692ad2c8d6636e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/243bde4df/87598815/243bde4df6b09bbf54d4b4c14942d7ab_max_476x317.jpeg",
- "url": "property-photo/243bde4df/87598815/243bde4df6b09bbf54d4b4c14942d7ab.jpeg",
- "caption": null
- }
- ],
- "propertySubType": "Flat",
- "tenure": {
- "tenureType": null
- },
- "letAvailableDate": "2026-03-08T00:00:00Z",
- "listingUpdate": {
- "listingUpdateReason": "new",
- "listingUpdateDate": "2026-02-10T12:51:04Z"
- },
- "price": {
- "amount": 1525,
- "frequency": "monthly",
- "currencyCode": "GBP",
- "displayPrices": [
- {
- "displayPrice": "£1,525 pcm",
- "displayPriceQualifier": ""
- },
- {
- "displayPrice": "£352 pw",
- "displayPriceQualifier": ""
- }
- ]
- },
- "premiumListing": false,
- "featuredProperty": false,
- "commercialSearchProminenceSelected": false,
- "customer": {
- "branchId": 98603,
- "brandPlusLogoURI": "/company/clogo_rmchoice_37811_0007.jpeg",
- "contactTelephone": "020 3910 6361",
- "branchDisplayName": "Leo Newman, London",
- "branchName": "London",
- "brandTradingName": "Leo Newman",
- "branchLandingPageUrl": "/estate-agents/agent/Leo-Newman/London-98603.html",
- "development": false,
- "mediaServerUrl": "https://media.rightmove.co.uk:443",
- "showReducedProperties": true,
- "hasBrandPlus": true,
- "commercial": false,
- "showOnMap": true,
- "enhancedListing": false,
- "developmentContent": null,
- "buildToRent": false,
- "buildToRentBenefits": [],
- "updateDate": "2025-06-20T17:34:16Z",
- "brandPlusLogoUrl": "https://media.rightmove.co.uk:443/company/clogo_rmchoice_37811_0007.jpeg",
- "primaryBrandColour": null
- },
- "distance": null,
- "transactionType": "rent",
- "productLabel": {
- "productLabelText": null,
- "spotlightLabel": false
- },
- "commercial": false,
- "development": false,
- "residential": true,
- "students": false,
- "auction": false,
- "feesApply": true,
- "feesApplyText": "Permitted payments (All prices are inclusive of VAT)\n\nAs well as paying the rent Tenant s may also be required to make the following permitted payments.\n\nFor new Assured Shorthold Tenancies (AST s) signed on or after 1st June 2019 the following permitted payments will apply:\n\nBefore the Tenancy starts (payable to Leo Newman the Agent ):\nHolding Deposit of a maximum of 1 week s rent\nSecurity Deposit of 5 weeks rent, increasing to 6 weeks rent when the annual rent is in excess of £50,000\n\nDuring the Tenancy (payable to the Agent):\nChanges to the Tenancy Agreement as requested by the Tenant: Payment of £50.00 per change\n\nPayment of interest for the late payment of rent that is overdue by 14 days or more will be at a rate of 3% above the Bank of England base rate \n\nPayment for the reasonably incurred costs for the loss of keys/security devices\n\nPayment of any unpaid rent or other reasonable costs associated with the Tenant s request for early termination of the Tenancy Agreement\n\nRent and Utility bills as stated in the Tenancy Agreement\n\nTenant protection:\nW Lettings and Management Limited trading as Leo Newman is a member of Client Money Protect [CMP] which is a client money protection scheme provided by CM Protect Limited, and also a member of the Property Redress Scheme [PRS], a redress scheme, which is the trading name of HF Resolution Ltd.",
- "displaySize": "",
- "showOnMap": true,
- "propertyUrl": "/properties/87598815#/?channel=RES_LET",
- "contactUrl": "/property-to-rent/contactBranch.html?propertyId=87598815",
- "staticMapUrl": null,
- "channel": "RENT",
- "firstVisibleDate": "2026-02-10T12:45:09Z",
- "keywords": [],
- "tags": [],
- "keywordMatchType": "no_keyword",
- "saved": false,
- "hidden": false,
- "onlineViewingsAvailable": false,
- "lozengeModel": {
- "matchingLozenges": []
- },
- "streetView": {
- "showStreetView": true
- },
- "enquiredTimestamp": null,
- "updateDate": "2026-02-13T08:20:03Z",
- "enquiryAddedTimestamp": null,
- "enquiryCalledTimestamp": null,
- "reviews": null,
- "keyFeatures": [
- {
- "order": 1,
- "description": "Two bedroom flat arranged on the second floor",
- "htmlDescription": "Two bedroom flat arranged on the second floor"
- },
- {
- "order": 2,
- "description": "Well-proportioned and practical layout",
- "htmlDescription": "Well-proportioned and practical layout"
- },
- {
- "order": 3,
- "description": "Bright reception room with large windows",
- "htmlDescription": "Bright reception room with large windows"
- },
- {
- "order": 4,
- "description": "Fitted kitchen with good storage and worktop space",
- "htmlDescription": "Fitted kitchen with good storage and worktop space"
- },
- {
- "order": 5,
- "description": "Walkthrough Available",
- "htmlDescription": "Walkthrough Available"
- }
- ],
- "enhancedListing": false,
- "propertyImages": {
- "images": [
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4ac78bdfe/87598815/4ac78bdfe83e068c530f92d4919120cc_max_476x317.jpeg",
- "url": "property-photo/4ac78bdfe/87598815/4ac78bdfe83e068c530f92d4919120cc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4e9ec759c/87598815/4e9ec759c253fea3e1c8d3b6da1c93c5_max_476x317.jpeg",
- "url": "property-photo/4e9ec759c/87598815/4e9ec759c253fea3e1c8d3b6da1c93c5.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/21ee86fe6/87598815/21ee86fe6f85f3b6efa412652ccac945_max_476x317.jpeg",
- "url": "property-photo/21ee86fe6/87598815/21ee86fe6f85f3b6efa412652ccac945.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/62e71570d/87598815/62e71570de7839718bb39c8e6f0fb2ce_max_476x317.jpeg",
- "url": "property-photo/62e71570d/87598815/62e71570de7839718bb39c8e6f0fb2ce.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/6f5587950/87598815/6f5587950419d33518ab20ee538d9dcc_max_476x317.jpeg",
- "url": "property-photo/6f5587950/87598815/6f5587950419d33518ab20ee538d9dcc.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/588f17001/87598815/588f170011b050e34b2297aa84b772a7_max_476x317.jpeg",
- "url": "property-photo/588f17001/87598815/588f170011b050e34b2297aa84b772a7.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/41ce2f7a9/87598815/41ce2f7a97cb148709c6aa302955992f_max_476x317.jpeg",
- "url": "property-photo/41ce2f7a9/87598815/41ce2f7a97cb148709c6aa302955992f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/41ce2f7a9/87598815/41ce2f7a97cb148709c6aa302955992f_max_476x317.jpeg",
- "url": "property-photo/41ce2f7a9/87598815/41ce2f7a97cb148709c6aa302955992f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/a43770332/87598815/a43770332b8271a503d5fc75f1d698cb_max_476x317.jpeg",
- "url": "property-photo/a43770332/87598815/a43770332b8271a503d5fc75f1d698cb.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/f47a2082f/87598815/f47a2082f118e654acf5d56709a64d2a_max_476x317.jpeg",
- "url": "property-photo/f47a2082f/87598815/f47a2082f118e654acf5d56709a64d2a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/806fa40c9/87598815/806fa40c983f09881dc6ab4f9582b42f_max_476x317.jpeg",
- "url": "property-photo/806fa40c9/87598815/806fa40c983f09881dc6ab4f9582b42f.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/04b1878a6/87598815/04b1878a6fd0ef580af9e03e9627099a_max_476x317.jpeg",
- "url": "property-photo/04b1878a6/87598815/04b1878a6fd0ef580af9e03e9627099a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7e05e3d5b/87598815/7e05e3d5b92f3460a04bc1ca8bace450_max_476x317.jpeg",
- "url": "property-photo/7e05e3d5b/87598815/7e05e3d5b92f3460a04bc1ca8bace450.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/7e05e3d5b/87598815/7e05e3d5b92f3460a04bc1ca8bace450_max_476x317.jpeg",
- "url": "property-photo/7e05e3d5b/87598815/7e05e3d5b92f3460a04bc1ca8bace450.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/ee8aa92d2/87598815/ee8aa92d2200634e4ac6257b5bc6761a_max_476x317.jpeg",
- "url": "property-photo/ee8aa92d2/87598815/ee8aa92d2200634e4ac6257b5bc6761a.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/bfdd07a5d/87598815/bfdd07a5dcd54fd41e692ad2c8d6636e_max_476x317.jpeg",
- "url": "property-photo/bfdd07a5d/87598815/bfdd07a5dcd54fd41e692ad2c8d6636e.jpeg",
- "caption": null
- },
- {
- "srcUrl": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/243bde4df/87598815/243bde4df6b09bbf54d4b4c14942d7ab_max_476x317.jpeg",
- "url": "property-photo/243bde4df/87598815/243bde4df6b09bbf54d4b4c14942d7ab.jpeg",
- "caption": null
- }
- ],
- "mainImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4ac78bdfe/87598815/4ac78bdfe83e068c530f92d4919120cc_max_476x317.jpeg",
- "mainMapImageSrc": "https://media.rightmove.co.uk:443/dir/crop/10:9-16:9/property-photo/4ac78bdfe/87598815/4ac78bdfe83e068c530f92d4919120cc_max_296x197.jpeg"
- },
- "formattedBranchName": " by Leo Newman, London",
- "addedOrReduced": "Added on 10/02/2026",
- "formattedDistance": "",
- "heading": "",
- "propertyTypeFullDescription": "2 bedroom flat",
- "displayStatus": "",
- "isRecent": false,
- "hasBrandPlus": true
- }
- ],
- "resultCount": "229",
- "searchParameters": {
- "locationIdentifier": "OUTCODE^752",
- "numberOfPropertiesPerPage": "24",
- "radius": "0.0",
- "sortType": "6",
- "index": "48",
- "propertyTypes": [],
- "tenureTypes": [],
- "viewType": "LIST",
- "mustHave": [],
- "dontShow": [],
- "furnishTypes": [],
- "channel": "RENT",
- "areaSizeUnit": "sqft",
- "currencyCode": "GBP",
- "keywords": [],
- "tags": []
- },
- "searchParametersDescription": "Properties To Rent in E17",
- "sidebarModel": {
- "soldHousePricesLinks": {
- "heading": "Sold House Prices",
- "subHeading": "What did properties sell for in E17?",
- "model": [
- {
- "text": "View house prices in E17",
- "url": "/house-prices/e17.html",
- "noFollow": false
- }
- ],
- "headingLink": null
- },
- "relatedHouseSearches": null,
- "relatedFlatSearches": null,
- "relatedPopularSearches": null,
- "relatedRegionsSearches": null,
- "relatedSuggestedSearches": {
- "heading": "Suggested Links",
- "subHeading": null,
- "model": [
- {
- "text": "Estate agents in E17",
- "url": "/estate-agents/find.html?locationIdentifier=OUTCODE^752",
- "noFollow": true
- }
- ],
- "headingLink": null
- },
- "channelSwitchLink": {
- "heading": "Channel Switch",
- "subHeading": null,
- "model": [
- {
- "text": "See properties for sale in E17",
- "url": "/property-for-sale/find.html?locationIdentifier=OUTCODE^752",
- "noFollow": true
- }
- ],
- "headingLink": null
- },
- "relatedStudentLinks": null,
- "branchMPU": null,
- "countryGuideMPU": null,
- "suggestedLinks": {
- "heading": "Suggested Links",
- "subHeading": null,
- "model": [
- {
- "text": "Estate agents in E17",
- "url": "/estate-agents/find.html?locationIdentifier=OUTCODE^752",
- "noFollow": true
- }
- ],
- "headingLink": null
- }
- },
- "keywordCount": 0,
- "pageTitle": "Properties To Rent in E17 | Rightmove",
- "metaDescription": "Flats & Houses To Rent in E17 - Find properties with Rightmove - the UK's largest selection of properties.",
- "seoModel": {
- "canonicalUrl": "https://www.rightmove.co.uk/property-to-rent/E17.html",
- "metaRobots": ""
- },
- "timestamp": 1770978252969,
- "urlPath": null,
- "staticMapUrl": "https://media.rightmove.co.uk:443/map/_generate?width=360&height=380&polygonFillColor=%232E8E8914&polygonLineColor=%232E8E89FF&mapPolygon=qwyyH%7CqHvNf%7B%40OdBcA%7EI%60BvB%7CBhBz%40NbAMlEoDdDwAbJoDtEkCpDsBxD%7B%40hFiIfA%5Bf%40o%40n%40gBJsDd%40kBl%40s%40xGoDdCmGv%40yC%7DPaKmGoEbEeLc%40oDgMwh%40S_%40uBmAmGgCjAoBPoApCeFnBi%40fFwChHyMxIiFaAmCfB%7BBgEoP%7D%40yGkAw%40RcAc%40EGa%40e%40WyAaGHEM_A%5D%5BBw%40Wm%40n%40k%40k%40o%40e%40L%7B%40iD%3Fw%40K_%40OLOmA%7DCbCsBkK%5DmASJw%40uGo%40k%40IqBc%40AYcA%7B%40uBOiACg%40%60%40eABuAa%40e%40%5BaBf%40q%40gAiAR%60As%40%5EgAoCMHWWe%40iBm%40%5Co%40iDd%40%5DgAkF%7D%40l%40GgAMO%5BFy%40%7DCyAsRkEwLYSGs%40%7BCoI%7DDoJi%40aCWI%40QmKo%5Bp%40%7BDRcSuGtAoAoGMK%5DVc%40mA%7B%40qAcAwBGcBQ_%40yW%60B%7DB%60%40q%40IkBx%40iCVyPyAmVyA%3Fl%40vAdAoBtAo%40rCTfAUh%40aBrA%7EDdP%7BA%60BeAhMApGL%7CChBdByBbHFxBNJaAdH%5DRm%40tHeAQDxCi%40%5BBpDf%40h%40%40rAkBn%40g%40pJq%40%7B%40%7DAq%40kB%7EB%7BDn%40kFnGp%40%7ECMlAPdAjApAp%40YAfHtGILnG%7CI%5Cs%40tCFx%40PIVRg%40%7EFLIoA%60FaBvDaPj%5CaAjCrKtOqLxj%40%5D%40iE%7CEwI%7CGOF%7EId%5CdB%60DrPbLnG%7CF%7CKhLzNfTlClBtAj%40tC%5CpBpClAx%40tHr%40bChALo%40%60EFjBo%40p%40oCf%40gAb%40y%40zBnCrCm%40lHjA%60DsDrEBhAsCWsDj%40gBhA%5DvEhA&signature=Vcriw0W5qUeVvIwb1gP0KLqYdIA=",
- "listViewUrl": "/property-to-rent/find.html?sortType=6&areaSizeUnit=sqft&viewType=LIST&channel=RENT&index=48&radius=0.0&locationIdentifier=OUTCODE%5E752",
- "mapViewUrl": "/property-to-rent/map.html?sortType=6&areaSizeUnit=sqft&viewType=MAP&channel=RENT&index=48&radius=0.0&locationIdentifier=OUTCODE%5E752"
-}
diff --git a/finder/scraper.py b/finder/scraper.py
index a06c354..6eb6eee 100644
--- a/finder/scraper.py
+++ b/finder/scraper.py
@@ -1,127 +1,118 @@
-import json
import logging
-import random
-import threading
+import re
import time
-from concurrent.futures import ThreadPoolExecutor
-from dataclasses import dataclass, field
+from pathlib import Path
+from typing import Iterable
import polars as pl
-import httpx
-
from constants import (
ARCGIS_PATH,
CHANNELS,
- CHECKPOINT_INTERVAL,
DATA_DIR,
DELAY_BETWEEN_OUTCODES,
- HOMECOUK_CONCURRENCY,
- RELOAD_URL,
- SCRAPE_HOMECOUK,
- SCRAPE_OPENRENT,
- SCRAPE_RIGHTMOVE,
- SCRAPE_ZOOPLA,
- SEED,
+ LONDON_OUTCODE_PREFIXES,
)
+
from homecouk import CookiesExpiredError
from homecouk import load_cookies as load_homecouk_cookies
from homecouk import make_client as make_homecouk_client
from homecouk import search_outcode as homecouk_search_outcode
from http_client import make_client
-from metrics import (
- cookie_refreshes_total,
- cross_source_dedup_total,
- homecouk_enabled,
- openrent_enabled,
- scrape_elapsed_seconds,
- scrape_errors_total,
- scrape_outcodes_done,
- scrape_outcodes_total,
- scrape_properties_total,
- scrape_state,
- zoopla_enabled,
-)
-from openrent import WafChallengeError
-from openrent import load_cookies as load_openrent_cookies
-from openrent import make_client as make_openrent_client
-from openrent import search_outcode as openrent_search_outcode
-from rightmove import resolve_outcode_id, search_outcode
+from rightmove import resolve_outcode_id
+from rightmove import search_outcode as rightmove_search_outcode
+from spatial import PostcodeSpatialIndex
+from storage import write_parquet
from zoopla import TurnstileError
from zoopla import launch_browser as launch_zoopla_browser
from zoopla import search_outcode as zoopla_search_outcode
-from spatial import PostcodeSpatialIndex
-from storage import write_parquet
log = logging.getLogger("rightmove")
-
-@dataclass
-class ScrapeStatus:
- state: str = "idle" # idle | running | done | error
- channel: str = ""
- outcode: str = ""
- outcodes_done: int = 0
- outcodes_total: int = 0
- properties_buy: int = 0
- properties_rent: int = 0
- # Per-source counts (combined across channels)
- rm_properties: int = 0
- hk_properties: int = 0
- or_properties: int = 0
- zp_properties: int = 0
- errors: list[str] = field(default_factory=list)
- started_at: float = 0.0
- finished_at: float = 0.0
+SOURCE_ORDER = ("rightmove", "homecouk", "zoopla")
+SALE_CHANNEL = CHANNELS[0]
+LONDON_AREAS = sorted({prefix.upper() for prefix in LONDON_OUTCODE_PREFIXES})
+OUTCODE_RE = re.compile(r"^([A-Z]{1,2}\d[A-Z0-9]?)")
-status = ScrapeStatus()
-status_lock = threading.Lock()
+def _arcgis_columns() -> tuple[str, str]:
+ """Return postcode and country column names for supported ARCGIS schemas."""
+ columns = set(pl.scan_parquet(ARCGIS_PATH).collect_schema().names())
-
-def _sync_gauges() -> None:
- """Push current ScrapeStatus values into Prometheus gauges. Must hold status_lock."""
- for state in ("idle", "running", "done", "error"):
- scrape_state.labels(state=state).set(1 if status.state == state else 0)
- scrape_outcodes_done.set(status.outcodes_done)
- scrape_outcodes_total.set(status.outcodes_total)
- scrape_properties_total.labels(channel="buy", source="total").set(
- status.properties_buy
- )
- scrape_properties_total.labels(channel="rent", source="total").set(
- status.properties_rent
- )
- # Per-source totals (across both channels)
- for ch in ("buy", "rent"):
- scrape_properties_total.labels(channel=ch, source="rightmove").set(
- status.rm_properties
- )
- scrape_properties_total.labels(channel=ch, source="homecouk").set(
- status.hk_properties
- )
- scrape_properties_total.labels(channel=ch, source="openrent").set(
- status.or_properties
- )
- scrape_properties_total.labels(channel=ch, source="zoopla").set(
- status.zp_properties
- )
- if status.started_at:
- end = status.finished_at if status.finished_at else time.time()
- scrape_elapsed_seconds.set(end - status.started_at)
+ if "pcd" in columns:
+ postcode_col = "pcd"
+ elif "pcds" in columns:
+ postcode_col = "pcds"
else:
- scrape_elapsed_seconds.set(0)
+ raise ValueError(f"{ARCGIS_PATH} has no supported postcode column")
+
+ if "ctry" in columns:
+ country_col = "ctry"
+ elif "ctry25cd" in columns:
+ country_col = "ctry25cd"
+ else:
+ raise ValueError(f"{ARCGIS_PATH} has no supported country column")
+
+ return postcode_col, country_col
+
+
+def _normalize_postcode(postcode: str) -> str:
+ compact = "".join(str(postcode).upper().split())
+ if len(compact) < 5:
+ return compact
+ return compact[:-3] + " " + compact[-3:]
+
+
+def _londonish_postcode_expr(postcode_col: str) -> pl.Expr:
+ return (
+ pl.col(postcode_col)
+ .str.to_uppercase()
+ .str.extract(r"^([A-Z]{1,2})", 1)
+ .is_in(LONDON_AREAS)
+ )
+
+
+def _outcode_area(outcode: str) -> str:
+ chars = []
+ for ch in outcode.upper():
+ if not ch.isalpha():
+ break
+ chars.append(ch)
+ return "".join(chars)
+
+
+def is_londonish_outcode(outcode: str) -> bool:
+ normalized = outcode.upper()
+ return normalized in LONDON_AREAS or _outcode_area(normalized) in LONDON_AREAS
+
+
+def _property_is_londonish(prop: dict) -> bool:
+ postcode = str(prop.get("Postcode") or "").upper().strip()
+ match = OUTCODE_RE.match(postcode)
+ return bool(match and is_londonish_outcode(match.group(1)))
+
+
+def filter_londonish_outcodes(outcodes: Iterable[str]) -> list[str]:
+ return sorted(
+ {outcode.upper() for outcode in outcodes if is_londonish_outcode(outcode)}
+ )
def load_outcodes() -> list[str]:
- """Load England-only outcodes from arcgis parquet."""
+ """Load England outcodes from ARCGIS and keep only Greater London-ish areas."""
log.info("Loading outcodes from %s", ARCGIS_PATH)
- df = pl.read_parquet(ARCGIS_PATH, columns=["pcd", "ctry", "lat", "long"])
- england = df.filter(pl.col("ctry") == "E92000001")
- log.info("England postcodes: %d", len(england))
+ postcode_col, country_col = _arcgis_columns()
+ df = pl.read_parquet(ARCGIS_PATH, columns=[postcode_col, country_col])
+ england = df.filter(
+ (pl.col(country_col) == "E92000001")
+ & _londonish_postcode_expr(postcode_col)
+ )
outcodes = (
england.select(
- pl.col("pcd").str.extract(r"^([A-Z]{1,2}\d[A-Z0-9]?)", 1).alias("outcode")
+ pl.col(postcode_col)
+ .str.extract(r"^([A-Z]{1,2}\d[A-Z0-9]?)", 1)
+ .alias("outcode")
)
.drop_nulls()
.get_column("outcode")
@@ -129,865 +120,461 @@ def load_outcodes() -> list[str]:
.sort()
.to_list()
)
- log.info("Unique England outcodes: %d", len(outcodes))
- return outcodes
+ londonish = filter_londonish_outcodes(outcodes)
+ log.info("Greater London-ish outcodes: %d", len(londonish))
+ return londonish
def build_postcode_index() -> PostcodeSpatialIndex:
- """Build spatial index from arcgis England postcodes."""
+ """Build spatial index from ARCGIS England postcodes."""
log.info("Building postcode spatial index from %s", ARCGIS_PATH)
- df = pl.read_parquet(ARCGIS_PATH, columns=["pcd", "ctry", "lat", "long"])
- england = df.filter(pl.col("ctry") == "E92000001").drop_nulls(
+ postcode_col, country_col = _arcgis_columns()
+ df = pl.read_parquet(
+ ARCGIS_PATH, columns=[postcode_col, country_col, "lat", "long"]
+ )
+ england = df.filter(
+ (pl.col(country_col) == "E92000001")
+ & _londonish_postcode_expr(postcode_col)
+ ).drop_nulls(
subset=["lat", "long"]
)
return PostcodeSpatialIndex(
england.get_column("lat").to_list(),
england.get_column("long").to_list(),
- england.get_column("pcd").to_list(),
+ [
+ _normalize_postcode(pcd)
+ for pcd in england.get_column(postcode_col).to_list()
+ ],
)
def build_postcode_coords() -> dict[str, tuple[float, float]]:
- """Build postcode → (lat, lng) lookup from arcgis England postcodes.
- Used by OpenRent scraper to resolve coordinates from postcodes."""
+ """Build postcode -> (lat, lng) lookup from ARCGIS England postcodes."""
log.info("Building postcode coords lookup from %s", ARCGIS_PATH)
- df = pl.read_parquet(ARCGIS_PATH, columns=["pcd", "ctry", "lat", "long"])
- england = df.filter(pl.col("ctry") == "E92000001").drop_nulls(
+ postcode_col, country_col = _arcgis_columns()
+ df = pl.read_parquet(
+ ARCGIS_PATH, columns=[postcode_col, country_col, "lat", "long"]
+ )
+ england = df.filter(
+ (pl.col(country_col) == "E92000001")
+ & _londonish_postcode_expr(postcode_col)
+ ).drop_nulls(
subset=["lat", "long"]
)
coords: dict[str, tuple[float, float]] = {}
for pcd, lat, lng in zip(
- england.get_column("pcd").to_list(),
+ england.get_column(postcode_col).to_list(),
england.get_column("lat").to_list(),
england.get_column("long").to_list(),
):
- coords[pcd] = (lat, lng)
+ coords[_normalize_postcode(pcd)] = (lat, lng)
log.info("Postcode coords lookup: %d postcodes", len(coords))
return coords
-def _fmt_elapsed(seconds: float) -> str:
- """Format seconds as e.g. '2h13m' or '5m32s'."""
- h, rem = divmod(int(seconds), 3600)
- m, s = divmod(rem, 60)
- if h:
- return f"{h}h{m:02d}m"
- return f"{m}m{s:02d}s"
+def _source_names(sources: str | Iterable[str] | None) -> list[str]:
+ if sources is None:
+ return list(SOURCE_ORDER)
+ if isinstance(sources, str):
+ requested = [part.strip().lower() for part in sources.split(",")]
+ else:
+ requested = [str(source).strip().lower() for source in sources]
+
+ requested = [source for source in requested if source]
+ if "all" in requested:
+ return list(SOURCE_ORDER)
+ unknown = sorted(set(requested) - set(SOURCE_ORDER))
+ if unknown:
+ raise ValueError(f"Unknown source(s): {', '.join(unknown)}")
+ return [source for source in SOURCE_ORDER if source in requested]
-def _dedup_key(p: dict) -> tuple:
- """Composite key for cross-source deduplication: (postcode, bedrooms, price).
- Two listings on different portals for the same physical property will share
- these attributes even though their IDs differ."""
- return (p.get("Postcode", ""), p.get("Bedrooms", 0), p.get("price", 0))
+def _dedup_key(prop: dict) -> tuple:
+ return (prop.get("Postcode", ""), prop.get("Bedrooms", 0), prop.get("price", 0))
-class _Progress:
- """Thread-safe progress tracker for parallel source workers."""
-
- def __init__(self):
- self._counts: dict[str, int] = {}
- self._lock = threading.Lock()
-
- def update(self, source: str, done: int) -> None:
- with self._lock:
- self._counts[source] = done
-
- def snapshot(self) -> dict[str, int]:
- with self._lock:
- return dict(self._counts)
-
-
-def _merge_channel(
- rm_props: list[dict],
- hk_props: list[dict],
- or_props: list[dict],
- zp_props: list[dict],
-) -> tuple[dict[str, dict], dict[str, int], int]:
- """Merge properties from all sources for one channel with cross-source dedup.
-
- Rightmove has priority; other sources are checked for duplicates.
- Returns (all_properties_by_id, per_source_counts, total_dedup_count).
- """
- all_properties: dict[str, dict] = {}
+def _merge_properties(source_results: dict[str, list[dict]]) -> tuple[list[dict], dict, int]:
+ merged: dict[str, dict] = {}
seen_keys: set[tuple] = set()
- counts = {"rm": 0, "hk": 0, "or": 0, "zp": 0}
- total_dedup = 0
+ counts = {source: 0 for source in SOURCE_ORDER}
+ deduped = 0
- # Rightmove first (priority source)
- for p in rm_props:
- pid = p["id"]
- if pid not in all_properties:
- all_properties[pid] = p
- seen_keys.add(_dedup_key(p))
- counts["rm"] += 1
-
- # Other sources (check for cross-source duplicates)
- for source, props in [("hk", hk_props), ("or", or_props), ("zp", zp_props)]:
- for p in props:
- pid = p["id"]
- key = _dedup_key(p)
- if pid in all_properties or key in seen_keys:
- total_dedup += 1
+ for source in SOURCE_ORDER:
+ for prop in source_results.get(source, []):
+ prop_id = prop.get("id")
+ key = _dedup_key(prop)
+ if (prop_id is not None and prop_id in merged) or key in seen_keys:
+ deduped += 1
continue
- all_properties[pid] = p
+ storage_key = prop_id if prop_id is not None else f"{source}:{len(merged)}"
+ merged[storage_key] = prop
seen_keys.add(key)
counts[source] += 1
- return all_properties, counts, total_dedup
+ return list(merged.values()), counts, deduped
-# ---------------------------------------------------------------------------
-# Checkpointing — save/resume partial results across crashes
-# ---------------------------------------------------------------------------
+def _source_total(
+ results: dict[str, list[dict]],
+ source: str,
+) -> int:
+ return len(results[source])
-def _checkpoint_meta_path():
- return DATA_DIR / "checkpoint.json"
+def _source_remaining(
+ results: dict[str, list[dict]],
+ source: str,
+ max_properties_per_source: int | None,
+) -> int | None:
+ if max_properties_per_source is None:
+ return None
+ return max(max_properties_per_source - _source_total(results, source), 0)
-def _checkpoint_results_path(source: str, channel: str):
- return DATA_DIR / f"checkpoint_{source}_{channel}.json"
+def _store_properties(
+ results: dict[str, list[dict]],
+ source: str,
+ props: list[dict],
+ max_properties_per_source: int | None,
+) -> int:
+ remaining = _source_remaining(results, source, max_properties_per_source)
+ if remaining == 0:
+ return 0
+
+ eligible = [prop for prop in props if _property_is_londonish(prop)]
+ dropped = len(props) - len(eligible)
+ if dropped:
+ log.debug(
+ "%s dropped %d properties outside the Greater London-ish postcode filter",
+ source,
+ dropped,
+ )
+
+ selected = eligible if remaining is None else eligible[:remaining]
+ results[source].extend(selected)
+ return len(selected)
-def _save_checkpoint(
- shuffled: list[str],
- progress: _Progress,
- source_results: dict[str, dict[str, list]],
- active_sources: list[str],
+def _record_error(
+ errors: list[str], source: str, outcode: str, exc: Exception
) -> None:
- """Save per-source progress indices and partial results to disk.
+ detail = " ".join(str(exc).split())
+ if len(detail) > 300:
+ detail = f"{detail[:300]}..."
+ message = f"{source} {outcode}: {detail}"
+ errors.append(message)
+ log.warning(message)
- Writes atomically (temp + rename) so a crash mid-write leaves the previous
- checkpoint intact.
- """
- snap = progress.snapshot()
- meta = {
- "seed": SEED,
- "num_outcodes": len(shuffled),
- "sources": {s: snap.get(s, 0) for s in active_sources},
- "timestamp": time.time(),
- }
+def _launch_zoopla_with_retries(attempts: int = 3):
+ last_error: Exception | None = None
+ for attempt in range(1, attempts + 1):
+ try:
+ return launch_zoopla_browser()
+ except Exception as exc:
+ last_error = exc
+ log.warning(
+ "Zoopla browser launch failed (%d/%d): %s",
+ attempt,
+ attempts,
+ exc,
+ )
+ time.sleep(5)
- # Write result files per source per channel
- for source in active_sources:
- results = source_results.get(source, {})
- for ch_key in ("BUY", "RENT"):
- props = results.get(ch_key, [])
- path = _checkpoint_results_path(source, ch_key.lower())
- tmp = path.with_suffix(".tmp")
- try:
- with open(tmp, "w") as f:
- json.dump(props, f, default=str)
- tmp.rename(path)
- except Exception as e:
- log.warning("Failed to write checkpoint %s: %s", path.name, e)
+ assert last_error is not None
+ raise last_error
- # Write metadata atomically
- tmp = _checkpoint_meta_path().with_suffix(".tmp")
+
+def _new_homecouk_client():
+ cookie_data = load_homecouk_cookies()
+ if not cookie_data:
+ return None
+ return make_homecouk_client(*cookie_data)
+
+
+def _scrape_rightmove(
+ outcodes: list[str],
+ pc_index: PostcodeSpatialIndex,
+ results: dict[str, list[dict]],
+ errors: list[str],
+ max_properties_per_source: int | None,
+) -> None:
+ client = make_client()
try:
- with open(tmp, "w") as f:
- json.dump(meta, f)
- tmp.rename(_checkpoint_meta_path())
- except Exception as e:
- log.warning("Failed to write checkpoint metadata: %s", e)
+ for outcode in outcodes:
+ if _source_remaining(results, "rightmove", max_properties_per_source) == 0:
+ log.info("Rightmove cap reached")
+ return
+
+ try:
+ outcode_id = resolve_outcode_id(client, outcode)
+ except Exception as exc:
+ _record_error(errors, "rightmove", outcode, exc)
+ time.sleep(DELAY_BETWEEN_OUTCODES)
+ continue
+
+ if not outcode_id:
+ log.debug("No Rightmove outcode ID for %s", outcode)
+ time.sleep(DELAY_BETWEEN_OUTCODES)
+ continue
+
+ remaining = _source_remaining(
+ results, "rightmove", max_properties_per_source
+ )
+ if remaining == 0:
+ log.info("Rightmove cap reached")
+ return
+
+ try:
+ props = rightmove_search_outcode(
+ client,
+ outcode_id,
+ outcode,
+ SALE_CHANNEL,
+ pc_index,
+ max_properties=remaining,
+ )
+ added = _store_properties(
+ results,
+ "rightmove",
+ props,
+ max_properties_per_source,
+ )
+ log.info("Rightmove %s: +%d", outcode, added)
+ except Exception as exc:
+ _record_error(errors, "rightmove", outcode, exc)
+
+ time.sleep(DELAY_BETWEEN_OUTCODES)
+ finally:
+ client.close()
+
+
+def _scrape_homecouk(
+ outcodes: list[str],
+ pc_index: PostcodeSpatialIndex,
+ results: dict[str, list[dict]],
+ errors: list[str],
+ max_properties_per_source: int | None,
+) -> None:
+ client = _new_homecouk_client()
+ if client is None:
+ log.warning("home.co.uk skipped: could not bootstrap a local session")
return
- total = sum(len(source_results.get(s, {}).get(ch, []))
- for s in active_sources for ch in ("BUY", "RENT"))
- log.info(
- "Checkpoint saved: %s (%d properties)",
- {s: snap.get(s, 0) for s in active_sources},
- total,
- )
-
-
-def _load_checkpoint(
- shuffled: list[str],
-) -> tuple[dict[str, int], dict[str, dict[str, list]]] | None:
- """Load checkpoint if it exists and matches the current outcode list.
-
- Returns (start_indices, loaded_results) or None if no valid checkpoint.
- """
- path = _checkpoint_meta_path()
- if not path.exists():
- return None
-
try:
- with open(path) as f:
- meta = json.load(f)
- except Exception:
- log.warning("Checkpoint file corrupt, starting fresh")
- _clear_checkpoint()
- return None
+ for outcode in outcodes:
+ if _source_remaining(results, "homecouk", max_properties_per_source) == 0:
+ log.info("home.co.uk cap reached")
+ return
- if meta.get("seed") != SEED or meta.get("num_outcodes") != len(shuffled):
- log.info("Checkpoint from different run configuration, discarding")
- _clear_checkpoint()
- return None
+ remaining = _source_remaining(
+ results, "homecouk", max_properties_per_source
+ )
+ if remaining == 0:
+ log.info("home.co.uk cap reached")
+ return
- start_indices: dict[str, int] = {}
- loaded_results: dict[str, dict[str, list]] = {}
-
- for source, completed in meta.get("sources", {}).items():
- start_indices[source] = completed
- loaded_results[source] = {"BUY": [], "RENT": []}
- for channel in ("buy", "rent"):
- rpath = _checkpoint_results_path(source, channel)
- if rpath.exists():
+ for attempt in range(2):
try:
- with open(rpath) as f:
- raw = json.load(f)
- # Deduplicate by ID — concurrent workers (e.g. hk_worker's
- # ThreadPoolExecutor) can cause in-flight outcodes to have
- # results saved before their progress index is recorded.
- # On resume those outcodes get re-scraped, duplicating results.
- seen_ids: set[str] = set()
- deduped: list[dict] = []
- for p in raw:
- pid = p.get("id")
- if pid not in seen_ids:
- seen_ids.add(pid)
- deduped.append(p)
- if len(deduped) < len(raw):
- log.info(
- "Checkpoint %s/%s: deduped %d → %d (removed %d dupes)",
- source, channel, len(raw), len(deduped),
- len(raw) - len(deduped),
- )
- loaded_results[source][channel.upper()] = deduped
- except Exception:
- log.warning(
- "Checkpoint results for %s/%s corrupt, restarting %s",
- source, channel, source,
+ props = homecouk_search_outcode(
+ client,
+ outcode,
+ pc_index,
+ max_properties=remaining,
)
- start_indices[source] = 0
- loaded_results[source] = {"BUY": [], "RENT": []}
+ added = _store_properties(
+ results,
+ "homecouk",
+ props,
+ max_properties_per_source,
+ )
+ log.info("home.co.uk %s: +%d", outcode, added)
+ break
+ except CookiesExpiredError as exc:
+ if attempt == 1:
+ _record_error(errors, "homecouk", outcode, exc)
+ break
+
+ log.warning(
+ "home.co.uk cookies expired at %s; refreshing local session",
+ outcode,
+ )
+ try:
+ client.close()
+ except Exception:
+ pass
+ client = _new_homecouk_client()
+ if client is None:
+ _record_error(
+ errors,
+ "homecouk",
+ outcode,
+ RuntimeError("could not refresh local session"),
+ )
+ return
+ except Exception as exc:
+ _record_error(errors, "homecouk", outcode, exc)
break
- elapsed_since = time.time() - meta.get("timestamp", 0)
- log.info(
- "Resuming from checkpoint (saved %.0fm ago): %s",
- elapsed_since / 60,
- start_indices,
- )
- return start_indices, loaded_results
+ time.sleep(DELAY_BETWEEN_OUTCODES)
+ finally:
+ client.close()
-def _clear_checkpoint() -> None:
- """Remove all checkpoint files after successful completion."""
- for path in DATA_DIR.glob("checkpoint*"):
- try:
- path.unlink()
- except Exception:
- pass
+def _scrape_zoopla(
+ outcodes: list[str],
+ pc_index: PostcodeSpatialIndex,
+ pc_coords: dict[str, tuple[float, float]],
+ results: dict[str, list[dict]],
+ errors: list[str],
+ max_properties_per_source: int | None,
+) -> None:
+ try:
+ browser, page = _launch_zoopla_with_retries()
+ except Exception as exc:
+ errors.append(f"zoopla: browser launch failed: {exc}")
+ log.warning("Zoopla skipped: browser launch failed: %s", exc)
+ return
+
+ try:
+ for outcode in outcodes:
+ if _source_remaining(results, "zoopla", max_properties_per_source) == 0:
+ log.info("Zoopla cap reached")
+ return
+
+ remaining = _source_remaining(results, "zoopla", max_properties_per_source)
+ if remaining == 0:
+ log.info("Zoopla cap reached")
+ return
+
+ for attempt in range(2):
+ try:
+ props, _ = zoopla_search_outcode(
+ page,
+ outcode,
+ pc_index,
+ pc_coords,
+ max_properties=remaining,
+ )
+ added = _store_properties(
+ results,
+ "zoopla",
+ props,
+ max_properties_per_source,
+ )
+ log.info("Zoopla %s: +%d", outcode, added)
+ break
+ except Exception as exc:
+ if attempt == 1:
+ _record_error(errors, "zoopla", outcode, exc)
+ if isinstance(exc, TurnstileError):
+ return
+ break
+
+ log.warning("Zoopla %s failed; relaunching browser and retrying", outcode)
+ try:
+ browser.close()
+ except Exception:
+ pass
+ try:
+ browser, page = _launch_zoopla_with_retries()
+ except Exception as relaunch_exc:
+ _record_error(errors, "zoopla", outcode, relaunch_exc)
+ return
+
+ time.sleep(DELAY_BETWEEN_OUTCODES)
+ finally:
+ browser.close()
def run_scrape(
outcodes: list[str],
pc_index: PostcodeSpatialIndex,
pc_coords: dict[str, tuple[float, float]] | None = None,
-) -> None:
- """Main scrape orchestrator — runs all sources in parallel threads.
+ sources: str | Iterable[str] | None = None,
+ output_dir: str | Path | None = None,
+ max_properties_per_source: int | None = None,
+) -> dict:
+ """Run one manual sale-listings scrape and write a parquet output."""
+ selected_sources = _source_names(sources)
+ selected_outcodes = filter_londonish_outcodes(outcodes)
+ if not selected_sources:
+ raise ValueError("No sources selected")
+ if not selected_outcodes:
+ raise ValueError("No Greater London-ish outcodes selected")
- Each source (Rightmove, home.co.uk, OpenRent, Zoopla) gets its own thread
- that iterates all outcodes for both BUY and RENT channels. Results are
- merged with cross-source deduplication after all workers complete.
- """
- global status
- with status_lock:
- status.state = "running"
- status.started_at = time.time()
- status.finished_at = 0.0
- status.errors = []
- status.properties_buy = 0
- status.properties_rent = 0
- status.channel = ""
- status.outcode = ""
- _sync_gauges()
+ output_base = Path(output_dir) if output_dir is not None else DATA_DIR
+ output_base.mkdir(parents=True, exist_ok=True)
- shuffled = list(outcodes)
- random.seed(SEED)
- random.shuffle(shuffled)
-
- if not any([SCRAPE_RIGHTMOVE, SCRAPE_HOMECOUK, SCRAPE_OPENRENT, SCRAPE_ZOOPLA]):
- log.warning("All scrapers disabled — nothing to do")
- with status_lock:
- status.state = "done"
- status.finished_at = time.time()
- _sync_gauges()
- return
-
- if not SCRAPE_RIGHTMOVE:
- log.info("Rightmove scraping DISABLED (SCRAPE_RIGHTMOVE=false)")
- if not SCRAPE_HOMECOUK:
- log.info("home.co.uk scraping DISABLED (SCRAPE_HOMECOUK=false)")
- homecouk_enabled.set(0)
- if not SCRAPE_OPENRENT:
- log.info("OpenRent scraping DISABLED (SCRAPE_OPENRENT=false)")
- openrent_enabled.set(0)
- if not SCRAPE_ZOOPLA:
- log.info("Zoopla scraping DISABLED (SCRAPE_ZOOPLA=false)")
- zoopla_enabled.set(0)
-
- # Build postcode coords if needed for OpenRent/Zoopla
- if (SCRAPE_OPENRENT or SCRAPE_ZOOPLA) and pc_coords is None:
+ if "zoopla" in selected_sources and pc_coords is None:
pc_coords = build_postcode_coords()
- # Per-source result containers: {channel_name: [properties]}
- # Each list is only written by its owning source thread.
- rm_results: dict[str, list] = {"BUY": [], "RENT": []}
- hk_results: dict[str, list] = {"BUY": [], "RENT": []}
- or_results: dict[str, list] = {"BUY": [], "RENT": []}
- zp_results: dict[str, list] = {"BUY": [], "RENT": []}
-
- progress = _Progress()
-
- # --- Resume from checkpoint if available ---
- start_indices: dict[str, int] = {}
- checkpoint = _load_checkpoint(shuffled)
- if checkpoint:
- start_indices, loaded = checkpoint
- source_to_results = {"rm": rm_results, "hk": hk_results, "or": or_results, "zp": zp_results}
- for src, data in loaded.items():
- if src in source_to_results:
- for ch in ("BUY", "RENT"):
- source_to_results[src][ch] = data.get(ch, [])
- # Reassign in case references changed
- rm_results = source_to_results["rm"]
- hk_results = source_to_results["hk"]
- or_results = source_to_results["or"]
- zp_results = source_to_results["zp"]
- # Pre-set progress for resumed sources
- for src, idx in start_indices.items():
- if idx > 0:
- progress.update(src, idx)
-
- # --- Source worker closures ---
- # Each worker owns its client lifecycle and iterates all outcodes for both
- # channels. On auth failure, it refreshes cookies and continues. On fatal
- # failure, it marks itself as done and returns partial results.
-
- def rm_worker():
- rm_start = start_indices.get("rm", 0)
- if rm_start > 0:
- log.info("Rightmove resuming from outcode %d/%d", rm_start, len(shuffled))
- client = make_client()
- try:
- for i, outcode in enumerate(shuffled):
- if i < rm_start:
- continue
- try:
- outcode_id = resolve_outcode_id(client, outcode)
- except Exception as e:
- log.error("Rightmove %s ID lookup: %s", outcode, e)
- scrape_errors_total.labels(source="rightmove").inc()
- progress.update("rm", i + 1)
- time.sleep(DELAY_BETWEEN_OUTCODES)
- continue
-
- if not outcode_id:
- log.debug("No Rightmove ID for %s, skipping", outcode)
- progress.update("rm", i + 1)
- time.sleep(DELAY_BETWEEN_OUTCODES)
- continue
-
- for ch_cfg in CHANNELS:
- ch = ch_cfg["channel"]
- try:
- props = search_outcode(
- client, outcode_id, outcode, ch_cfg, pc_index
- )
- rm_results[ch].extend(props)
- except Exception as e:
- log.error("Rightmove %s/%s: %s", outcode, ch, e)
- scrape_errors_total.labels(source="rightmove").inc()
-
- progress.update("rm", i + 1)
- time.sleep(DELAY_BETWEEN_OUTCODES)
- except Exception as e:
- log.exception("Fatal Rightmove error: %s", e)
- with status_lock:
- status.errors.append(f"Fatal Rightmove: {e}")
- finally:
- client.close()
-
- def hk_worker():
- hk_result = load_homecouk_cookies()
- if not hk_result:
- log.info("home.co.uk DISABLED (no cookies available)")
- homecouk_enabled.set(0)
- progress.update("hk", len(shuffled))
- return
- hk_start = start_indices.get("hk", 0)
- if hk_start > 0:
- log.info("home.co.uk resuming from outcode %d/%d", hk_start, len(shuffled))
- log.info(
- "home.co.uk scraping ENABLED (concurrency=%d)", HOMECOUK_CONCURRENCY
- )
- homecouk_enabled.set(1)
-
- # Shared state across pool threads
- cookie_state = {
- "cookies": hk_result[0],
- "user_agent": hk_result[1],
- "generation": 0,
- }
- cookie_lock = threading.Lock()
- results_lock = threading.Lock()
- completed_count = [hk_start]
- disabled = [False]
- _local = threading.local()
-
- def _get_client():
- """Get or create a thread-local curl_cffi session."""
- with cookie_lock:
- gen = cookie_state["generation"]
- cookies = cookie_state["cookies"]
- ua = cookie_state["user_agent"]
- if not hasattr(_local, "client") or _local.gen != gen:
- if hasattr(_local, "client"):
- try:
- _local.client.close()
- except Exception:
- pass
- _local.client = make_homecouk_client(cookies, ua)
- _local.gen = gen
- return _local.client
-
- def _refresh_cookies():
- """Refresh cookies via FlareSolverr. Thread-safe with generation check."""
- with cookie_lock:
- pre_gen = cookie_state["generation"]
- new = load_homecouk_cookies()
- if not new:
- return False
- with cookie_lock:
- if cookie_state["generation"] == pre_gen:
- cookie_state["cookies"] = new[0]
- cookie_state["user_agent"] = new[1]
- cookie_state["generation"] += 1
- cookie_refreshes_total.labels(result="success").inc()
- log.info("home.co.uk cookies refreshed")
- return True
-
- def _scrape_outcode(outcode):
- if disabled[0]:
- return
- client = _get_client()
- for ch_cfg in CHANNELS:
- ch = ch_cfg["channel"]
- if disabled[0]:
- return
- try:
- props = homecouk_search_outcode(
- client, outcode, ch, pc_index
- )
- if props:
- with results_lock:
- hk_results[ch].extend(props)
- log.info(
- "home.co.uk %s: +%d properties", outcode, len(props)
- )
- except CookiesExpiredError:
- log.warning(
- "home.co.uk cookies expired — attempting refresh"
- )
- if _refresh_cookies():
- client = _get_client()
- try:
- props = homecouk_search_outcode(
- client, outcode, ch, pc_index
- )
- if props:
- with results_lock:
- hk_results[ch].extend(props)
- log.info(
- "home.co.uk %s: +%d properties",
- outcode,
- len(props),
- )
- except Exception as e:
- log.error(
- "home.co.uk %s/%s (after refresh): %s",
- outcode,
- ch,
- e,
- )
- scrape_errors_total.labels(source="homecouk").inc()
- else:
- log.warning(
- "Cookie refresh failed, disabling home.co.uk"
- )
- disabled[0] = True
- homecouk_enabled.set(0)
- cookie_refreshes_total.labels(result="failure").inc()
- with status_lock:
- status.errors.append(
- "home.co.uk cookies expired and refresh failed"
- )
- return
- except Exception as e:
- log.error("home.co.uk %s/%s: %s", outcode, ch, e)
- scrape_errors_total.labels(source="homecouk").inc()
-
- with results_lock:
- completed_count[0] += 1
- progress.update("hk", completed_count[0])
- time.sleep(DELAY_BETWEEN_OUTCODES)
-
- try:
- work = [oc for i, oc in enumerate(shuffled) if i >= hk_start]
- with ThreadPoolExecutor(
- max_workers=HOMECOUK_CONCURRENCY
- ) as pool:
- list(pool.map(_scrape_outcode, work))
- except Exception as e:
- log.exception("Fatal home.co.uk error: %s", e)
- with status_lock:
- status.errors.append(f"Fatal home.co.uk: {e}")
-
- if disabled[0]:
- progress.update("hk", len(shuffled))
-
- def or_worker():
- or_result = load_openrent_cookies()
- if not or_result:
- log.info("OpenRent DISABLED (no cookies available)")
- openrent_enabled.set(0)
- progress.update("or", len(shuffled))
- return
- or_start = start_indices.get("or", 0)
- if or_start > 0:
- log.info("OpenRent resuming from outcode %d/%d", or_start, len(shuffled))
- client = make_openrent_client(*or_result)
- log.info("OpenRent scraping ENABLED")
- openrent_enabled.set(1)
- try:
- for i, outcode in enumerate(shuffled):
- if i < or_start:
- continue
- # OpenRent is RENT-only
- try:
- props = openrent_search_outcode(
- client, outcode, pc_index, pc_coords
- )
- or_results["RENT"].extend(props)
- if props:
- log.info("OpenRent %s: +%d properties", outcode, len(props))
- except WafChallengeError:
- log.warning(
- "OpenRent WAF cookies expired — attempting refresh"
- )
- client.close()
- or_new = load_openrent_cookies()
- if or_new:
- client = make_openrent_client(*or_new)
- log.info("OpenRent cookies refreshed, continuing")
- cookie_refreshes_total.labels(result="success").inc()
- else:
- log.warning(
- "Cookie refresh failed, disabling OpenRent"
- )
- openrent_enabled.set(0)
- cookie_refreshes_total.labels(result="failure").inc()
- with status_lock:
- status.errors.append(
- "OpenRent WAF cookies expired and refresh failed"
- )
- progress.update("or", len(shuffled))
- return
- except Exception as e:
- log.error("OpenRent %s: %s", outcode, e)
- scrape_errors_total.labels(source="openrent").inc()
-
- progress.update("or", i + 1)
- time.sleep(DELAY_BETWEEN_OUTCODES)
- except Exception as e:
- log.exception("Fatal OpenRent error: %s", e)
- with status_lock:
- status.errors.append(f"Fatal OpenRent: {e}")
- finally:
- try:
- client.close()
- except Exception:
- pass
-
- def zp_worker():
- try:
- browser, page = launch_zoopla_browser()
- log.info("Zoopla scraping ENABLED (Camoufox browser launched)")
- zoopla_enabled.set(1)
- except TurnstileError:
- log.warning("Zoopla Cloudflare Turnstile failed — disabling Zoopla")
- zoopla_enabled.set(0)
- progress.update("zp", len(shuffled))
- return
- except Exception as e:
- log.warning("Zoopla browser launch failed: %s — disabling Zoopla", e)
- zoopla_enabled.set(0)
- progress.update("zp", len(shuffled))
- return
-
- zp_start = start_indices.get("zp", 0)
- if zp_start > 0:
- log.info("Zoopla resuming from outcode %d/%d", zp_start, len(shuffled))
-
- try:
- for i, outcode in enumerate(shuffled):
- if i < zp_start:
- continue
- search_url = None
- for ch_cfg in CHANNELS:
- ch = ch_cfg["channel"]
- # Build direct URL for second channel by swapping path
- direct_url = None
- if search_url:
- if ch == "BUY":
- direct_url = search_url.replace("/to-rent/", "/for-sale/")
- else:
- direct_url = search_url.replace("/for-sale/", "/to-rent/")
- try:
- props, result_url = zoopla_search_outcode(
- page, outcode, ch, pc_index, pc_coords,
- base_search_url=direct_url,
- )
- if result_url:
- search_url = result_url
- zp_results[ch].extend(props)
- if props:
- log.info("Zoopla %s: +%d properties", outcode, len(props))
- except TurnstileError:
- log.warning(
- "Zoopla Turnstile challenge — relaunching browser"
- )
- try:
- browser.close()
- except Exception:
- pass
- try:
- browser, page = launch_zoopla_browser()
- log.info("Zoopla browser relaunched, continuing")
- except Exception:
- log.warning(
- "Browser relaunch failed, disabling Zoopla"
- )
- zoopla_enabled.set(0)
- with status_lock:
- status.errors.append(
- "Zoopla Cloudflare challenge failed and relaunch failed"
- )
- progress.update("zp", len(shuffled))
- return
- except Exception as e:
- log.error("Zoopla %s/%s: %s", outcode, ch, e)
- scrape_errors_total.labels(source="zoopla").inc()
-
- progress.update("zp", i + 1)
- time.sleep(DELAY_BETWEEN_OUTCODES)
- except Exception as e:
- log.exception("Fatal Zoopla error: %s", e)
- with status_lock:
- status.errors.append(f"Fatal Zoopla: {e}")
- finally:
- try:
- browser.close()
- except Exception:
- pass
-
- # --- Launch worker threads ---
-
- active_sources: list[str] = []
- threads: list[threading.Thread] = []
-
- if SCRAPE_RIGHTMOVE:
- threads.append(threading.Thread(target=rm_worker, name="scrape-rm", daemon=True))
- active_sources.append("rm")
- if SCRAPE_HOMECOUK:
- threads.append(threading.Thread(target=hk_worker, name="scrape-hk", daemon=True))
- active_sources.append("hk")
- if SCRAPE_OPENRENT:
- threads.append(threading.Thread(target=or_worker, name="scrape-or", daemon=True))
- active_sources.append("or")
- if SCRAPE_ZOOPLA:
- threads.append(threading.Thread(target=zp_worker, name="scrape-zp", daemon=True))
- active_sources.append("zp")
+ errors: list[str] = []
+ results = {source: [] for source in SOURCE_ORDER}
+ started_at = time.time()
log.info(
- "=== Starting scrape: %d outcodes, sources: %s ===",
- len(shuffled),
- ", ".join(active_sources),
+ "Starting manual sale scrape: %d outcodes, sources=%s, source_cap=%s",
+ len(selected_outcodes),
+ ",".join(selected_sources),
+ max_properties_per_source,
)
- for t in threads:
- t.start()
+ if "rightmove" in selected_sources:
+ _scrape_rightmove(
+ selected_outcodes,
+ pc_index,
+ results,
+ errors,
+ max_properties_per_source,
+ )
- # --- Monitor progress while workers run ---
+ if "homecouk" in selected_sources:
+ _scrape_homecouk(
+ selected_outcodes,
+ pc_index,
+ results,
+ errors,
+ max_properties_per_source,
+ )
- # Map source names to result dicts for checkpointing
- source_results_map = {
- "rm": rm_results, "hk": hk_results,
- "or": or_results, "zp": zp_results,
+ if "zoopla" in selected_sources:
+ assert pc_coords is not None
+ _scrape_zoopla(
+ selected_outcodes,
+ pc_index,
+ pc_coords,
+ results,
+ errors,
+ max_properties_per_source,
+ )
+
+ merged, source_counts, deduped = _merge_properties(results)
+ output_path = output_base / "online_listings_buy.parquet"
+ write_parquet(merged, output_path)
+
+ counts = {
+ "total": len(merged),
+ "deduped": deduped,
+ "sources": source_counts,
}
+ log.info(
+ "Sale scrape complete: %d unique (rightmove:%d homecouk:%d zoopla:%d deduped:%d)",
+ len(merged),
+ source_counts["rightmove"],
+ source_counts["homecouk"],
+ source_counts["zoopla"],
+ deduped,
+ )
- scrape_start = time.time()
- last_log = 0.0
- last_checkpoint = time.time()
-
- try:
- while any(t.is_alive() for t in threads):
- snap = progress.snapshot()
- min_done = min(
- (snap.get(s, 0) for s in active_sources), default=0
- )
-
- # Count properties across sources (safe: only one thread writes each list)
- total_buy = sum(
- len(r["BUY"]) for r in [rm_results, hk_results, or_results, zp_results]
- )
- total_rent = sum(
- len(r["RENT"]) for r in [rm_results, hk_results, or_results, zp_results]
- )
-
- with status_lock:
- status.outcodes_done = min_done
- status.outcodes_total = len(shuffled)
- status.properties_buy = total_buy
- status.properties_rent = total_rent
- status.rm_properties = len(rm_results["BUY"]) + len(rm_results["RENT"])
- status.hk_properties = len(hk_results["BUY"]) + len(hk_results["RENT"])
- status.or_properties = len(or_results["RENT"])
- status.zp_properties = len(zp_results["BUY"]) + len(zp_results["RENT"])
- _sync_gauges()
-
- now = time.time()
-
- # Log progress every 30 seconds
- if now - last_log >= 30:
- elapsed = now - scrape_start
- per_source = ", ".join(
- f"{s}:{snap.get(s, 0)}" for s in active_sources
- )
- log.info(
- "Progress: %d/%d outcodes (%s), %d buy + %d rent props, %s elapsed",
- min_done,
- len(shuffled),
- per_source,
- total_buy,
- total_rent,
- _fmt_elapsed(elapsed),
- )
- last_log = now
-
- # Save checkpoint periodically
- if now - last_checkpoint >= CHECKPOINT_INTERVAL:
- try:
- _save_checkpoint(
- shuffled, progress, source_results_map, active_sources,
- )
- except Exception as e:
- log.warning("Checkpoint save failed: %s", e)
- last_checkpoint = now
-
- time.sleep(5)
- except Exception as e:
- log.exception("Monitor loop error: %s", e)
-
- # Save final checkpoint before joining (in case merge/write fails)
- try:
- _save_checkpoint(shuffled, progress, source_results_map, active_sources)
- except Exception:
- pass
-
- for t in threads:
- t.join()
-
- log.info("All source workers completed")
-
- # --- Merge results per channel and write parquet ---
-
- try:
- for ch_cfg in CHANNELS:
- ch = ch_cfg["channel"]
- file_suffix = "buy" if ch == "BUY" else "rent"
-
- merged, counts, total_dedup = _merge_channel(
- rm_results[ch],
- hk_results[ch],
- or_results[ch],
- zp_results[ch],
- )
-
- # Update cross-source dedup counter
- ch_label = "buy" if ch == "BUY" else "rent"
- if total_dedup:
- cross_source_dedup_total.labels(channel=ch_label).inc(total_dedup)
-
- deduped = list(merged.values())
- output_path = DATA_DIR / f"online_listings_{file_suffix}.parquet"
- write_parquet(deduped, output_path, channel=file_suffix)
-
- with status_lock:
- if ch == "BUY":
- status.properties_buy = len(deduped)
- else:
- status.properties_rent = len(deduped)
- _sync_gauges()
-
- log.info(
- "=== %s complete: %d unique (rm:%d hk:%d or:%d zp:%d, cross-dedup:%d) ===",
- ch,
- len(deduped),
- counts["rm"],
- counts["hk"],
- counts["or"],
- counts["zp"],
- total_dedup,
- )
-
- # Scrape completed successfully — clear checkpoint
- _clear_checkpoint()
-
- with status_lock:
- status.state = "done"
- status.finished_at = time.time()
- status.outcodes_done = len(shuffled)
- _sync_gauges()
- elapsed = status.finished_at - status.started_at
- log.info(
- "Scrape complete in %s — buy: %d, rent: %d",
- _fmt_elapsed(elapsed),
- status.properties_buy,
- status.properties_rent,
- )
-
- # Trigger server data reload
- if RELOAD_URL:
- try:
- log.info("Triggering server reload at %s", RELOAD_URL)
- resp = httpx.post(RELOAD_URL, timeout=300)
- if resp.is_success:
- body = resp.json()
- log.info(
- "Server reload complete: %d rows, %d features, %dms",
- body.get("rows", 0),
- body.get("features", 0),
- body.get("elapsed_ms", 0),
- )
- else:
- log.warning(
- "Server reload failed (%d): %s",
- resp.status_code,
- resp.text[:200],
- )
- except Exception as e:
- log.warning("Server reload request failed: %s", e)
-
- except Exception as e:
- log.exception("Fatal scrape error during merge/write")
- with status_lock:
- status.state = "error"
- status.errors.append(f"Fatal: {e}")
- status.finished_at = time.time()
- _sync_gauges()
+ return {
+ "outcodes": len(selected_outcodes),
+ "sources": selected_sources,
+ "source_totals": {
+ source: _source_total(results, source) for source in selected_sources
+ },
+ "counts": counts,
+ "path": str(output_path),
+ "errors": errors,
+ "elapsed_seconds": round(time.time() - started_at, 3),
+ }
diff --git a/finder/storage.py b/finder/storage.py
index 30ee9d1..605c39f 100644
--- a/finder/storage.py
+++ b/finder/storage.py
@@ -4,17 +4,14 @@ from pathlib import Path
import polars as pl
-from constants import MAX_BEDROOMS, MAX_RENT_MONTHLY, MIN_RENT_MONTHLY
-from transform import map_property_type, normalize_postcode, normalize_price
+from constants import MAX_BEDROOMS
+from transform import map_property_type, normalize_postcode
log = logging.getLogger("rightmove")
-def write_parquet(properties: list[dict], path: Path, channel: str) -> None:
- """Write properties list to parquet with server-ready column names.
-
- channel: "buy" or "rent"
- """
+def write_parquet(properties: list[dict], path: Path) -> None:
+ """Write sale properties list to parquet with server-ready column names."""
if not properties:
log.warning("No properties to write to %s", path)
return
@@ -69,7 +66,7 @@ def write_parquet(properties: list[dict], path: Path, channel: str) -> None:
dt = dt.astimezone(timezone.utc).replace(tzinfo=None)
listing_dates.append(dt)
except (ValueError, TypeError):
- # Try additional date formats (OpenRent: "DD Month, YYYY", "Today")
+ # Try additional date formats used by scraped listing sources.
parsed = None
stripped = fvd.strip()
lower = stripped.lower()
@@ -93,35 +90,9 @@ def write_parquet(properties: list[dict], path: Path, channel: str) -> None:
else:
listing_dates.append(None)
- # Derive asking price / asking rent based on channel
# Zero prices indicate parsing failures or POA/auction listings — treat as null
- if channel == "buy":
- asking_prices = [p["price"] if p["price"] > 0 else None for p in properties]
- asking_rents = [None] * len(properties)
- listing_statuses = ["For sale"] * len(properties)
- else:
- asking_prices = [None] * len(properties)
- # Normalize to monthly, then apply sanity bounds. Rents outside
- # [MIN_RENT_MONTHLY, MAX_RENT_MONTHLY] are almost always total-stay
- # pricing (short lets), annual rents mislabelled as monthly, or £0
- # placeholders — null them out rather than polluting aggregates.
- rent_outliers = 0
- asking_rents = []
- for p in properties:
- monthly = normalize_price(p["price"], p["price_frequency"])
- if monthly < MIN_RENT_MONTHLY or monthly > MAX_RENT_MONTHLY:
- rent_outliers += 1
- asking_rents.append(None)
- else:
- asking_rents.append(monthly)
- if rent_outliers:
- log.warning(
- "Nulled %d rent outliers outside [£%d, £%d]/month",
- rent_outliers,
- MIN_RENT_MONTHLY,
- MAX_RENT_MONTHLY,
- )
- listing_statuses = ["For rent"] * len(properties)
+ asking_prices = [p["price"] if p["price"] > 0 else None for p in properties]
+ listing_statuses = ["For sale"] * len(properties)
df = pl.DataFrame(
{
@@ -146,7 +117,6 @@ def write_parquet(properties: list[dict], path: Path, channel: str) -> None:
"Listing date": listing_dates,
"Listing status": listing_statuses,
"Asking price": asking_prices,
- "Asking rent (monthly)": asking_rents,
},
schema={
"Bedrooms": pl.Int32,
@@ -166,18 +136,15 @@ def write_parquet(properties: list[dict], path: Path, channel: str) -> None:
"Listing date": pl.Datetime("us"),
"Listing status": pl.Utf8,
"Asking price": pl.Int64,
- "Asking rent (monthly)": pl.Int64,
},
)
- # Derive asking price per sqm for buy listings
- if channel == "buy":
- df = df.with_columns(
- (pl.col("Asking price") / pl.col("Total floor area (sqm)"))
- .round(0)
- .cast(pl.Int32, strict=False)
- .alias("Asking price per sqm"),
- )
+ df = df.with_columns(
+ (pl.col("Asking price") / pl.col("Total floor area (sqm)"))
+ .round(0)
+ .cast(pl.Int32, strict=False)
+ .alias("Asking price per sqm"),
+ )
df.write_parquet(path)
log.info("Wrote %d properties to %s", len(df), path)
diff --git a/finder/transform.py b/finder/transform.py
index 94ec195..4066ed2 100644
--- a/finder/transform.py
+++ b/finder/transform.py
@@ -143,15 +143,6 @@ def normalize_postcode(postcode: str) -> str:
return compact[:-3] + " " + compact[-3:]
-def normalize_price(amount: int, frequency: str) -> int:
- """Normalise price to monthly for rentals (weekly × 52/12, yearly ÷ 12)."""
- if frequency == "weekly":
- return round(amount * 52 / 12)
- if frequency == "yearly":
- return round(amount / 12)
- return amount
-
-
def transform_property(
prop: dict, outcode: str, pc_index: PostcodeSpatialIndex
) -> dict | None:
@@ -170,8 +161,6 @@ def transform_property(
amount = price_obj.get("amount")
if not amount:
return None
- frequency = price_obj.get("frequency", "")
- # Store raw price — normalization to monthly happens once in storage.py
price = int(amount)
if price <= 0:
return None
@@ -221,7 +210,7 @@ def transform_property(
"Property type": map_property_type(sub_type),
"Property sub-type": normalize_sub_type(sub_type),
"price": price,
- "price_frequency": frequency,
+ "price_frequency": "",
"Price qualifier": price_qualifier,
"Total floor area (sqm)": parse_display_size(prop.get("displaySize")),
"Listing URL": RIGHTMOVE_BASE + prop.get("propertyUrl", ""),
diff --git a/finder/uv.lock b/finder/uv.lock
index 2cc4cec..d3d31e9 100644
--- a/finder/uv.lock
+++ b/finder/uv.lock
@@ -24,28 +24,6 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/af/38/9483eb52fc0f00039c684af627f8a8f994a8a99e8eceb869ba93b3fd740b/apify_fingerprint_datapoints-0.11.0-py3-none-any.whl", hash = "sha256:333340ccc3e520f19b5561e95d7abe2b31702e61d34b6247b328c9b8c93fbe1d", size = 726498, upload-time = "2026-03-01T01:00:03.103Z" },
]
-[[package]]
-name = "beautifulsoup4"
-version = "4.14.3"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "soupsieve" },
- { name = "typing-extensions" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/c3/b0/1c6a16426d389813b48d95e26898aff79abbde42ad353958ad95cc8c9b21/beautifulsoup4-4.14.3.tar.gz", hash = "sha256:6292b1c5186d356bba669ef9f7f051757099565ad9ada5dd630bd9de5fa7fb86", size = 627737, upload-time = "2025-11-30T15:08:26.084Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/1a/39/47f9197bdd44df24d67ac8893641e16f386c984a0619ef2ee4c51fbbc019/beautifulsoup4-4.14.3-py3-none-any.whl", hash = "sha256:0918bfe44902e6ad8d57732ba310582e98da931428d231a5ecb9e7c703a735bb", size = 107721, upload-time = "2025-11-30T15:08:24.087Z" },
-]
-
-[[package]]
-name = "blinker"
-version = "1.9.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/21/28/9b3f50ce0e048515135495f198351908d99540d69bfdc8c1d15b73dc55ce/blinker-1.9.0.tar.gz", hash = "sha256:b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d23136d145f5445bf", size = 22460, upload-time = "2024-11-08T17:25:47.436Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/10/cb/f2ad4230dc2eb1a74edf38f1a38b9b52277f75bef262d8908e60d957e13c/blinker-1.9.0-py3-none-any.whl", hash = "sha256:ba0efaa9080b619ff2f3459d1d500c57bddea4a6b424b60a91141db6fd2f08bc", size = 8458, upload-time = "2024-11-08T17:25:46.184Z" },
-]
-
[[package]]
name = "browserforge"
version = "1.2.4"
@@ -295,49 +273,22 @@ name = "finder"
version = "0.1.0"
source = { virtual = "." }
dependencies = [
- { name = "beautifulsoup4" },
{ name = "camoufox" },
{ name = "curl-cffi" },
{ name = "fake-useragent" },
- { name = "flask" },
{ name = "httpx" },
- { name = "lxml" },
{ name = "playwright" },
- { name = "playwright-stealth" },
{ name = "polars" },
- { name = "prometheus-client" },
]
[package.metadata]
requires-dist = [
- { name = "beautifulsoup4" },
{ name = "camoufox", specifier = ">=0.4.11" },
{ name = "curl-cffi" },
{ name = "fake-useragent", specifier = ">=2.2.0" },
- { name = "flask" },
{ name = "httpx" },
- { name = "lxml" },
{ name = "playwright", specifier = ">=1.58.0" },
- { name = "playwright-stealth", specifier = ">=2.0.2" },
{ name = "polars" },
- { name = "prometheus-client" },
-]
-
-[[package]]
-name = "flask"
-version = "3.1.3"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "blinker" },
- { name = "click" },
- { name = "itsdangerous" },
- { name = "jinja2" },
- { name = "markupsafe" },
- { name = "werkzeug" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/26/00/35d85dcce6c57fdc871f3867d465d780f302a175ea360f62533f12b27e2b/flask-3.1.3.tar.gz", hash = "sha256:0ef0e52b8a9cd932855379197dd8f94047b359ca0a78695144304cb45f87c9eb", size = 759004, upload-time = "2026-02-19T05:00:57.678Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/7f/9c/34f6962f9b9e9c71f6e5ed806e0d0ff03c9d1b0b2340088a0cf4bce09b18/flask-3.1.3-py3-none-any.whl", hash = "sha256:f4bcbefc124291925f1a26446da31a5178f9483862233b23c0c96a20701f670c", size = 103424, upload-time = "2026-02-19T05:00:56.027Z" },
]
[[package]]
@@ -429,27 +380,6 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" },
]
-[[package]]
-name = "itsdangerous"
-version = "2.2.0"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/9c/cb/8ac0172223afbccb63986cc25049b154ecfb5e85932587206f42317be31d/itsdangerous-2.2.0.tar.gz", hash = "sha256:e0050c0b7da1eea53ffaf149c0cfbb5c6e2e2b69c4bef22c81fa6eb73e5f6173", size = 54410, upload-time = "2024-04-16T21:28:15.614Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/04/96/92447566d16df59b2a776c0fb82dbc4d9e07cd95062562af01e408583fc4/itsdangerous-2.2.0-py3-none-any.whl", hash = "sha256:c6242fc49e35958c8b15141343aa660db5fc54d4f13a1db01a3f5891b98700ef", size = 16234, upload-time = "2024-04-16T21:28:14.499Z" },
-]
-
-[[package]]
-name = "jinja2"
-version = "3.1.6"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "markupsafe" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" },
-]
-
[[package]]
name = "language-tags"
version = "1.2.0"
@@ -539,69 +469,6 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/92/aa/df863bcc39c5e0946263454aba394de8a9084dbaff8ad143846b0d844739/lxml-6.0.2-cp314-cp314t-win_arm64.whl", hash = "sha256:bb4c1847b303835d89d785a18801a883436cdfd5dc3d62947f9c49e24f0f5a2c", size = 3822205, upload-time = "2025-09-22T04:03:36.249Z" },
]
-[[package]]
-name = "markupsafe"
-version = "3.0.3"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/7e/99/7690b6d4034fffd95959cbe0c02de8deb3098cc577c67bb6a24fe5d7caa7/markupsafe-3.0.3.tar.gz", hash = "sha256:722695808f4b6457b320fdc131280796bdceb04ab50fe1795cd540799ebe1698", size = 80313, upload-time = "2025-09-27T18:37:40.426Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/5a/72/147da192e38635ada20e0a2e1a51cf8823d2119ce8883f7053879c2199b5/markupsafe-3.0.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d53197da72cc091b024dd97249dfc7794d6a56530370992a5e1a08983ad9230e", size = 11615, upload-time = "2025-09-27T18:36:30.854Z" },
- { url = "https://files.pythonhosted.org/packages/9a/81/7e4e08678a1f98521201c3079f77db69fb552acd56067661f8c2f534a718/markupsafe-3.0.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1872df69a4de6aead3491198eaf13810b565bdbeec3ae2dc8780f14458ec73ce", size = 12020, upload-time = "2025-09-27T18:36:31.971Z" },
- { url = "https://files.pythonhosted.org/packages/1e/2c/799f4742efc39633a1b54a92eec4082e4f815314869865d876824c257c1e/markupsafe-3.0.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3a7e8ae81ae39e62a41ec302f972ba6ae23a5c5396c8e60113e9066ef893da0d", size = 24332, upload-time = "2025-09-27T18:36:32.813Z" },
- { url = "https://files.pythonhosted.org/packages/3c/2e/8d0c2ab90a8c1d9a24f0399058ab8519a3279d1bd4289511d74e909f060e/markupsafe-3.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d6dd0be5b5b189d31db7cda48b91d7e0a9795f31430b7f271219ab30f1d3ac9d", size = 22947, upload-time = "2025-09-27T18:36:33.86Z" },
- { url = "https://files.pythonhosted.org/packages/2c/54/887f3092a85238093a0b2154bd629c89444f395618842e8b0c41783898ea/markupsafe-3.0.3-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:94c6f0bb423f739146aec64595853541634bde58b2135f27f61c1ffd1cd4d16a", size = 21962, upload-time = "2025-09-27T18:36:35.099Z" },
- { url = "https://files.pythonhosted.org/packages/c9/2f/336b8c7b6f4a4d95e91119dc8521402461b74a485558d8f238a68312f11c/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:be8813b57049a7dc738189df53d69395eba14fb99345e0a5994914a3864c8a4b", size = 23760, upload-time = "2025-09-27T18:36:36.001Z" },
- { url = "https://files.pythonhosted.org/packages/32/43/67935f2b7e4982ffb50a4d169b724d74b62a3964bc1a9a527f5ac4f1ee2b/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:83891d0e9fb81a825d9a6d61e3f07550ca70a076484292a70fde82c4b807286f", size = 21529, upload-time = "2025-09-27T18:36:36.906Z" },
- { url = "https://files.pythonhosted.org/packages/89/e0/4486f11e51bbba8b0c041098859e869e304d1c261e59244baa3d295d47b7/markupsafe-3.0.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:77f0643abe7495da77fb436f50f8dab76dbc6e5fd25d39589a0f1fe6548bfa2b", size = 23015, upload-time = "2025-09-27T18:36:37.868Z" },
- { url = "https://files.pythonhosted.org/packages/2f/e1/78ee7a023dac597a5825441ebd17170785a9dab23de95d2c7508ade94e0e/markupsafe-3.0.3-cp312-cp312-win32.whl", hash = "sha256:d88b440e37a16e651bda4c7c2b930eb586fd15ca7406cb39e211fcff3bf3017d", size = 14540, upload-time = "2025-09-27T18:36:38.761Z" },
- { url = "https://files.pythonhosted.org/packages/aa/5b/bec5aa9bbbb2c946ca2733ef9c4ca91c91b6a24580193e891b5f7dbe8e1e/markupsafe-3.0.3-cp312-cp312-win_amd64.whl", hash = "sha256:26a5784ded40c9e318cfc2bdb30fe164bdb8665ded9cd64d500a34fb42067b1c", size = 15105, upload-time = "2025-09-27T18:36:39.701Z" },
- { url = "https://files.pythonhosted.org/packages/e5/f1/216fc1bbfd74011693a4fd837e7026152e89c4bcf3e77b6692fba9923123/markupsafe-3.0.3-cp312-cp312-win_arm64.whl", hash = "sha256:35add3b638a5d900e807944a078b51922212fb3dedb01633a8defc4b01a3c85f", size = 13906, upload-time = "2025-09-27T18:36:40.689Z" },
- { url = "https://files.pythonhosted.org/packages/38/2f/907b9c7bbba283e68f20259574b13d005c121a0fa4c175f9bed27c4597ff/markupsafe-3.0.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e1cf1972137e83c5d4c136c43ced9ac51d0e124706ee1c8aa8532c1287fa8795", size = 11622, upload-time = "2025-09-27T18:36:41.777Z" },
- { url = "https://files.pythonhosted.org/packages/9c/d9/5f7756922cdd676869eca1c4e3c0cd0df60ed30199ffd775e319089cb3ed/markupsafe-3.0.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:116bb52f642a37c115f517494ea5feb03889e04df47eeff5b130b1808ce7c219", size = 12029, upload-time = "2025-09-27T18:36:43.257Z" },
- { url = "https://files.pythonhosted.org/packages/00/07/575a68c754943058c78f30db02ee03a64b3c638586fba6a6dd56830b30a3/markupsafe-3.0.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:133a43e73a802c5562be9bbcd03d090aa5a1fe899db609c29e8c8d815c5f6de6", size = 24374, upload-time = "2025-09-27T18:36:44.508Z" },
- { url = "https://files.pythonhosted.org/packages/a9/21/9b05698b46f218fc0e118e1f8168395c65c8a2c750ae2bab54fc4bd4e0e8/markupsafe-3.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ccfcd093f13f0f0b7fdd0f198b90053bf7b2f02a3927a30e63f3ccc9df56b676", size = 22980, upload-time = "2025-09-27T18:36:45.385Z" },
- { url = "https://files.pythonhosted.org/packages/7f/71/544260864f893f18b6827315b988c146b559391e6e7e8f7252839b1b846a/markupsafe-3.0.3-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:509fa21c6deb7a7a273d629cf5ec029bc209d1a51178615ddf718f5918992ab9", size = 21990, upload-time = "2025-09-27T18:36:46.916Z" },
- { url = "https://files.pythonhosted.org/packages/c2/28/b50fc2f74d1ad761af2f5dcce7492648b983d00a65b8c0e0cb457c82ebbe/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a4afe79fb3de0b7097d81da19090f4df4f8d3a2b3adaa8764138aac2e44f3af1", size = 23784, upload-time = "2025-09-27T18:36:47.884Z" },
- { url = "https://files.pythonhosted.org/packages/ed/76/104b2aa106a208da8b17a2fb72e033a5a9d7073c68f7e508b94916ed47a9/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:795e7751525cae078558e679d646ae45574b47ed6e7771863fcc079a6171a0fc", size = 21588, upload-time = "2025-09-27T18:36:48.82Z" },
- { url = "https://files.pythonhosted.org/packages/b5/99/16a5eb2d140087ebd97180d95249b00a03aa87e29cc224056274f2e45fd6/markupsafe-3.0.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8485f406a96febb5140bfeca44a73e3ce5116b2501ac54fe953e488fb1d03b12", size = 23041, upload-time = "2025-09-27T18:36:49.797Z" },
- { url = "https://files.pythonhosted.org/packages/19/bc/e7140ed90c5d61d77cea142eed9f9c303f4c4806f60a1044c13e3f1471d0/markupsafe-3.0.3-cp313-cp313-win32.whl", hash = "sha256:bdd37121970bfd8be76c5fb069c7751683bdf373db1ed6c010162b2a130248ed", size = 14543, upload-time = "2025-09-27T18:36:51.584Z" },
- { url = "https://files.pythonhosted.org/packages/05/73/c4abe620b841b6b791f2edc248f556900667a5a1cf023a6646967ae98335/markupsafe-3.0.3-cp313-cp313-win_amd64.whl", hash = "sha256:9a1abfdc021a164803f4d485104931fb8f8c1efd55bc6b748d2f5774e78b62c5", size = 15113, upload-time = "2025-09-27T18:36:52.537Z" },
- { url = "https://files.pythonhosted.org/packages/f0/3a/fa34a0f7cfef23cf9500d68cb7c32dd64ffd58a12b09225fb03dd37d5b80/markupsafe-3.0.3-cp313-cp313-win_arm64.whl", hash = "sha256:7e68f88e5b8799aa49c85cd116c932a1ac15caaa3f5db09087854d218359e485", size = 13911, upload-time = "2025-09-27T18:36:53.513Z" },
- { url = "https://files.pythonhosted.org/packages/e4/d7/e05cd7efe43a88a17a37b3ae96e79a19e846f3f456fe79c57ca61356ef01/markupsafe-3.0.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:218551f6df4868a8d527e3062d0fb968682fe92054e89978594c28e642c43a73", size = 11658, upload-time = "2025-09-27T18:36:54.819Z" },
- { url = "https://files.pythonhosted.org/packages/99/9e/e412117548182ce2148bdeacdda3bb494260c0b0184360fe0d56389b523b/markupsafe-3.0.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3524b778fe5cfb3452a09d31e7b5adefeea8c5be1d43c4f810ba09f2ceb29d37", size = 12066, upload-time = "2025-09-27T18:36:55.714Z" },
- { url = "https://files.pythonhosted.org/packages/bc/e6/fa0ffcda717ef64a5108eaa7b4f5ed28d56122c9a6d70ab8b72f9f715c80/markupsafe-3.0.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4e885a3d1efa2eadc93c894a21770e4bc67899e3543680313b09f139e149ab19", size = 25639, upload-time = "2025-09-27T18:36:56.908Z" },
- { url = "https://files.pythonhosted.org/packages/96/ec/2102e881fe9d25fc16cb4b25d5f5cde50970967ffa5dddafdb771237062d/markupsafe-3.0.3-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8709b08f4a89aa7586de0aadc8da56180242ee0ada3999749b183aa23df95025", size = 23569, upload-time = "2025-09-27T18:36:57.913Z" },
- { url = "https://files.pythonhosted.org/packages/4b/30/6f2fce1f1f205fc9323255b216ca8a235b15860c34b6798f810f05828e32/markupsafe-3.0.3-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:b8512a91625c9b3da6f127803b166b629725e68af71f8184ae7e7d54686a56d6", size = 23284, upload-time = "2025-09-27T18:36:58.833Z" },
- { url = "https://files.pythonhosted.org/packages/58/47/4a0ccea4ab9f5dcb6f79c0236d954acb382202721e704223a8aafa38b5c8/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9b79b7a16f7fedff2495d684f2b59b0457c3b493778c9eed31111be64d58279f", size = 24801, upload-time = "2025-09-27T18:36:59.739Z" },
- { url = "https://files.pythonhosted.org/packages/6a/70/3780e9b72180b6fecb83a4814d84c3bf4b4ae4bf0b19c27196104149734c/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:12c63dfb4a98206f045aa9563db46507995f7ef6d83b2f68eda65c307c6829eb", size = 22769, upload-time = "2025-09-27T18:37:00.719Z" },
- { url = "https://files.pythonhosted.org/packages/98/c5/c03c7f4125180fc215220c035beac6b9cb684bc7a067c84fc69414d315f5/markupsafe-3.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8f71bc33915be5186016f675cd83a1e08523649b0e33efdb898db577ef5bb009", size = 23642, upload-time = "2025-09-27T18:37:01.673Z" },
- { url = "https://files.pythonhosted.org/packages/80/d6/2d1b89f6ca4bff1036499b1e29a1d02d282259f3681540e16563f27ebc23/markupsafe-3.0.3-cp313-cp313t-win32.whl", hash = "sha256:69c0b73548bc525c8cb9a251cddf1931d1db4d2258e9599c28c07ef3580ef354", size = 14612, upload-time = "2025-09-27T18:37:02.639Z" },
- { url = "https://files.pythonhosted.org/packages/2b/98/e48a4bfba0a0ffcf9925fe2d69240bfaa19c6f7507b8cd09c70684a53c1e/markupsafe-3.0.3-cp313-cp313t-win_amd64.whl", hash = "sha256:1b4b79e8ebf6b55351f0d91fe80f893b4743f104bff22e90697db1590e47a218", size = 15200, upload-time = "2025-09-27T18:37:03.582Z" },
- { url = "https://files.pythonhosted.org/packages/0e/72/e3cc540f351f316e9ed0f092757459afbc595824ca724cbc5a5d4263713f/markupsafe-3.0.3-cp313-cp313t-win_arm64.whl", hash = "sha256:ad2cf8aa28b8c020ab2fc8287b0f823d0a7d8630784c31e9ee5edea20f406287", size = 13973, upload-time = "2025-09-27T18:37:04.929Z" },
- { url = "https://files.pythonhosted.org/packages/33/8a/8e42d4838cd89b7dde187011e97fe6c3af66d8c044997d2183fbd6d31352/markupsafe-3.0.3-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:eaa9599de571d72e2daf60164784109f19978b327a3910d3e9de8c97b5b70cfe", size = 11619, upload-time = "2025-09-27T18:37:06.342Z" },
- { url = "https://files.pythonhosted.org/packages/b5/64/7660f8a4a8e53c924d0fa05dc3a55c9cee10bbd82b11c5afb27d44b096ce/markupsafe-3.0.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c47a551199eb8eb2121d4f0f15ae0f923d31350ab9280078d1e5f12b249e0026", size = 12029, upload-time = "2025-09-27T18:37:07.213Z" },
- { url = "https://files.pythonhosted.org/packages/da/ef/e648bfd021127bef5fa12e1720ffed0c6cbb8310c8d9bea7266337ff06de/markupsafe-3.0.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f34c41761022dd093b4b6896d4810782ffbabe30f2d443ff5f083e0cbbb8c737", size = 24408, upload-time = "2025-09-27T18:37:09.572Z" },
- { url = "https://files.pythonhosted.org/packages/41/3c/a36c2450754618e62008bf7435ccb0f88053e07592e6028a34776213d877/markupsafe-3.0.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:457a69a9577064c05a97c41f4e65148652db078a3a509039e64d3467b9e7ef97", size = 23005, upload-time = "2025-09-27T18:37:10.58Z" },
- { url = "https://files.pythonhosted.org/packages/bc/20/b7fdf89a8456b099837cd1dc21974632a02a999ec9bf7ca3e490aacd98e7/markupsafe-3.0.3-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e8afc3f2ccfa24215f8cb28dcf43f0113ac3c37c2f0f0806d8c70e4228c5cf4d", size = 22048, upload-time = "2025-09-27T18:37:11.547Z" },
- { url = "https://files.pythonhosted.org/packages/9a/a7/591f592afdc734f47db08a75793a55d7fbcc6902a723ae4cfbab61010cc5/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ec15a59cf5af7be74194f7ab02d0f59a62bdcf1a537677ce67a2537c9b87fcda", size = 23821, upload-time = "2025-09-27T18:37:12.48Z" },
- { url = "https://files.pythonhosted.org/packages/7d/33/45b24e4f44195b26521bc6f1a82197118f74df348556594bd2262bda1038/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:0eb9ff8191e8498cca014656ae6b8d61f39da5f95b488805da4bb029cccbfbaf", size = 21606, upload-time = "2025-09-27T18:37:13.485Z" },
- { url = "https://files.pythonhosted.org/packages/ff/0e/53dfaca23a69fbfbbf17a4b64072090e70717344c52eaaaa9c5ddff1e5f0/markupsafe-3.0.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:2713baf880df847f2bece4230d4d094280f4e67b1e813eec43b4c0e144a34ffe", size = 23043, upload-time = "2025-09-27T18:37:14.408Z" },
- { url = "https://files.pythonhosted.org/packages/46/11/f333a06fc16236d5238bfe74daccbca41459dcd8d1fa952e8fbd5dccfb70/markupsafe-3.0.3-cp314-cp314-win32.whl", hash = "sha256:729586769a26dbceff69f7a7dbbf59ab6572b99d94576a5592625d5b411576b9", size = 14747, upload-time = "2025-09-27T18:37:15.36Z" },
- { url = "https://files.pythonhosted.org/packages/28/52/182836104b33b444e400b14f797212f720cbc9ed6ba34c800639d154e821/markupsafe-3.0.3-cp314-cp314-win_amd64.whl", hash = "sha256:bdc919ead48f234740ad807933cdf545180bfbe9342c2bb451556db2ed958581", size = 15341, upload-time = "2025-09-27T18:37:16.496Z" },
- { url = "https://files.pythonhosted.org/packages/6f/18/acf23e91bd94fd7b3031558b1f013adfa21a8e407a3fdb32745538730382/markupsafe-3.0.3-cp314-cp314-win_arm64.whl", hash = "sha256:5a7d5dc5140555cf21a6fefbdbf8723f06fcd2f63ef108f2854de715e4422cb4", size = 14073, upload-time = "2025-09-27T18:37:17.476Z" },
- { url = "https://files.pythonhosted.org/packages/3c/f0/57689aa4076e1b43b15fdfa646b04653969d50cf30c32a102762be2485da/markupsafe-3.0.3-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:1353ef0c1b138e1907ae78e2f6c63ff67501122006b0f9abad68fda5f4ffc6ab", size = 11661, upload-time = "2025-09-27T18:37:18.453Z" },
- { url = "https://files.pythonhosted.org/packages/89/c3/2e67a7ca217c6912985ec766c6393b636fb0c2344443ff9d91404dc4c79f/markupsafe-3.0.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:1085e7fbddd3be5f89cc898938f42c0b3c711fdcb37d75221de2666af647c175", size = 12069, upload-time = "2025-09-27T18:37:19.332Z" },
- { url = "https://files.pythonhosted.org/packages/f0/00/be561dce4e6ca66b15276e184ce4b8aec61fe83662cce2f7d72bd3249d28/markupsafe-3.0.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1b52b4fb9df4eb9ae465f8d0c228a00624de2334f216f178a995ccdcf82c4634", size = 25670, upload-time = "2025-09-27T18:37:20.245Z" },
- { url = "https://files.pythonhosted.org/packages/50/09/c419f6f5a92e5fadde27efd190eca90f05e1261b10dbd8cbcb39cd8ea1dc/markupsafe-3.0.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fed51ac40f757d41b7c48425901843666a6677e3e8eb0abcff09e4ba6e664f50", size = 23598, upload-time = "2025-09-27T18:37:21.177Z" },
- { url = "https://files.pythonhosted.org/packages/22/44/a0681611106e0b2921b3033fc19bc53323e0b50bc70cffdd19f7d679bb66/markupsafe-3.0.3-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:f190daf01f13c72eac4efd5c430a8de82489d9cff23c364c3ea822545032993e", size = 23261, upload-time = "2025-09-27T18:37:22.167Z" },
- { url = "https://files.pythonhosted.org/packages/5f/57/1b0b3f100259dc9fffe780cfb60d4be71375510e435efec3d116b6436d43/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:e56b7d45a839a697b5eb268c82a71bd8c7f6c94d6fd50c3d577fa39a9f1409f5", size = 24835, upload-time = "2025-09-27T18:37:23.296Z" },
- { url = "https://files.pythonhosted.org/packages/26/6a/4bf6d0c97c4920f1597cc14dd720705eca0bf7c787aebc6bb4d1bead5388/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:f3e98bb3798ead92273dc0e5fd0f31ade220f59a266ffd8a4f6065e0a3ce0523", size = 22733, upload-time = "2025-09-27T18:37:24.237Z" },
- { url = "https://files.pythonhosted.org/packages/14/c7/ca723101509b518797fedc2fdf79ba57f886b4aca8a7d31857ba3ee8281f/markupsafe-3.0.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:5678211cb9333a6468fb8d8be0305520aa073f50d17f089b5b4b477ea6e67fdc", size = 23672, upload-time = "2025-09-27T18:37:25.271Z" },
- { url = "https://files.pythonhosted.org/packages/fb/df/5bd7a48c256faecd1d36edc13133e51397e41b73bb77e1a69deab746ebac/markupsafe-3.0.3-cp314-cp314t-win32.whl", hash = "sha256:915c04ba3851909ce68ccc2b8e2cd691618c4dc4c4232fb7982bca3f41fd8c3d", size = 14819, upload-time = "2025-09-27T18:37:26.285Z" },
- { url = "https://files.pythonhosted.org/packages/1a/8a/0402ba61a2f16038b48b39bccca271134be00c5c9f0f623208399333c448/markupsafe-3.0.3-cp314-cp314t-win_amd64.whl", hash = "sha256:4faffd047e07c38848ce017e8725090413cd80cbc23d86e55c587bf979e579c9", size = 15426, upload-time = "2025-09-27T18:37:27.316Z" },
- { url = "https://files.pythonhosted.org/packages/70/bc/6f1c2f612465f5fa89b95bead1f44dcb607670fd42891d8fdcd5d039f4f4/markupsafe-3.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:32001d6a8fc98c8cb5c947787c5d08b0a50663d139f1305bac5885d98d9b40fa", size = 14146, upload-time = "2025-09-27T18:37:28.327Z" },
-]
-
[[package]]
name = "numpy"
version = "2.4.3"
@@ -744,18 +611,6 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/c8/c4/cc0229fea55c87d6c9c67fe44a21e2cd28d1d558a5478ed4d617e9fb0c93/playwright-1.58.0-py3-none-win_arm64.whl", hash = "sha256:32ffe5c303901a13a0ecab91d1c3f74baf73b84f4bedbb6b935f5bc11cc98e1b", size = 33085919, upload-time = "2026-01-30T15:09:45.71Z" },
]
-[[package]]
-name = "playwright-stealth"
-version = "2.0.2"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "playwright" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/61/ee/871901103c7b2a12070011fd4d978191f8f962837bf8bb51847274f528fa/playwright_stealth-2.0.2.tar.gz", hash = "sha256:ac57e51873190da5e653e03720e948c8f0a3d06b098f1d56763103d23ee48143", size = 24902, upload-time = "2026-02-13T02:36:25.137Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/f1/30/f95f087f4b071611a7f63a2a0c9af4df3ac046dae2a693bfdacd70512867/playwright_stealth-2.0.2-py3-none-any.whl", hash = "sha256:37a5733f481b9c0ad602cf71491aa5a7c96c2a2fe4fa1e7ab764d2cd35520f2f", size = 33209, upload-time = "2026-02-13T02:36:26.334Z" },
-]
-
[[package]]
name = "polars"
version = "1.39.0"
@@ -784,15 +639,6 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/b3/eb/936f5eeae196e8c8aaabe5f7d98891be8a5bbc741d50ce5c60f55575ad29/polars_runtime_32-1.39.0-cp310-abi3-win_arm64.whl", hash = "sha256:d69abde5f148566860bbe910010847bd7791e72f7c8063a4d2c462246a33a72a", size = 41885761, upload-time = "2026-03-12T14:23:16.773Z" },
]
-[[package]]
-name = "prometheus-client"
-version = "0.24.1"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/f0/58/a794d23feb6b00fc0c72787d7e87d872a6730dd9ed7c7b3e954637d8f280/prometheus_client-0.24.1.tar.gz", hash = "sha256:7e0ced7fbbd40f7b84962d5d2ab6f17ef88a72504dcf7c0b40737b43b2a461f9", size = 85616, upload-time = "2026-01-14T15:26:26.965Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/74/c3/24a2f845e3917201628ecaba4f18bab4d18a337834c1df2a159ee9d22a42/prometheus_client-0.24.1-py3-none-any.whl", hash = "sha256:150db128af71a5c2482b36e588fc8a6b95e498750da4b17065947c16070f4055", size = 64057, upload-time = "2026-01-14T15:26:24.42Z" },
-]
-
[[package]]
name = "pycparser"
version = "3.0"
@@ -926,15 +772,6 @@ wheels = [
{ url = "https://files.pythonhosted.org/packages/6e/bf/c5205d480307bef660e56544b9e3d7ff687da776abb30c9cb3f330887570/screeninfo-0.8.1-py3-none-any.whl", hash = "sha256:e97d6b173856edcfa3bd282f81deb528188aff14b11ec3e195584e7641be733c", size = 12907, upload-time = "2022-09-09T11:35:21.351Z" },
]
-[[package]]
-name = "soupsieve"
-version = "2.8.3"
-source = { registry = "https://pypi.org/simple" }
-sdist = { url = "https://files.pythonhosted.org/packages/7b/ae/2d9c981590ed9999a0d91755b47fc74f74de286b0f5cee14c9269041e6c4/soupsieve-2.8.3.tar.gz", hash = "sha256:3267f1eeea4251fb42728b6dfb746edc9acaffc4a45b27e19450b676586e8349", size = 118627, upload-time = "2026-01-20T04:27:02.457Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/46/2c/1462b1d0a634697ae9e55b3cecdcb64788e8b7d63f54d923fcd0bb140aed/soupsieve-2.8.3-py3-none-any.whl", hash = "sha256:ed64f2ba4eebeab06cc4962affce381647455978ffc1e36bb79a545b91f45a95", size = 37016, upload-time = "2026-01-20T04:27:01.012Z" },
-]
-
[[package]]
name = "tqdm"
version = "4.67.3"
@@ -984,15 +821,3 @@ sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6
wheels = [
{ url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" },
]
-
-[[package]]
-name = "werkzeug"
-version = "3.1.6"
-source = { registry = "https://pypi.org/simple" }
-dependencies = [
- { name = "markupsafe" },
-]
-sdist = { url = "https://files.pythonhosted.org/packages/61/f1/ee81806690a87dab5f5653c1f146c92bc066d7f4cebc603ef88eb9e13957/werkzeug-3.1.6.tar.gz", hash = "sha256:210c6bede5a420a913956b4791a7f4d6843a43b6fcee4dfa08a65e93007d0d25", size = 864736, upload-time = "2026-02-19T15:17:18.884Z" }
-wheels = [
- { url = "https://files.pythonhosted.org/packages/4d/ec/d58832f89ede95652fd01f4f24236af7d32b70cab2196dfcc2d2fd13c5c2/werkzeug-3.1.6-py3-none-any.whl", hash = "sha256:7ddf3357bb9564e407607f988f683d72038551200c704012bb9a4c523d42f131", size = 225166, upload-time = "2026-02-19T15:17:17.475Z" },
-]
diff --git a/finder/zoopla.py b/finder/zoopla.py
index 60c2c5e..cb3e9b4 100644
--- a/finder/zoopla.py
+++ b/finder/zoopla.py
@@ -1,4 +1,4 @@
-"""Zoopla (zoopla.co.uk) scraper — buy and rental properties.
+"""Zoopla (zoopla.co.uk) scraper — sale properties.
Zoopla is behind Cloudflare Turnstile (managed interactive challenge), which
blocks all HTTP clients (curl_cffi, httpx) and even Playwright with stealth
@@ -6,18 +6,14 @@ patches. Only Camoufox (an anti-fingerprinting Firefox fork) passes reliably.
Zoopla uses Next.js App Router with React Server Components (RSC). Search
result data is server-rendered in an RSC stream, not available via
-__NEXT_DATA__ or a JSON API. URL-based location slugs return 0 results —
-the working flow requires typing into the autocomplete input, selecting a
-suggestion, and clicking Search.
+__NEXT_DATA__ or a JSON API.
Architecture:
Unlike the other scrapers which use HTTP clients per outcode, Zoopla keeps
a single Camoufox browser alive for the entire scrape. For each outcode, it:
- 1. Clears and types the outcode into the search input
- 2. Selects the first autocomplete suggestion
- 3. Clicks Search
- 4. Extracts listing data from the rendered DOM
- 5. Handles pagination via ?pn=N parameter
+ 1. Navigates directly to the sale search URL
+ 2. Extracts listing data from the rendered DOM
+ 3. Handles pagination via ?pn=N parameter
The browser session replaces the cookie/client pattern used by other scrapers.
"""
@@ -27,7 +23,6 @@ import re
import time
from constants import DELAY_BETWEEN_PAGES, MAX_BEDROOMS, PROPERTY_TYPE_MAP, ZOOPLA_BASE
-from metrics import zoopla_errors_total, zoopla_pages_scraped, zoopla_properties_scraped
from spatial import PostcodeSpatialIndex
from transform import normalize_sub_type, validate_floor_area
@@ -38,6 +33,25 @@ class TurnstileError(Exception):
"""Raised when Cloudflare Turnstile challenge cannot be passed."""
+class _ManagedCamoufoxBrowser:
+ def __init__(self, context_manager, browser):
+ self._context_manager = context_manager
+ self._browser = browser
+ self._closed = False
+
+ def close(self) -> None:
+ if self._closed:
+ return
+ self._closed = True
+ try:
+ self._browser.close()
+ finally:
+ self._context_manager.__exit__(None, None, None)
+
+ def __getattr__(self, name):
+ return getattr(self._browser, name)
+
+
# Maximum search result pages to scrape per outcode (25 listings/page)
MAX_PAGES_PER_OUTCODE = 40
@@ -55,7 +69,7 @@ _EXTRACT_LISTINGS_JS = r"""() => {
for (const card of listingCards) {
const link = card.querySelector(
- 'a[href*="/for-sale/details/"], a[href*="/new-homes/details/"], a[href*="/to-rent/details/"]'
+ 'a[href*="/for-sale/details/"], a[href*="/new-homes/details/"]'
);
if (!link) continue;
@@ -100,9 +114,9 @@ _EXTRACT_LISTINGS_JS = r"""() => {
// Extract property type (e.g., "2 bed flat for sale" → "flat")
let property_type = '';
- const ptMatch = text.match(/\d+\s*(?:beds?|bedrooms?)\s+([\w\s-]+?)\s+(?:for\s+sale|to\s+(?:rent|let)|for\s+rent)/i);
+ const ptMatch = text.match(/\d+\s*(?:beds?|bedrooms?)\s+([\w\s-]+?)\s+for\s+sale/i);
if (ptMatch) property_type = ptMatch[1].trim();
- else if (/\bstudio\s*(?:flat|apartment)?\s+(?:for\s+sale|to\s+(?:rent|let)|for\s+rent)/i.test(text)) property_type = 'Studio';
+ else if (/\bstudio\s*(?:flat|apartment)?\s+for\s+sale/i.test(text)) property_type = 'Studio';
// Keyword fallback when regex doesn't match current DOM format
if (!property_type) {
@@ -135,7 +149,7 @@ _EXTRACT_LISTINGS_JS = r"""() => {
// Strategy 2: Fall back to href-based link matching with parent-walking
if (results.length === 0) {
const links = Array.from(document.querySelectorAll(
- 'a[href*="/for-sale/details/"], a[href*="/new-homes/details/"], a[href*="/to-rent/details/"]'
+ 'a[href*="/for-sale/details/"], a[href*="/new-homes/details/"]'
));
for (const link of links) {
@@ -184,9 +198,9 @@ _EXTRACT_LISTINGS_JS = r"""() => {
// Extract property type
let property_type = '';
- const ptMatch2 = text.match(/\d+\s*(?:beds?|bedrooms?)\s+([\w\s-]+?)\s+(?:for\s+sale|to\s+(?:rent|let)|for\s+rent)/i);
+ const ptMatch2 = text.match(/\d+\s*(?:beds?|bedrooms?)\s+([\w\s-]+?)\s+for\s+sale/i);
if (ptMatch2) property_type = ptMatch2[1].trim();
- else if (/\bstudio\s*(?:flat|apartment)?\s+(?:for\s+sale|to\s+(?:rent|let)|for\s+rent)/i.test(text)) property_type = 'Studio';
+ else if (/\bstudio\s*(?:flat|apartment)?\s+for\s+sale/i.test(text)) property_type = 'Studio';
// Keyword fallback when regex doesn't match current DOM format
if (!property_type) {
@@ -243,17 +257,20 @@ def launch_browser():
"""Launch Camoufox, navigate to Zoopla homepage, pass Cloudflare Turnstile,
and dismiss cookie consent. Returns (browser, page) tuple.
- Raises TurnstileError if Cloudflare cannot be passed within 60 seconds.
+ Raises TurnstileError if Cloudflare cannot be passed within two minutes.
Caller must close browser when done."""
from camoufox.pkgman import camoufox_path
- # Verify camoufox is pre-installed — never download at runtime
- camoufox_path(download_if_missing=False)
+ # Standalone local runs should not require the old container image to have
+ # pre-fetched Camoufox.
+ camoufox_path(download_if_missing=True)
from camoufox.sync_api import Camoufox
log.info("Launching Camoufox browser for Zoopla...")
- browser = Camoufox(headless=True).__enter__()
+ camoufox = Camoufox(headless=True)
+ raw_browser = camoufox.__enter__()
+ browser = _ManagedCamoufoxBrowser(camoufox, raw_browser)
page = browser.new_page()
log.info("Navigating to Zoopla homepage...")
@@ -261,7 +278,7 @@ def launch_browser():
# Wait for Cloudflare Turnstile to resolve.
# Try clicking the Turnstile checkbox if present (helps in some cases).
- for i in range(20):
+ for i in range(40):
if "Just a moment" not in page.title():
break
# Attempt to click the Turnstile checkbox in the challenge iframe
@@ -280,7 +297,7 @@ def launch_browser():
else:
page.close()
browser.close()
- raise TurnstileError("Cloudflare Turnstile did not resolve after 60s")
+ raise TurnstileError("Cloudflare Turnstile did not resolve after 120s")
log.info("Cloudflare passed — title: %s", page.title())
time.sleep(2)
@@ -298,13 +315,13 @@ def _ensure_not_challenged(page) -> None:
return
log.warning("Cloudflare challenge detected mid-session, waiting...")
- for i in range(20):
+ for i in range(40):
time.sleep(3)
if "Just a moment" not in page.title():
log.info("Cloudflare challenge resolved")
return
- raise TurnstileError("Cloudflare re-challenge did not resolve")
+ raise TurnstileError("Cloudflare re-challenge did not resolve after 120s")
# ---------------------------------------------------------------------------
@@ -312,21 +329,8 @@ def _ensure_not_challenged(page) -> None:
# ---------------------------------------------------------------------------
-def _navigate_direct(page, url: str) -> bool:
- """Navigate directly to a Zoopla search URL (skipping the homepage flow).
-
- Used to load the second channel (e.g., RENT after BUY) for the same outcode
- by swapping the path component. Falls back gracefully — returns False if
- the page has no listings, so the caller can retry via the full search flow.
- """
- try:
- page.goto(url, wait_until="domcontentloaded", timeout=30000)
- except Exception as e:
- log.debug("Direct navigation failed: %s", e)
- return False
- _ensure_not_challenged(page)
-
- # Wait for listing content to hydrate
+def _wait_for_listing_content(page) -> None:
+ """Wait for rendered listing cards to contain usable text."""
try:
page.wait_for_function(
"""() => {
@@ -343,100 +347,42 @@ def _navigate_direct(page, url: str) -> bool:
timeout=8000,
)
except Exception:
- # Check if the page has any listings at all
- has_listings = page.query_selector('a[href*="/details/"]')
- if not has_listings:
- return False
time.sleep(1.5)
- return True
-
-def _navigate_search(page, outcode: str, channel: str) -> bool:
- """Navigate to search results for an outcode via the homepage search flow.
+def _navigate_search(page, outcode: str) -> bool:
+ """Navigate directly to sale search results for an outcode.
Returns True if results were found, False if no results or navigation failed.
Raises TurnstileError if Cloudflare blocks us."""
- # Navigate to homepage to reset search state
- page.goto(f"{ZOOPLA_BASE}/", wait_until="domcontentloaded", timeout=30000)
- time.sleep(0.5)
+ url = (
+ f"{ZOOPLA_BASE}/for-sale/property/{outcode.lower()}/"
+ f"?q={outcode}&search_source=home"
+ )
+ try:
+ page.goto(url, wait_until="domcontentloaded", timeout=30000)
+ except Exception as exc:
+ log.debug("Zoopla direct navigation failed for %s: %s", outcode, exc)
+ return False
+
_ensure_not_challenged(page)
# Dismiss cookie consent (may reappear after navigation)
- page.evaluate(_DISMISS_COOKIES_JS)
- time.sleep(0.3)
+ try:
+ page.evaluate(_DISMISS_COOKIES_JS)
+ except Exception:
+ pass
- # Select Buy/Rent tab
- if channel == "RENT":
- rent_tab = page.query_selector(
- 'button:has-text("Rent"), [role="tab"]:has-text("Rent")'
- )
- if rent_tab:
- rent_tab.click()
- time.sleep(0.2)
-
- # Find and fill search input
- search_input = page.query_selector(
- 'input[name="autosuggest-input"]'
- ) or page.query_selector('input[type="text"]')
- if not search_input:
- log.warning("Could not find search input on homepage")
- return False
-
- search_input.click()
- time.sleep(0.1)
- search_input.fill("")
- search_input.type(outcode, delay=60)
- time.sleep(1.2)
-
- # Select first autocomplete suggestion
- first_option = page.query_selector('[role="option"]')
- if not first_option:
- log.debug("No autocomplete suggestions for outcode %s", outcode)
- return False
-
- first_option.click()
- time.sleep(0.2)
-
- # Click search button
- search_btn = page.query_selector('button:has-text("Search")')
- if search_btn:
- search_btn.click()
- else:
- search_input.press("Enter")
-
- # Wait for results to load — try waiting for listings container, fall back to fixed wait
try:
page.wait_for_selector(
- '[data-testid="regular-listings"], a[href*="/details/"]',
+ '[data-testid="regular-listings"], a[href*="/for-sale/details/"], a[href*="/new-homes/details/"]',
timeout=10000,
)
except Exception:
- time.sleep(4)
- _ensure_not_challenged(page)
+ if not page.query_selector('a[href*="/details/"]'):
+ return False
- # Wait for client-side hydration to populate listing content (prices, addresses).
- # The structural container appears in server-rendered HTML before React hydrates
- # the actual card content — extracting too early yields empty price/address fields.
- try:
- page.wait_for_function(
- """() => {
- const cards = document.querySelectorAll(
- '[data-testid="regular-listings"] > div'
- );
- if (cards.length === 0) return false;
- for (const card of cards) {
- const t = card.innerText || '';
- if (t.includes('\\u00a3') && t.length > 50) return true;
- }
- return false;
- }""",
- timeout=8000,
- )
- except Exception:
- # Content never appeared — extraction will likely fail but let it try
- log.debug("Listing content hydration wait timed out — prices may not have rendered")
- time.sleep(2)
+ _wait_for_listing_content(page)
return True
@@ -516,18 +462,21 @@ def _extract_listings(page) -> list[dict]:
return listings
except Exception as e:
log.warning("Failed to extract listings from DOM: %s", e)
- zoopla_errors_total.labels(type="extract_failed").inc()
return []
-def _paginate(page, total_results: int, channel: str) -> list[dict]:
+def _paginate(
+ page,
+ total_results: int,
+ max_properties: int | None = None,
+) -> list[dict]:
"""Extract listings from all pages of search results.
Page 1 is already loaded. For subsequent pages, clicks the Next button
or navigates via URL parameter ?pn=N."""
all_listings = _extract_listings(page)
- channel_label = "buy" if channel == "BUY" else "rent"
- zoopla_pages_scraped.labels(channel=channel_label).inc()
+ if max_properties is not None and len(all_listings) >= max_properties:
+ return all_listings[:max_properties]
if not all_listings or total_results <= len(all_listings):
return all_listings
@@ -550,24 +499,7 @@ def _paginate(page, total_results: int, channel: str) -> list[dict]:
try:
page.goto(next_url, wait_until="domcontentloaded", timeout=30000)
_ensure_not_challenged(page)
- # Wait for listing content instead of fixed sleep
- try:
- page.wait_for_function(
- """() => {
- const cards = document.querySelectorAll(
- '[data-testid="regular-listings"] > div'
- );
- if (cards.length === 0) return false;
- for (const card of cards) {
- const t = card.innerText || '';
- if (t.includes('\\u00a3') && t.length > 50) return true;
- }
- return false;
- }""",
- timeout=8000,
- )
- except Exception:
- time.sleep(1.5)
+ _wait_for_listing_content(page)
except TurnstileError:
raise
except Exception as e:
@@ -585,8 +517,8 @@ def _paginate(page, total_results: int, channel: str) -> list[dict]:
seen_ids.add(listing["id"])
all_listings.append(listing)
new_count += 1
-
- zoopla_pages_scraped.labels(channel=channel_label).inc()
+ if max_properties is not None and len(all_listings) >= max_properties:
+ return all_listings[:max_properties]
if new_count == 0:
break # No new listings on this page
@@ -692,31 +624,8 @@ def _map_property_type(raw_type: str | None) -> str:
return "Other"
-def _detect_rent_frequency(price_text: str) -> str:
- """Detect rent frequency from Zoopla price text.
-
- Zoopla price elements contain text like '£1,500 pcm', '£350 pw',
- '£18,000 pa'. Defaults to 'monthly' if no frequency indicator found.
-
- Checks monthly indicators (pcm) BEFORE weekly (pw) because Zoopla cards
- often display both monthly and weekly prices in the same text. When the
- JS extraction falls back to full card text, checking pcm first ensures
- the captured monthly price gets the correct frequency label.
- """
- lower = price_text.lower()
- if "pcm" in lower or "per month" in lower or "per calendar month" in lower:
- return "monthly"
- if "pw" in lower or "per week" in lower or "/w" in lower:
- return "weekly"
- if "pa" in lower or "per annum" in lower or "/y" in lower or "per year" in lower:
- return "yearly"
- # No indicator — default monthly (Zoopla standard)
- return "monthly"
-
-
def transform_property(
raw: dict,
- channel: str,
pc_index: PostcodeSpatialIndex,
pc_coords: dict[str, tuple[float, float]],
search_outcode: str | None = None,
@@ -783,13 +692,6 @@ def transform_property(
if listing_url and not listing_url.startswith("http"):
listing_url = ZOOPLA_BASE + listing_url
- # Detect rent frequency from price text (e.g. "£1,500 pcm" vs "£350 pw")
- if channel == "BUY":
- frequency = ""
- else:
- price_text = raw.get("price_text", "")
- frequency = _detect_rent_frequency(price_text)
-
return {
"id": f"zp_{listing_id}",
"Bedrooms": bedrooms,
@@ -803,7 +705,7 @@ def transform_property(
"Property type": _map_property_type(raw.get("property_type")),
"Property sub-type": normalize_sub_type(raw.get("property_type")),
"price": int(price),
- "price_frequency": frequency,
+ "price_frequency": "",
"Price qualifier": "",
"Total floor area (sqm)": floor_area_sqm,
"Listing URL": listing_url,
@@ -820,10 +722,9 @@ def transform_property(
def search_outcode(
page,
outcode: str,
- channel: str,
pc_index: PostcodeSpatialIndex,
pc_coords: dict[str, tuple[float, float]],
- base_search_url: str | None = None,
+ max_properties: int | None = None,
) -> tuple[list[dict], str | None]:
"""Search Zoopla for properties in one outcode.
@@ -831,47 +732,37 @@ def search_outcode(
search flow, extracts listings from rendered DOM, and transforms to the
standard output schema.
- If base_search_url is provided (from a previous channel search for the same
- outcode), tries direct URL navigation first — skipping the slow homepage
- search flow. Falls back to full navigation if direct fails.
-
- Returns (properties, search_url) where search_url can be passed to the next
- channel call for this outcode.
+ Returns (properties, search_url).
Raises TurnstileError if Cloudflare blocks us mid-session.
"""
- navigated = False
- if base_search_url:
- navigated = _navigate_direct(page, base_search_url)
- if navigated:
- log.debug("Zoopla %s %s: used direct URL navigation", outcode, channel)
-
- if not navigated:
- if not _navigate_search(page, outcode, channel):
- return [], None
+ if not _navigate_search(page, outcode):
+ return [], None
total_results = _get_result_count(page)
# Always try extraction even if result count is 0 — the count regex may
# not match Zoopla's current text format, but listings may still be in DOM
- raw_listings = _paginate(page, max(total_results, 25), channel)
+ raw_listings = _paginate(
+ page,
+ max(total_results, 25),
+ max_properties=max_properties,
+ )
if not raw_listings:
if total_results > 0:
log.debug(
"Zoopla %s %s: page claims %d results but extraction found 0 — "
"DOM selectors may need updating",
- outcode, channel, total_results,
+ outcode, "BUY", total_results,
)
return [], None
- channel_label = "buy" if channel == "BUY" else "rent"
properties = []
dropped = 0
for raw in raw_listings:
- transformed = transform_property(raw, channel, pc_index, pc_coords, search_outcode=outcode)
+ transformed = transform_property(raw, pc_index, pc_coords, search_outcode=outcode)
if transformed:
properties.append(transformed)
- zoopla_properties_scraped.labels(channel=channel_label).inc()
else:
dropped += 1
@@ -881,13 +772,13 @@ def search_outcode(
log.debug(
"Zoopla %s %s: extracted %d raw listings but all %d dropped in transform "
"(no price/postcode/coords). Sample raw: price=%s address=%r",
- outcode, channel, len(raw_listings), dropped,
+ outcode, "BUY", len(raw_listings), dropped,
sample.get("price"), sample.get("address", ""),
)
elif dropped > len(raw_listings) // 2:
log.debug(
"Zoopla %s %s: %d/%d listings dropped in transform",
- outcode, channel, dropped, len(raw_listings),
+ outcode, "BUY", dropped, len(raw_listings),
)
return properties, page.url
diff --git a/frontend/package-lock.json b/frontend/package-lock.json
index 838c657..dad8e11 100644
--- a/frontend/package-lock.json
+++ b/frontend/package-lock.json
@@ -20,6 +20,7 @@
"@protomaps/basemaps": "^5.7.2",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
+ "@sentry/react": "^10.53.1",
"@types/supercluster": "^7.1.3",
"i18next": "^26.0.10",
"maplibre-gl": "^5.24.0",
@@ -5287,6 +5288,97 @@
"dev": true,
"license": "MIT"
},
+ "node_modules/@sentry-internal/browser-utils": {
+ "version": "10.53.1",
+ "resolved": "https://registry.npmjs.org/@sentry-internal/browser-utils/-/browser-utils-10.53.1.tgz",
+ "integrity": "sha512-X4d6y8sBMjmNhcDW4eMBU3ASsNIMz8dqaFkhyIMN/dkYr/yZKnbRZPaVuVUGvHKjnlficPpIH0/HK9KBjrYxPw==",
+ "license": "MIT",
+ "dependencies": {
+ "@sentry/core": "10.53.1"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@sentry-internal/feedback": {
+ "version": "10.53.1",
+ "resolved": "https://registry.npmjs.org/@sentry-internal/feedback/-/feedback-10.53.1.tgz",
+ "integrity": "sha512-vVpTI/aEYN5d9IgZeYJWMqVaN0+iFgidSrYNAsZTh1US5sJUzF/wrl+68KdpmCtFROrN3jiAn1oPSwL5CKvEJA==",
+ "license": "MIT",
+ "dependencies": {
+ "@sentry/core": "10.53.1"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@sentry-internal/replay": {
+ "version": "10.53.1",
+ "resolved": "https://registry.npmjs.org/@sentry-internal/replay/-/replay-10.53.1.tgz",
+ "integrity": "sha512-wZNzTBYkgGUPWMuUQv7L64+OJmoCnz7GQNiTrTFK6EVAjJXFBCSsPp/nhif0bLhbk8+0g4xz633uOhpXuQbFdw==",
+ "license": "MIT",
+ "dependencies": {
+ "@sentry-internal/browser-utils": "10.53.1",
+ "@sentry/core": "10.53.1"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@sentry-internal/replay-canvas": {
+ "version": "10.53.1",
+ "resolved": "https://registry.npmjs.org/@sentry-internal/replay-canvas/-/replay-canvas-10.53.1.tgz",
+ "integrity": "sha512-aueLaf/2prExwA76BGU5/bOXCKWqtt6jQXWA6WJQNrmKpPEtZJB4ypnpsou0McXQCF8tur2Y8U0TEkwQP13yJQ==",
+ "license": "MIT",
+ "dependencies": {
+ "@sentry-internal/replay": "10.53.1",
+ "@sentry/core": "10.53.1"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@sentry/browser": {
+ "version": "10.53.1",
+ "resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-10.53.1.tgz",
+ "integrity": "sha512-zXF373hzUOGzUOrqd8xb1U3LQi5uYC3mwv+z5OMKUUinQlu30tTWBs7ypy6YTchtix9QlYaHWlayUF8vBZ5UjA==",
+ "license": "MIT",
+ "dependencies": {
+ "@sentry-internal/browser-utils": "10.53.1",
+ "@sentry-internal/feedback": "10.53.1",
+ "@sentry-internal/replay": "10.53.1",
+ "@sentry-internal/replay-canvas": "10.53.1",
+ "@sentry/core": "10.53.1"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@sentry/core": {
+ "version": "10.53.1",
+ "resolved": "https://registry.npmjs.org/@sentry/core/-/core-10.53.1.tgz",
+ "integrity": "sha512-XG4ezlkyuAPjBC5+9kXC94rXXuqYTw9NRhfaDHssbTFaGnqBR8vQX2UUgZfY7ucbeelRDGfBu1sywoU+mB04uA==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@sentry/react": {
+ "version": "10.53.1",
+ "resolved": "https://registry.npmjs.org/@sentry/react/-/react-10.53.1.tgz",
+ "integrity": "sha512-lrwNq5T/zW84l60894TpKHPcvFuc1I/Hnohecc0TfYVpIcYYuw2orCHoU4v4wgkFaJUpegVetbgdOphViyLVjA==",
+ "license": "MIT",
+ "dependencies": {
+ "@sentry/browser": "10.53.1",
+ "@sentry/core": "10.53.1"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "peerDependencies": {
+ "react": "^16.14.0 || 17.x || 18.x || 19.x"
+ }
+ },
"node_modules/@standard-schema/spec": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
diff --git a/frontend/package.json b/frontend/package.json
index 75b43e7..c3726e8 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -27,6 +27,7 @@
"@protomaps/basemaps": "^5.7.2",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slider": "^1.3.6",
+ "@sentry/react": "^10.53.1",
"@types/supercluster": "^7.1.3",
"i18next": "^26.0.10",
"maplibre-gl": "^5.24.0",
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 0e0a0c1..afc41c2 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -318,6 +318,7 @@ export default function App() {
const savedSearches = useSavedSearches(user?.id ?? null);
const [showSaveModal, setShowSaveModal] = useState(false);
+ const [editingSearch, setEditingSearch] = useState<{ id: string; name: string } | null>(null);
useEffect(() => {
const controller = new AbortController();
@@ -374,11 +375,52 @@ export default function App() {
}
setRouteHash(targetHash);
setActivePage(page);
+ setEditingSearch(null);
if (targetHash) scrollToHash(targetHash);
},
[inviteCode]
);
+ const handleEditSearch = useCallback(
+ (id: string, name: string, params: string) => {
+ const search = params.startsWith('?') ? params : `?${params}`;
+ dashboardSearchRef.current = search;
+ const url = `/dashboard${search}`;
+ window.history.pushState({ page: 'dashboard', hash: '' }, '', url);
+ setMapUrlState(parseUrlState());
+ setDashboardRouteKey(search);
+ setRouteHash('');
+ setActivePage('dashboard');
+ setEditingSearch({ id, name });
+ },
+ []
+ );
+
+ const handleCancelEdit = useCallback(() => {
+ setEditingSearch(null);
+ }, []);
+
+ const updateEditingSearch = useCallback(
+ async (params: string) => {
+ if (!editingSearch) return;
+ await savedSearches.updateSearchParams(editingSearch.id, params);
+ setEditingSearch(null);
+ },
+ [editingSearch, savedSearches]
+ );
+
+ const handleUpdateEdit = useCallback(
+ async (params: string) => {
+ try {
+ await updateEditingSearch(params);
+ navigateTo('saved');
+ } catch {
+ // Error stored on savedSearches.error
+ }
+ },
+ [updateEditingSearch, navigateTo]
+ );
+
useEffect(() => {
if (authLoading || !user || postAuthIntent !== 'checkout') return;
@@ -439,6 +481,8 @@ export default function App() {
if (page === 'dashboard') {
setMapUrlState(parseUrlState());
setDashboardRouteKey(window.location.search);
+ } else {
+ setEditingSearch(null);
}
};
window.addEventListener('popstate', handlePopState);
@@ -517,8 +561,17 @@ export default function App() {
onToggleTheme={toggleTheme}
exportState={activePage === 'dashboard' ? exportState : null}
dashboardParams={activePage === 'dashboard' ? dashboardParams : ''}
- onSaveSearch={activePage === 'dashboard' && user ? () => setShowSaveModal(true) : null}
+ onSaveSearch={
+ activePage === 'dashboard' && user
+ ? editingSearch
+ ? () => handleUpdateEdit(dashboardParams)
+ : () => setShowSaveModal(true)
+ : null
+ }
savingSearch={savedSearches.saving}
+ editingSearch={activePage === 'dashboard' ? editingSearch : null}
+ onCancelEdit={handleCancelEdit}
+ onUpdateEdit={() => handleUpdateEdit(dashboardParams)}
user={user}
onLoginClick={() => openAuthModal('login')}
onRegisterClick={() => openAuthModal('register')}
@@ -553,9 +606,7 @@ export default function App() {
onDeleteSearch={savedSearches.deleteSearch}
onUpdateSearchNotes={savedSearches.updateSearchNotes}
onUpdateSearchName={savedSearches.updateSearchName}
- onOpenSearch={(params) => {
- window.location.href = `/dashboard?${params}`;
- }}
+ onOpenSearch={handleEditSearch}
/>
) : activePage === 'account' && user ? (
)}
diff --git a/frontend/src/components/account/AccountPage.tsx b/frontend/src/components/account/AccountPage.tsx
index 69a6d77..a14113e 100644
--- a/frontend/src/components/account/AccountPage.tsx
+++ b/frontend/src/components/account/AccountPage.tsx
@@ -198,7 +198,7 @@ function SavedSearchesTab({
onDelete: (id: string) => Promise
;
onUpdateNotes: (id: string, notes: string) => void;
onUpdateName: (id: string, name: string) => void;
- onOpen: (params: string) => void;
+ onOpen: (id: string, name: string, params: string) => void;
}) {
const { t, i18n } = useTranslation();
const [deleteConfirmId, setDeleteConfirmId] = useState(null);
@@ -302,7 +302,7 @@ function SavedSearchesTab({
onOpen(search.params)}
+ onClick={() => onOpen(search.id, search.name, search.params)}
className="flex-1 px-3 py-1.5 text-sm font-medium rounded bg-teal-600 text-white hover:bg-teal-700"
>
{t('common.open')}
@@ -358,7 +358,7 @@ export function SavedPage({
onDeleteSearch: (id: string) => Promise;
onUpdateSearchNotes: (id: string, notes: string) => void;
onUpdateSearchName: (id: string, name: string) => void;
- onOpenSearch: (params: string) => void;
+ onOpenSearch: (id: string, name: string, params: string) => void;
}) {
const { t } = useTranslation();
const [activeTab, setActiveTab] = useState<'searches' | 'shared-links'>(
diff --git a/frontend/src/components/home/ProductShowcase.tsx b/frontend/src/components/home/ProductShowcase.tsx
index 420eb5c..ef91d42 100644
--- a/frontend/src/components/home/ProductShowcase.tsx
+++ b/frontend/src/components/home/ProductShowcase.tsx
@@ -84,7 +84,7 @@ const DEMO_FEATURES: FeatureMeta[] = [
{
name: 'Good+ primary schools within 2km',
type: 'numeric',
- group: 'Education',
+ group: 'Schools',
min: 0,
max: 8,
step: 1,
@@ -92,7 +92,7 @@ const DEMO_FEATURES: FeatureMeta[] = [
{
name: 'Noise (dB)',
type: 'numeric',
- group: 'Environment',
+ group: 'Defining characteristics',
min: 40,
max: 80,
step: 1,
diff --git a/frontend/src/components/map/AreaPane.tsx b/frontend/src/components/map/AreaPane.tsx
index e2a6f55..0fcd9de 100644
--- a/frontend/src/components/map/AreaPane.tsx
+++ b/frontend/src/components/map/AreaPane.tsx
@@ -44,7 +44,6 @@ interface AreaPaneProps {
loading: boolean;
hexagonId: string | null;
isPostcode?: boolean;
- onViewProperties: () => void;
hexagonLocation: HexagonLocation | null;
filters: FeatureFilters;
unfilteredCount?: number | null;
@@ -82,7 +81,6 @@ export default function AreaPane({
loading,
hexagonId,
isPostcode = false,
- onViewProperties,
hexagonLocation,
filters,
unfilteredCount,
@@ -100,7 +98,6 @@ export default function AreaPane({
const filtersActive = activeFilterCount > 0;
const filteredStatsEmpty = filtersActive && statsUseFilters && stats?.count === 0;
const showFlipToggleCallout = filteredStatsEmpty && unfilteredCount !== 0;
- const canViewProperties = stats && stats.count > 0 && (statsUseFilters || !filtersActive);
const featureGroups = useMemo(() => groupFeaturesByCategory(globalFeatures), [globalFeatures]);
const [infoFeature, setInfoFeature] = useState(null);
@@ -275,14 +272,6 @@ export default function AreaPane({
)}
)}
- {canViewProperties && (
-
- {t('areaPane.viewPropertiesShort')}
-
- )}